• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

I need azerus.lua

here: data/creaturescripts/scripts
Azerus.lua
Lua:
local config = {
    message = "Azerus ran into teleporter! It will disappear in 2 minutes. Enter It!",
    teleportId = 1387,
    bosses = { -- Monster Name, Teleport To Position, Teleport Position
        ["Azerus"] = { { x = 21325, y = 21073, z = 10 }, { x = 21325, y = 21075, z = 9 }},



            }
}


function onDeath(cid, corpse, killer)
    local position = getCreaturePosition(cid)
    for name, pos in pairs(config.bosses) do
        if name == getCreatureName(cid) then

        doCreateTeleport(config.teleportId, pos[1], pos[2])
        doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)
        end
    end
    return TRUE
end

Creaturescripts.xml
Lua:
<event type="death" name="Azerus" event="script" value="azerus.lua"/>
 
no i need full azerus.lua click to globus and respawn rift worm rift brood grim reaper itp and later azerus

data/actions/scripts :)
 
Back
Top