PRC8/nwn/nwnprc/trunk/scripts/mord_exit.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

40 lines
1.5 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");
// 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);
}