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