From d564909c2f8886e37669705364dcb06dfceeff95 Mon Sep 17 00:00:00 2001 From: Emagi Date: Wed, 7 May 2025 11:10:11 -0400 Subject: [PATCH] Doc F slash commands --- docs/slash_commands/facebook.md | 10 ++++++++++ docs/slash_commands/facial_anim_receiver.md | 10 ++++++++++ docs/slash_commands/finditem.md | 10 ++++++++++ docs/slash_commands/findnpc.md | 10 ++++++++++ docs/slash_commands/findspawn.md | 13 +++++++++++++ docs/slash_commands/flag.md | 17 +++++++++++++++++ docs/slash_commands/flymode.md | 15 +++++++++++++++ docs/slash_commands/follow.md | 13 +++++++++++++ docs/slash_commands/friend_add.md | 13 +++++++++++++ docs/slash_commands/friend_remove.md | 13 +++++++++++++ docs/slash_commands/friends.md | 13 +++++++++++++ docs/slash_commands/frombroker.md | 13 +++++++++++++ docs/slash_commands/frommerchant.md | 13 +++++++++++++ 13 files changed, 163 insertions(+) create mode 100644 docs/slash_commands/facebook.md create mode 100644 docs/slash_commands/facial_anim_receiver.md create mode 100644 docs/slash_commands/finditem.md create mode 100644 docs/slash_commands/findnpc.md create mode 100644 docs/slash_commands/findspawn.md create mode 100644 docs/slash_commands/flag.md create mode 100644 docs/slash_commands/flymode.md create mode 100644 docs/slash_commands/follow.md create mode 100644 docs/slash_commands/friend_add.md create mode 100644 docs/slash_commands/friend_remove.md create mode 100644 docs/slash_commands/friends.md create mode 100644 docs/slash_commands/frombroker.md create mode 100644 docs/slash_commands/frommerchant.md diff --git a/docs/slash_commands/facebook.md b/docs/slash_commands/facebook.md new file mode 100644 index 0000000..1b987c6 --- /dev/null +++ b/docs/slash_commands/facebook.md @@ -0,0 +1,10 @@ +### Command: /facebook + +**Handler Macro:** UNKNOWN + +**Handler Value:** 999 + +**Required Status:** 0 + +**Arguments:** +None diff --git a/docs/slash_commands/facial_anim_receiver.md b/docs/slash_commands/facial_anim_receiver.md new file mode 100644 index 0000000..532cf0d --- /dev/null +++ b/docs/slash_commands/facial_anim_receiver.md @@ -0,0 +1,10 @@ +### Command: /facial_anim_receiver + +**Handler Macro:** UNKNOWN + +**Handler Value:** 999 + +**Required Status:** 0 + +**Arguments:** +None diff --git a/docs/slash_commands/finditem.md b/docs/slash_commands/finditem.md new file mode 100644 index 0000000..b37518f --- /dev/null +++ b/docs/slash_commands/finditem.md @@ -0,0 +1,10 @@ +### Command: /finditem + +**Handler Macro:** UNKNOWN + +**Handler Value:** 999 + +**Required Status:** 0 + +**Arguments:** +None diff --git a/docs/slash_commands/findnpc.md b/docs/slash_commands/findnpc.md new file mode 100644 index 0000000..744ab53 --- /dev/null +++ b/docs/slash_commands/findnpc.md @@ -0,0 +1,10 @@ +### Command: /findnpc + +**Handler Macro:** UNKNOWN + +**Handler Value:** 999 + +**Required Status:** 0 + +**Arguments:** +None diff --git a/docs/slash_commands/findspawn.md b/docs/slash_commands/findspawn.md new file mode 100644 index 0000000..75bd076 --- /dev/null +++ b/docs/slash_commands/findspawn.md @@ -0,0 +1,13 @@ +### Command: /findspawn regex_string + +**Handler Macro:** COMMAND_FINDSPAWN + +**Handler Value:** 521 + +**Required Status:** 200 + +**Arguments:** +- `arg[0]`: `string regex_string` + +**Notes:** +- GM Command to find spawns in the zone, supports regex queries as well. Eg. /findspawn Rabbit or /findspawn .* diff --git a/docs/slash_commands/flag.md b/docs/slash_commands/flag.md new file mode 100644 index 0000000..cad6b2a --- /dev/null +++ b/docs/slash_commands/flag.md @@ -0,0 +1,17 @@ +### Command: /flag character_name new_status + +**Handler Macro:** COMMAND_ADMINFLAG + +**Handler Value:** 21 + +**Required Status:** 10 + +**Arguments:** +- `arg[0]`: `string character_name` +- `arg[1]`: `int new_status` + +**Usage Examples:** +- `/flag {name} {new_status}");` + +**Notes:** +- Allows a GM Administrator to flag another player with status, Eg. /flag theirname 200 \ No newline at end of file diff --git a/docs/slash_commands/flymode.md b/docs/slash_commands/flymode.md new file mode 100644 index 0000000..226276b --- /dev/null +++ b/docs/slash_commands/flymode.md @@ -0,0 +1,15 @@ +### Command: /flymode mode + +**Handler Macro:** COMMAND_FLYMODE + +**Handler Value:** 57 + +**Required Status:** 200 + +**Arguments:** +- `arg[0]`: `int mode` + +**Notes:** +- /flymode 1 - in KoS and earlier clients this does not allow up and down movement just strafing. Newer clients can fully fly like on a mount. +- /flymode 2 - allows flying and clipping through the world space. +- /flymode 0 - disables flying or clip mode. \ No newline at end of file diff --git a/docs/slash_commands/follow.md b/docs/slash_commands/follow.md new file mode 100644 index 0000000..ac78745 --- /dev/null +++ b/docs/slash_commands/follow.md @@ -0,0 +1,13 @@ +### Command: /follow + +**Handler Macro:** COMMAND_FOLLOW + +**Handler Value:** 26 + +**Required Status:** 0 + +**Arguments:** +None + +**Notes:** +- Player's selected target will be followed if in range and in a group. \ No newline at end of file diff --git a/docs/slash_commands/friend_add.md b/docs/slash_commands/friend_add.md new file mode 100644 index 0000000..ffabcfc --- /dev/null +++ b/docs/slash_commands/friend_add.md @@ -0,0 +1,13 @@ +### Command: /friend_add name + +**Handler Macro:** COMMAND_FRIEND_ADD + +**Handler Value:** 108 + +**Required Status:** 0 + +**Arguments:** +- `arg[0]`: `string name` + +**Notes:** +- Adds a friend to your friend list with `name` \ No newline at end of file diff --git a/docs/slash_commands/friend_remove.md b/docs/slash_commands/friend_remove.md new file mode 100644 index 0000000..e5f6a73 --- /dev/null +++ b/docs/slash_commands/friend_remove.md @@ -0,0 +1,13 @@ +### Command: /friend_remove name + +**Handler Macro:** COMMAND_FRIEND_REMOVE + +**Handler Value:** 109 + +**Required Status:** 0 + +**Arguments:** +- `arg[0]`: `string name` + +**Notes:** +- Removes a friend to your friend list with `name` \ No newline at end of file diff --git a/docs/slash_commands/friends.md b/docs/slash_commands/friends.md new file mode 100644 index 0000000..c4ae465 --- /dev/null +++ b/docs/slash_commands/friends.md @@ -0,0 +1,13 @@ +### Command: /friends + +**Handler Macro:** COMMAND_FRIENDS + +**Handler Value:** 110 + +**Required Status:** 0 + +**Arguments:** +None + +**Notes:** +- Not implemented, lists friends? UI is available in client. \ No newline at end of file diff --git a/docs/slash_commands/frombroker.md b/docs/slash_commands/frombroker.md new file mode 100644 index 0000000..59dd48b --- /dev/null +++ b/docs/slash_commands/frombroker.md @@ -0,0 +1,13 @@ +### Command: /frombroker + +**Handler Macro:** COMMAND_FROMBROKER + +**Handler Value:** 527 + +**Required Status:** 0 + +**Arguments:** +None + +**Notes:** +- Starts a broker session (at this time is an itemsearch and summonitem behavior, not a broker to other player items). \ No newline at end of file diff --git a/docs/slash_commands/frommerchant.md b/docs/slash_commands/frommerchant.md new file mode 100644 index 0000000..b3898f2 --- /dev/null +++ b/docs/slash_commands/frommerchant.md @@ -0,0 +1,13 @@ +### Command: /frommerchant + +**Handler Macro:** COMMAND_FROM_MERCHANT + +**Handler Value:** 86 + +**Required Status:** 0 + +**Arguments:** +None + +**Notes:** +- Opens the merchant window of the Player's target whether vendor or repair mender. \ No newline at end of file