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.
16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
void main()
|
|
{
|
|
|
|
|
|
|
|
object oObject=GetLastUsedBy();
|
|
location locNew=GetLocation(GetWaypointByTag("jw_siren_tele_wp"));
|
|
|
|
if (GetIsObjectValid(oObject)&&GetIsPC(oObject))
|
|
{
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_UNSUMMON),oObject);
|
|
AssignCommand(oObject,JumpToLocation(locNew));
|
|
}
|
|
|
|
}
|