Changed folder name.
Changed folder name.
This commit is contained in:
22
_module/nss/partyonly.nss
Normal file
22
_module/nss/partyonly.nss
Normal file
@@ -0,0 +1,22 @@
|
||||
location lTarget;
|
||||
object oTarget;
|
||||
|
||||
//Put this script OnEnter
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
if (GetItemPossessedBy(oPC, "barrel")== OBJECT_INVALID)
|
||||
{
|
||||
oTarget = GetWaypointByTag("secureexit");
|
||||
lTarget = GetLocation(oTarget);
|
||||
|
||||
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
|
||||
AssignCommand(oPC, ClearAllActions());
|
||||
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user