-
-
Notifications
You must be signed in to change notification settings - Fork 54
Main
Generated on 3/10/2026 3:07:34 AM
Version: 5.0.1+cb2bfafc8ca61e99043cebfbd4c89fcbe562551b
Method Signature:
Void BringClientWindowToFront()
Description:
Bring client window to front
Example:
BringClientWindowToFront() Method Signature:
Void DisplayQuestPointer(Int32, Int32, Boolean)
- x: X Coordinate.
- y: Y Coordinate.
- enabled: True/False value, see description for usage. (Optional)
Description:
Display quest arrow pointer to specified coordinates
Example:
# add pointer
DisplayQuestPointer(1000, 1000, True)
Pause(2000)
# remove pointer
DisplayQuestPointer(1000, 1000, False) Method Signature:
Void HideEntity(System.Object)
- obj: An entity serial in integer or hex format, or an alias string such as "self".
Description:
Remove an item/mobile from the screen
Example:
ClearIgnoreList()
# Hide all corpses on screen
while FindType(0x2006):
HideEntity('found')
IgnoreObject('found') Method Signature:
Void Hotkeys(System.String)
- onoff: "on" or "off". (Optional)
Description:
Enable and disable hotkeys.
Example:
Hotkeys() Method Signature:
Void Info(System.Object)
- obj: An entity serial in integer or hex format, or an alias string such as "self". (Optional)
Description:
Show object inspector for supplied serial / alias, will prompt for target if no parameter given.
Example:
Info("self") Method Signature:
Void InvokeVirtue(System.String)
- virtue: String value - See description for usage. See Also: Virtues
Description:
Use a virtue by name.
Example:
InvokeVirtue("Honor") Method Signature:
Void Logout()
Description:
Disconnects from the server and returns to the login screen
Example:
Logout() Method Signature:
Void MessageBox(System.String, System.String)
- title: String value - See description for usage.
- body: String value - See description for usage.
Description:
Show a simple message box with a custom title and body.
Example:
MessageBox("title", "message") Method Signature:
Void OpenECV(System.Object)
- obj: An entity serial in integer or hex format, or an alias string such as "self".
Description:
Open entity collection viewer for specified container serial/alias
Example:
OpenECV('backpack') Method Signature:
Void Pause(Int32)
- milliseconds: Timeout specified in milliseconds.
Description:
Pauses execution for the given amount in milliseconds.
Example:
Pause(1000) Method Signature:
Boolean Playing()
Description:
Returns true if there is a macro, use in background macros.
Example:
if Playing(): Method Signature:
Boolean Playing(System.String)
- macroname: Macro name.
Description:
Returns true if there is a macro, use in background macros.
Example:
if Playing(): Method Signature:
Void PlaySound(System.Object, Boolean)
Description:
Play sound by id or system .wav file.
Example:
PlaySound("Bike Horn.wav") Method Signature:
Void Quit()
Description:
Closes the client
Example:
Quit() Method Signature:
Void Resync()
Description:
Sends Resync request to server.
Example:
Resync() Method Signature:
Void SetAutologin(Boolean, System.String, Int32, Int32)
Description:
Configures autologin settings
Example:
SetAutologin(False) Method Signature:
Void SetQuietMode(Boolean)
- onoff: "on" or "off".
Description:
Set quiet mode True/False, True reduces the number of messages macro commands emit.
Example:
SetQuietMode(True) Method Signature:
System.ValueTuple2[System.Boolean,System.String] Snapshot(Int32, System.Nullable1[System.Boolean], System.String)
- delay: Integer value - See description for usage. (Optional)
- fullscreen: True/False value, see description for usage. (Optional)
- filename: String value - See description for usage. (Optional)
Description:
Take a screenshot of the window
Example:
# Just the game client area, no delay, default filename
Snapshot()
# Fullscreen snapshot, 3 second delay, default filename
Snapshot(3000, True)
# Client area snapshot, no delay, custom filename
Snapshot(0, False, "screenshot.png") Method Signature:
Void SysMessage(System.String, Int32)
- text: String value - See description for usage.
- hue: Item Hue or -1 for any. (Optional)
Description:
Send a text message.
Example:
# default hue
SysMessage("Hello")
# specifying hue
SysMessage("Hello", 35) Method Signature:
Void WarMode(System.String)
- onoff: "on" or "off". (Optional)
Description:
Sets war mode status, parameter on, off, or toggle, defaults to toggle if no parameter given.
Example:
WarMode("on") - None
- Honor
- Sacrafice
- Valor
- Compassion
- Honesty
- Humility
- Justice
- Spirituality