mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-15 19:32:20 -04:00
8 lines
218 B
Lua
8 lines
218 B
Lua
|
|
local Dinkledork = {}
|
||
|
|
|
||
|
|
function Dinkledork.OnSpawn(event, creature)
|
||
|
|
creature:CastSpell(creature, 100138, true)
|
||
|
|
creature:CastSpell(creature, 100035, true)
|
||
|
|
end
|
||
|
|
|
||
|
|
RegisterCreatureEvent(400066, 5, Dinkledork.OnSpawn)
|