This is made for project 1999, but *should* work on any EQEmu server compatible with the Titanium client.
Commands:
***NOTES***
• /corpses only lists accurate decay times if you have been in the zone since that npc died.
• /zone is very buggy and will sometimes cause a client crash. Seems to always actually zone you though. WILL ONLY EVER WORK ON ZONES THAT ARE ADJACENT TO YOUR CURRENT ZONE.
• /fade causes you to drop from any group you might be in.
• /hijack doesn't seem to actually do anything on the server-side. Have not yet found any use of this effect.
• /docrack implements my own, hard-coded offset hacks. This will be changed to be more user friendly in the future.
***UPCOMING FEATURES***
• Fix /zone, and also implement A.I. zone pathing to automatically continually /zone you until you get to your final destination.
• Remove hijack?
• Enhance docrack, or implement/borrow the real docrack's code. I suck at window objects.
• Implement insta-mem spells. Additionally, this will further expand into a generic SendEQMessage command for my own amusement.
• Rename /kos to /ghost. It really just lets you move around client-side? (Further testing required, need 2 accounts).
• Make /banker echo your target's name.
• Allow /gravity to take 0 parameters, setting gravity back to the default (0.4f?) value.
• Make the mq21999 plugin version more apparent to the user. (maybe in the command echos?)
• Make use of a string table. Everything feels too hardcoded.
• Implement trade-hack. (Further testing required, need 2 accounts).
Commands:
Rich (BB code):
{
WriteChatColor("(MQ21999) ---Commands---",CONCOLOR_YELLOW);
WriteChatColor("(MQ21999) /mq21999: This help menu.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /banker: Makes your target a banker.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /corpses: Prints all NPC corpses in the zone.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /docrack: Enables all client hacks such as nofalldamage.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /fade: Reloads you into your current zone at the same location.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /gravity float: Sets the current zone gravity to the specified amount. No parameters echos the current zone gravity.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /hijack: Toggles between your target's spawn id and your spawn id.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /kos: Toggles kill-on-sight status.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /tnlc: Targets the next lootable corpse in the zone.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /tnm: Targets the next merchant in the zone.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /speed 0->255: Sets your speed to the specified integer value.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /succor: Warps you to the safe location in your current zone.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /warp x y z: Warps you to the specified location in your current zone.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /warptar: Warps you to your target's location.",CONCOLOR_LIGHTBLUE);
WriteChatColor("(MQ21999) /zone zoneid: Teleports you to an adjacent zone.",
CONCOLOR_LIGHTBLUE);
}
***NOTES***
• /corpses only lists accurate decay times if you have been in the zone since that npc died.
• /zone is very buggy and will sometimes cause a client crash. Seems to always actually zone you though. WILL ONLY EVER WORK ON ZONES THAT ARE ADJACENT TO YOUR CURRENT ZONE.
• /fade causes you to drop from any group you might be in.
• /hijack doesn't seem to actually do anything on the server-side. Have not yet found any use of this effect.
• /docrack implements my own, hard-coded offset hacks. This will be changed to be more user friendly in the future.
***UPCOMING FEATURES***
• Fix /zone, and also implement A.I. zone pathing to automatically continually /zone you until you get to your final destination.
• Remove hijack?
• Enhance docrack, or implement/borrow the real docrack's code. I suck at window objects.
• Implement insta-mem spells. Additionally, this will further expand into a generic SendEQMessage command for my own amusement.
• Rename /kos to /ghost. It really just lets you move around client-side? (Further testing required, need 2 accounts).
• Make /banker echo your target's name.
• Allow /gravity to take 0 parameters, setting gravity back to the default (0.4f?) value.
• Make the mq21999 plugin version more apparent to the user. (maybe in the command echos?)
• Make use of a string table. Everything feels too hardcoded.
• Implement trade-hack. (Further testing required, need 2 accounts).


