Holy. Are these from the OpCodes? maybe that's why I never saw them. They scare me.
From the Titanium opcode.conf:
Code:
#GM/guide opcodes
OP_GMServers=0x3387 #/servers
OP_GMBecomeNPC=0x7864 #/becomenpc
OP_GMZoneRequest=0x1306 #/zone
OP_GMSearchCorpse=0x3c32 #/searchcorpse
OP_GMHideMe=0x15b2 #/hideme
OP_GMGoto=0x1cee #/goto
OP_GMDelCorpse=0x0b2f #/delcorpse
OP_GMApproval=0x0c0f #/approval
OP_GMToggle=0x7fea #/toggletell
OP_GMZoneRequest2=0x0000
OP_GMSummon=0x1edc #/summon
OP_GMEmoteZone=0x39f2 #/emotezone
OP_GMEmoteWorld=0x3383 #/emoteworld (not implemented)
OP_GMFind=0x5930 #/find
OP_GMKick=0x692c #/kick
Some stuff from the old eq_opcodes.h file (some descriptions):
Code:
// #define LiveOP_GMSearchCorpse 0x0097 // GM /searchcorpse - Search all zones for named corpse
// #define LiveOP_SearchCorpse LiveOP_GMSearchCorpse // /searchcorpse
#define LiveOP_GMDelCorpse 0x0199 // /delcorpse
#define LiveOP_GMFind 0x0047 // GM /find - ?
#define LiveOP_GMServers 0x0020 // GM /servers - ?
#define LiveOP_GMGoto 0x010b // GM /goto - Transport to another loc
#define LiveOP_GMSummon 0x028c // GM /summon - Summon PC to self
#define LiveOP_GMKick 0x010a // GM /kick - Boot player
#define LiveOP_GMKill 0x0109 // GM /kill - Insta kill mob/pc
#define LiveOP_GMNameChange 0x0b40 // /name
#define LiveOP_GMLastName 0x00a3 // GM /lastname - Change user lastname
#define LiveOP_GMToggle 0x01b3 // GM /toggle - Toggle ability to receive tells from other PC's
#define LiveOP_GMEmoteZone 0x028f // GM /emotezone - Send zonewide emote
#define LiveOP_GMBecomeNPC 0x0074 // GM /becomenpc - Become an NPC
// #define LiveOP_GMApproval 0x01b0 // GM /approval - Name approval duty?
#define LiveOP_GMHideMe 0x00de // GM /hideme - Remove self from spawn lists and make invis
// #define LiveOP_GMInquire 0x00da // GM /inquire - Search soulmark data
// #define LiveOP_GMSoulmark 0x00dc // GM /praise /warn - Add soulmark comment to user file
#define LiveOP_GMZoneRequest 0x0184 // GM /zone - Transport to another zone
#define LiveOP_GMZoneRequest2 0x0239 // GM /zone 2
Not sure if this is the definitive list, but cool. Time to go break something.