• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

MQ2Respawn (Kill then Rezz yourself) (1 Viewer)

TeachersPet

Well-known member
Joined
Jul 27, 2005
RedCents
71¢
Original idea is credited to Zippzipp, but he coded it so badly I couldn't stand it.

Uses: Ghetto Fade on Zek, refreshing Harm Touch, deleveling an enemy you have info to.

Command: /respawn

Rich (BB code):
/* 
	MQ2Respawn
	By: TeachersPet

	Based on MQ2SelfKill by Zippzipp because I can't stand how he coded it.
	
	Usage: /respawn to die and then respawn on top of yourself
*/

#include "../MQ2Plugin.h"
#include <time.h>

PreSetup("MQ2Respawn");

bool bSuicide = false;
float oldGravity = 0;
time_t suicideTime;

VOID RespawnMe(PSPAWNINFO pChar, PCHAR szLine) {
	suicideTime = time (NULL);
	oldGravity = ((PZONEINFO)pZoneInfo)->ZoneGravity;
	((PZONEINFO)pZoneInfo)->ZoneGravity = 9999;
	bSuicide = true;
}

PLUGIN_API VOID InitializePlugin(VOID) {
	AddCommand("/respawn", RespawnMe);
}

PLUGIN_API VOID ShutdownPlugin(VOID) {
	RemoveCommand("/respawn");
}

PLUGIN_API VOID OnPulse(VOID){
	if(bSuicide && (time (NULL)) >= (suicideTime + 1)) {
		((PZONEINFO)pZoneInfo)->ZoneGravity = oldGravity;
		DoCommand(GetCharInfo()->pSpawn,"/squelch /notify RespawnWnd RW_OptionsList listselect 2");
		DoCommand(GetCharInfo()->pSpawn,"/squelch /notify RespawnWnd RW_SelectButton leftmouseup");
		bSuicide = false;
	}
}
 
um, welll if you use it to make 100+ corpses of you in treeform to populate guild lobby just so your guild can have a nice little grove on east side for buffing and rezzing. people ask how you got so many corpses so fast. Btw, just like when you /gank too fast, you will d/c if you /respawn too fast.

note: you can cover it up by saying you dueled another toon.
 
Nah i dont plan on using it for that =) Im a class with rez so i plan on just using it to revive myself to rez myself right after. Thats possible right?
 
yes its possible but if the people in group/raid don't know you use mq, then they will ask how you revived especially if you are the only rezzer.
 
i raid with 52, im sure i wont be, ill jsut say i got a rez from someone else P
 
ok, you should be fine then, but it is rather fast that you die and pop back up, not long enough time for a normal rez.
 
i wont be doing it right away ... it isnt automatic is it? Ill just do it manually. type /respawna fter like 12 seconds of me being ded :P
 
MQ2 rez allows u to respawn as if you were 96% rezzed or just respawn + rez yourself?
 
It makes the game think you received a rez of any type. You can then rez yourself and get the exp back. This is MQ2rezzy
 
There isn't. MQ2Rez types in the same command that Rezzy does. The only difference is that MQ2Rez will loot out your corpse and execute a command after you are rezzed, as well.
 
Bakidood said:
Sounds the exact same to me as what MQ2Respawn does.. whats the difference?

MQ2Respawn kills you.... then resses you

MQ2Rez & MQ2Rezzy just resses you after you've died of "natural" causes
 
MQ2Respawn (Kill then Rezz yourself)

Users who are viewing this thread

Back
Top
Cart