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

12
MiscTools/SoL.lua Normal file
View File

@@ -0,0 +1,12 @@
-- AzerothCore Eluna script by Dinkledork
local SPELL_SURGE_OF_LIGHT_1 = 33151
local SPELL_CUSTOM = 100205
local function OnSpellCast(event, player, spell, skipCheck)
local spellId = spell:GetEntry()
if spellId == SPELL_SURGE_OF_LIGHT_1 then
player:CastSpell(player, SPELL_CUSTOM, true)
end
end
RegisterPlayerEvent(5, OnSpellCast)