Ancordia_PRC8/_module/nss/dung_onexit.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

16 lines
584 B
Plaintext

void Body(object oExiting)
{
if (!GetIsPC(oExiting)) return;
object oExArea = GetArea(GetWaypointByTag(GetLocalString(OBJECT_SELF, "DungeonWP")));
//FloatingTextStringOnCreature("DungExit fired", GetFirstPC()); //TEST
SetLocalInt(oExArea, "Players", GetLocalInt(oExArea, "Players")-1); //because pseudo event scripts don't subtract from the number of players
ExecuteScript("pseudo_donexit", oExArea);
}
void main()
{
object oExiting = GetExitingObject();
if (GetLocalInt(oExiting, "InTransition") == TRUE) return;
DelayCommand(1.0, Body(oExiting));
}