Battledale_PRC8/_module/nss/jw_gobb2_telepor.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

29 lines
684 B
Plaintext

void main()
{
object oPC=GetEnteringObject();
object oidDest=GetWaypointByTag("jw_gobbo_wp2");
int nIdx;
object oAssociate;
if (GetIsObjectValid(oPC)&&GetIsPC(oPC))
{
//ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_DISPEL),oPC);
AssignCommand(oPC,JumpToLocation(GetLocation(GetWaypointByTag("jw_gobbo_wp2"))));
for (nIdx=1;nIdx<=5;nIdx++)
{
oAssociate=GetAssociate(nIdx,oPC);
if (GetIsObjectValid(oAssociate))
{
AssignCommand(oAssociate, JumpToObject(oidDest,FALSE));
}
}
AssignCommand(oPC, ActionJumpToObject(oidDest,FALSE));
}
}