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.
11 lines
370 B
Plaintext
11 lines
370 B
Plaintext
void main()
|
|
{
|
|
effect eUsePortal = EffectVisualEffect(VFX_FNF_SUMMON_CELESTIAL);
|
|
object oUser = GetLastUsedBy();
|
|
location lJumpSpot = GetLocation(oUser);
|
|
location lJump2Spot = GetLocation(GetObjectByTag("ty_portal2"));
|
|
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eUsePortal, lJumpSpot);
|
|
AssignCommand(oUser, ActionJumpToLocation(lJump2Spot));
|
|
}
|