15 lines
437 B
Plaintext
15 lines
437 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastKiller();
|
|
object oTarget = GetWaypointByTag("wp_rh_outside");
|
|
location lTarget = GetLocation(oTarget);
|
|
effect eVis = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION);
|
|
|
|
//if (!GetIsPC(oPC)) return;
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,eVis, GetLocation(oPC));
|
|
AssignCommand(oPC, ActionWait(2.0));
|
|
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
|
}
|