• 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!

Canary How do I add new bosses?

Saintt

New Member
Joined
Nov 3, 2008
Messages
9
Reaction score
0
I have managed to create the new boss file for the rootkracken and have put it in the scripts/quests folder but it doesnt seem to work is there other places it needs to be added?

LUA:
local config = {
    boss = {
        name = "The Rootkraken",
        position = Position(32623, 332946, 15),
    },
    requiredLevel = 300,
    timeAfterKill = 120,
    timeToDefeat = 30 * 60,
    playerPositions = {
        { pos = Position(32618, 32909, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32910, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32911, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32912, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32913, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
    },
    specPos = {
        from = Position(32608, 32933, 15),
        to = Position(32636, 332960, 15),
    },
    exit = Position(32615, 32910, 15),
}
local lever = BossLever(config)
lever:position(Position(32618, 332908, 15))
lever:register()

Update im just retarded and fat fingered some extra numbers in the y pos
 
Last edited:
What is BossLever? Where is the code for that

LUA:
local lever = BossLever(config)
is not this?
I have managed to create the new boss file for the rootkracken and have put it in the scripts/quests folder but it doesnt seem to work is there other places it needs to be added?

LUA:
local config = {
    boss = {
        name = "The Rootkraken",
        position = Position(32623, 332946, 15),
    },
    requiredLevel = 300,
    timeAfterKill = 120,
    timeToDefeat = 30 * 60,
    playerPositions = {
        { pos = Position(32618, 32909, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32910, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32911, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32912, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32913, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
    },
    specPos = {
        from = Position(32608, 32933, 15),
        to = Position(32636, 332960, 15),
    },
    exit = Position(32615, 32910, 15),
}
local lever = BossLever(config)
lever:position(Position(32618, 332908, 15))
lever:register()

Update im just retarded and fat fingered some extra numbers in the y pos
check if it's working
LUA:
local config = {
    boss = {
        name = "The Rootkraken",
        position = Position(32623, 332946, 15), -- Asegúrate de que esta posición sea válida en el mapa
    },
    requiredLevel = 300,
    timeAfterKill = 120, -- Tiempo en segundos después de matar al jefe
    timeToDefeat = 30 * 60, -- Tiempo en segundos para derrotar al jefe
    playerPositions = {
        { pos = Position(32618, 32909, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32910, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32911, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32912, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32913, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
    },
    specPos = {
        from = Position(32608, 32933, 15), -- Posición de entrada para el jefe
        to = Position(32636, 332960, 15), -- Posición de salida o destino
    },
    exit = Position(32615, 32910, 15), -- Posición de salida final
}

local lever = BossLever(config)
lever:position(Position(32618, 332908, 15)) -- Verifica que esta posición sea válida
lever:register()

-- Manejo de eventos para el jefe
function onBossKill()
    -- Lógica para manejar lo que sucede después de que el jefe es derrotado
    print(config.boss.name .. " ha sido derrotado.")
end

function onPlayerTeleport(player)
    -- Teletransporta al jugador y muestra el efecto
    for _, playerPos in ipairs(config.playerPositions) do
        if player:getPosition() == playerPos.pos then
            player:teleportTo(playerPos.teleport)
            player:getPosition():sendMagicEffect(playerPos.effect)
            break
        end
    end
end

-- Registra los eventos necesarios
lever:onKill(onBossKill)
for _, playerPos in ipairs(config.playerPositions) do
    playerPos.effect:teleport(playerPos.pos)
end
 
is not this?

check if it's working
LUA:
local config = {
    boss = {
        name = "The Rootkraken",
        position = Position(32623, 332946, 15), -- Asegúrate de que esta posición sea válida en el mapa
    },
    requiredLevel = 300,
    timeAfterKill = 120, -- Tiempo en segundos después de matar al jefe
    timeToDefeat = 30 * 60, -- Tiempo en segundos para derrotar al jefe
    playerPositions = {
        { pos = Position(32618, 32909, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32910, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32911, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32912, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
        { pos = Position(32618, 32913, 15), teleport = Position(32622, 32909, 15), effect = CONST_ME_TELEPORT },
    },
    specPos = {
        from = Position(32608, 32933, 15), -- Posición de entrada para el jefe
        to = Position(32636, 332960, 15), -- Posición de salida o destino
    },
    exit = Position(32615, 32910, 15), -- Posición de salida final
}

local lever = BossLever(config)
lever:position(Position(32618, 332908, 15)) -- Verifica que esta posición sea válida
lever:register()

-- Manejo de eventos para el jefe
function onBossKill()
    -- Lógica para manejar lo que sucede después de que el jefe es derrotado
    print(config.boss.name .. " ha sido derrotado.")
end

function onPlayerTeleport(player)
    -- Teletransporta al jugador y muestra el efecto
    for _, playerPos in ipairs(config.playerPositions) do
        if player:getPosition() == playerPos.pos then
            player:teleportTo(playerPos.teleport)
            player:getPosition():sendMagicEffect(playerPos.effect)
            break
        end
    end
end

-- Registra los eventos necesarios
lever:onKill(onBossKill)
for _, playerPos in ipairs(config.playerPositions) do
    playerPos.effect:teleport(playerPos.pos)
end
I posted an update it does work I just added extra numbers to the postions with my fat fingers xD
 
Back
Top