-
-
Notifications
You must be signed in to change notification settings - Fork 54
Messages
Generated on 3/10/2026 3:07:34 AM
Version: 5.0.1+cb2bfafc8ca61e99043cebfbd4c89fcbe562551b
Method Signature:
Void AllyMsg(System.String)
- message: String value - See description for usage.
Description:
Sends given message to alliance chat.
Example:
AllyMsg("alert") Method Signature:
Void CancelPrompt()
Description:
Cancels the current prompt.
Example:
CancelPrompt() Method Signature:
Void ChatMsg(System.String)
- message: String value - See description for usage.
Description:
Sends a chat message.
Example:
ChatMsg("Mary had a little lamb") Method Signature:
Void EmoteMsg(System.String)
- message: String value - See description for usage.
Description:
Emotes the given message
Example:
EmoteMsg("hi") Method Signature:
System.ValueTuple`2[System.Boolean,System.String] GetText(System.String, Int32)
- prompt: String value - See description for usage.
- timeout: Timeout specified in milliseconds. (Optional)
Description:
Sends an internal prompt request and returns the text entered
Example:
res, name = GetText("Name?", 10000)
if res:
Rename(0xc1b, name) Method Signature:
Void GuildMsg(System.String)
- message: String value - See description for usage.
Description:
Sends given message to guild chat.
Example:
GuildMsg("alert") Method Signature:
Void HeadMsg(System.String, System.Object, Int32)
- message: String value - See description for usage.
- obj: An entity serial in integer or hex format, or an alias string such as "self". (Optional)
- hue: Item Hue or -1 for any. (Optional)
Description:
Displays overhead message above given mobile / item.
Example:
HeadMsg("hi", "backpack") Method Signature:
Void Msg(System.String, Int32)
- message: String value - See description for usage.
- hue: Item Hue or -1 for any. (Optional)
Description:
Speaks the given message, Optional hue
Example:
Msg("hi") Method Signature:
Void PartyMsg(System.String)
- message: String value - See description for usage.
Description:
Sends given message to party chat.
Example:
PartyMsg("alert") Method Signature:
Void PromptMsg(System.String)
- message: String value - See description for usage.
Description:
Sends the specified message as a prompt response
Example:
PromptMsg("hello") Method Signature:
Boolean WaitForPrompt(Int32)
- timeout: Timeout specified in milliseconds.
Description:
Wait the specified timeout for a prompt packet to be received
Example:
WaitForPrompt(5000) Method Signature:
Void WhisperMsg(System.String)
- message: String value - See description for usage.
Description:
Whispers the given message
Example:
WhisperMsg("hi") Method Signature:
Void YellMsg(System.String)
- message: String value - See description for usage.
Description:
Yells the given message
Example:
YellMsg("hi")