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));
|
||
|
}
|