Rune_PRC8/_module/nss/eth_mord_exit.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

44 lines
1.8 KiB
Plaintext

void main()
{
PrintString("mord_exit entering");
// Get the person walking through the door and their area, i.e.
// the mansion.
object oActivator = GetLastUsedBy();
object aActivator = GetArea(oActivator);
// Get the saved return location for the activator, we want to boot all
// players who have this location saved on them. This will solve the
// problem of 2 parties getting mixed somehow, only the party that clicks
// on the door actually gets booted.
location lActivatorReturnLoc = GetLocalLocation(oActivator, "MMM_RETURNLOC");
//In Case players are stupid and mess up leaving, activate the Backdoor and Set its location
SetLocalLocation(GetNearestObjectByTag("MordBackdoor"), "lBackdoorReturnLoc", lActivatorReturnLoc);
SetLocalInt(GetNearestObjectByTag("MordBackdoor"), "ACTIVE", 1);
// Loop through all the players and check to see if they are in
// the mansion and dump them out if they are.
object oPC = GetFirstPC();
while (GetIsObjectValid(oPC))
{
// If the PC's are in the same area and have the same return location
// on them then boot the current PC.
if (aActivator == GetArea (oPC) &&
lActivatorReturnLoc == GetLocalLocation(oPC, "MMM_RETURNLOC"))
{
// Get the return location we saved on the PC and send them there.
DeleteLocalLocation(oPC, "MMM_RETURNLOC");
AssignCommand(oPC, DelayCommand(1.0,
ActionJumpToLocation(lActivatorReturnLoc)));
}
oPC = GetNextPC();
}
// Now that all are moved, destroy the mansion door.
object oGate = GetLocalObject(OBJECT_SELF, "MMM_ENTRANCE");
DeleteLocalObject(OBJECT_SELF, "MMM_ENTRANCE");
if (GetIsObjectValid(oGate)) DestroyObject(oGate, 1.0);
}