12 lines
376 B
Plaintext
12 lines
376 B
Plaintext
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
oTarget = GetWaypointByTag("WP_ZOLAD_VFX");
|
|
ActionPauseConversation();
|
|
DelayCommand(2.0, ActionCastFakeSpellAtLocation(SPELL_FIREBALL,GetLocation(oTarget)));
|
|
DelayCommand(3.0, ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_FNF_PWKILL), GetLocation(oTarget)));
|
|
DelayCommand(4.0, ActionResumeConversation());
|
|
|
|
}
|