21 lines
368 B
Plaintext
21 lines
368 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastUsedBy();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
|
|
object oTarget;
|
|
oTarget = GetWaypointByTag("WP_THUNDER");
|
|
|
|
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
|
|
|
|
oTarget = oPC;
|
|
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget));
|
|
|
|
}
|