Battledale_PRC8/_module/nss/jw_gobbo_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

40 lines
950 B
Plaintext

void main()
{
object oPC=GetEnteringObject();
object oidDest=GetWaypointByTag("jw_gobbo_wp1");
int nIdx;
object oAssociate;
if (GetIsObjectValid(oPC)&&GetIsPC(oPC)&&(GetRacialType(oPC)==RACIAL_TYPE_ANIMAL))
{
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_DISPEL),oPC);
AssignCommand(oPC,JumpToLocation(GetLocation(GetWaypointByTag("jw_gobbo_wp1"))));
for (nIdx=1;nIdx<=5;nIdx++)
{
oAssociate=GetAssociate(nIdx,oPC);
if (GetIsObjectValid(oAssociate))
{
AssignCommand(oAssociate, JumpToObject(oidDest,FALSE));
}
}
AssignCommand(oPC, ActionJumpToObject(oidDest,FALSE));
}
else
{
if (GetIsObjectValid(oPC)&&GetIsPC(oPC))
{
SendMessageToPC(oPC,"You feel uneasy as you stand before the gate, as if the place it leads to was not meant for you.");
}
}
}