17 lines
456 B
Plaintext
17 lines
456 B
Plaintext
|
//Put this on action taken in the conversation editor
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oWaypoint = GetWaypointByTag("WP_anthill_start");
|
||
|
location lTarget = GetLocation(oWaypoint);
|
||
|
|
||
|
AssignCommand(oPC, ClearAllActions());
|
||
|
AssignCommand(oPC, PlaySound("vs_chant_ench_hm"));
|
||
|
ActionCastFakeSpellAtObject(SPELL_BANISHMENT, oPC,PROJECTILE_PATH_TYPE_HOMING);
|
||
|
DelayCommand(2.0, AssignCommand(oPC, ActionJumpToLocation(lTarget)));
|
||
|
|
||
|
|
||
|
}
|
||
|
|