Changed folder name.

Changed folder name.
This commit is contained in:
Jaysyn904
2022-10-07 21:08:37 -04:00
parent 1c33c2843e
commit 8d97886c3f
7060 changed files with 0 additions and 0 deletions

35
_module/nss/guilesway.nss Normal file
View File

@@ -0,0 +1,35 @@
location lTarget;
object oTarget;
//Put this script OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
//if (GetLocalInt(OBJECT_SELF, "DM_USED")>= 1)
// return;
if (GetItemPossessedBy(oPC, "guilesecret")!= OBJECT_INVALID)
{
if(GetItemPossessedBy(oPC, "guildpass")!= OBJECT_INVALID)
{
oTarget = GetWaypointByTag("gway");
lTarget = GetLocation(oTarget);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
AssignCommand(oPC, ClearAllActions());
AssignCommand(oPC, ActionJumpToLocation(lTarget));
}
}
//No matter what this only happens ONE TIME EVER!
//SetLocalInt(OBJECT_SELF, "DM_USED", 1);
//End script
}