WoR_PRC8/_module/nss/s_zoladspell.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

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());
}