Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,33 @@
void main()
{
//:: Declare major variables
object oPC = GetEnteringObject();
object oTarget = GetWaypointByTag("WP_Eel_WOM");
location lTarget = lTarget = GetLocation(oTarget);
if (GetIsPC(oPC))
return;
if (GetItemPossessedBy(oPC, "towerofangarngit")== OBJECT_INVALID)
return;
if (GetItemPossessedBy(oPC, "shadowmask")!= OBJECT_INVALID)
return;
CreateItemOnObject("shadowmask", oPC);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID)
return;
oTarget = GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(oTarget))
{
AssignCommand(oTarget, ClearAllActions());
AssignCommand(oTarget, ActionJumpToLocation(lTarget));
oTarget=GetNextFactionMember(oPC, FALSE);
}
}