TeachersPet
Well-known member
- Joined
- Jul 27, 2005
- RedCents
- 71¢
dud, a newcomer to RedGuides sent me a PM on IRC telling me about a funny bug allowing players to pop up right at their corpses with the Respawn Options window up, so naturally, I made a plugin for it.
Usage:
When the Respawn Options window is up, type /rezzme. You still will need a rezz but it sure beats running back to your corpse.
Post if you have any problems with the plugin and/or have words of praise to my almighty ownage.
Usage:
When the Respawn Options window is up, type /rezzme. You still will need a rezz but it sure beats running back to your corpse.
Post if you have any problems with the plugin and/or have words of praise to my almighty ownage.
Rich (BB code):
/*
MQ2Rezzy
By: TeachersPet
Code so easy it almost hurts
*/
#include "../MQ2Plugin.h"
PreSetup("MQ2Rezzy");
VOID Rezzy(PSPAWNINFO pChar, PCHAR szLine) {
DoCommand(GetCharInfo()->pSpawn,"/squelch /notify RespawnWnd RW_OptionsList listselect 2");
DoCommand(GetCharInfo()->pSpawn,"/squelch /notify RespawnWnd RW_SelectButton leftmouseup");
}
PLUGIN_API VOID InitializePlugin(VOID)
{
AddCommand("/rezzme",Rezzy);
}
PLUGIN_API VOID ShutdownPlugin(VOID)
{
RemoveCommand("/rezzme");
}
Last edited:



red cent