19 lines
396 B
Plaintext
19 lines
396 B
Plaintext
|
//Put this on action taken in the conversation editor
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
|
||
|
object oTarget;
|
||
|
oTarget = GetWaypointByTag("WP_cho_banish2");
|
||
|
|
||
|
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
|
||
|
|
||
|
oTarget = oPC;
|
||
|
|
||
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_UNSUMMON), GetLocation(oTarget));
|
||
|
|
||
|
}
|