Initial Commit
Initial Commit [v1.32PRC8]
This commit is contained in:
19
_module/nss/qst_cq10_jump.nss
Normal file
19
_module/nss/qst_cq10_jump.nss
Normal file
@@ -0,0 +1,19 @@
|
||||
void main()
|
||||
{
|
||||
string sTarget;
|
||||
location lLoc;
|
||||
object oPC;
|
||||
|
||||
oPC = GetPCSpeaker();
|
||||
|
||||
sTarget = "P3_Spawn";
|
||||
|
||||
lLoc = GetLocation(GetObjectByTag(sTarget));
|
||||
|
||||
object oPartyMember = GetFirstFactionMember(oPC, TRUE);
|
||||
while (GetIsObjectValid(oPartyMember) == TRUE)
|
||||
{
|
||||
AssignCommand(oPartyMember,JumpToLocation(lLoc));
|
||||
oPartyMember = GetNextFactionMember(oPC, TRUE);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user