Add files via upload

This commit is contained in:
Dinkledork
2023-03-21 02:26:56 -06:00
committed by GitHub
parent 2b50ae9df0
commit bd7b2fd4bb
26 changed files with 3354 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
local SPELL_ID = 100207
local SOUND_ID = 53774
local ADDITIONAL_SPELL_ID = 200181
function OnSpellCast(event, player, spell)
if spell:GetEntry() == SPELL_ID then
player:PlayDirectSound(SOUND_ID, player)
player:CastSpell(player, ADDITIONAL_SPELL_ID, true)
end
end
RegisterPlayerEvent(5, OnSpellCast)