• TibiaFace

    Tibiaface | Una comunidad Open Tibia donde encontras : mapas, scripts, Otserver, npc y amigos etc ...

    .
    demo menumenu

    Afiliados



    Votar:

    [Pedido] Script para Drume

    Compartir:

    Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje (Página 1 de 1.)

    1[Pedido] Script para Drume Empty [Pedido] Script para Drume Mar Ene 05, 2021 4:50 pm

    alisdei

    alisdei
    Nuevo Miembro
    Nuevo Miembro
    Descripcion escribió:Hola gente!, alguien tendria por ahi el script del miniboss Drume (the order of the lion). Se los agradeceria.
    Imagen Explicativa escribió:Imagen Explicativa: [Pedido] Script para Drume Tibiaf10
    Version del Scripts: TFs 1.x

    3 participantes

    2[Pedido] Script para Drume Empty Re: [Pedido] Script para Drume Mar Ene 05, 2021 7:52 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    esperemos que alguien lo tenga



    [Pedido] Script para Drume YNU5B25
    3 participantes
    http://www.tibiaface.com

    3[Pedido] Script para Drume Empty Re: [Pedido] Script para Drume Mar Sep 07, 2021 8:06 pm

    Ethaan

    Ethaan
    Miembro
    Miembro
    hola amigo espero le funcione cualquier cosa si tiene algun inconveniente digame
    Código:
    local config = {
       lionPosition = {
          Position(32444, 32512, 7),
          Position(32449, 32516, 7),
          Position(32444, 32520, 7),
       },
       usurperPosition = {
          Position(32450, 32520, 7),
          Position(32444, 32516, 7),
          Position(32448, 32512, 7)
       },
       firstPlayerPosition = Position(32457, 32508, 6),
        centerPosition = Position(32439, 32523, 7), -- Center Room 
       exitPosition = Position(32453, 32503, 7), -- Exit Position
       newPosition = Position(32453, 32510, 7),
       rangeX = 22,
       rangeY = 16,
       timeToKill = 15, -- time in minutes to remove the player   
    }   

    local function RoomIsOccupied(centerPosition, rangeX, rangeY)
       local spectators = Game.getSpectators(config.centerPosition, false, true, config.rangeX, config.rangeX, config.rangeY, config.rangeY)
       if #spectators ~= 0 then
          return true
       end

       return false
    end


    local function clearRoomDrume(centerPosition, rangeX, rangeY, resetGlobalStorage)
       local spectators,
       spectator = Game.getSpectators(centerPosition, false, false, rangeX, rangeX, rangeY, rangeY)
       for i = 1, #spectators do
          spectator = spectators[i]
          if spectator:isMonster() then
             spectator:remove()
          end
          if spectator:isPlayer() then
             spectator:teleportTo(config.exitPosition)
             spectator:sendTextMessage(MESSAGE_EVENT_ADVANCE, "Your time is over.")
          end
       end
       if Game.getStorageValue(resetGlobalStorage) == 1 then
          Game.setStorageValue(resetGlobalStorage, -1)
       end
    end

    local drumeAction = Action()
    function drumeAction.onUse(player, item, fromPosition, target, toPosition, isHotkey)
       if player:getPosition() ~= config.firstPlayerPosition then return false end
       if RoomIsOccupied(config.centerPosition, config.rangeX, config.rangeY) then
          player:sendCancelMessage("There's someone already in the skirmish.")
          player:getPosition():sendMagicEffect(CONST_ME_POFF)
          return true
       end
       local tempPos, tempTile, tempCreature
       local players = {}
       for x = config.firstPlayerPosition.x, config.firstPlayerPosition.x + 4 do
          tempPos = Position(x, config.firstPlayerPosition.y, config.firstPlayerPosition.z)
          tempTile = Tile(tempPos)
          if tempTile then
             tempCreature = tempTile:getTopCreature()
             if tempCreature and tempCreature:isPlayer() then
                table.insert(players, tempCreature)
             end
          end
       end
       if #players == 0 then return false end
       for _, pi in pairs(players) do
          if pi:getStorageValue(Storage.TheOrderOfTheLion.Drume.Timer) > os.time() then
             player:sendCancelMessage("Someone of your team has already fought in the skirmish in the last 20h.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
       end
       local spectators = Game.getSpectators(config.centerPosition, false, false, config.rangeX, config.rangeX, config.rangeY, config.rangeY)
       for _, creature in pairs(spectators) do
          if creature:isMonster() then
             creature:remove()
          end
       end
       local totalLion = 0
       local totalUsurper = 0
       local tempMonster
       for _, pos in pairs(config.lionPosition) do
          tempMonster = Game.createMonster("Lion Commander", pos)
          if not tempMonster then
             player:sendCancelMessage("There was an error, contact an admin.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
          totalLion = totalLion + 1
       end
       for _, pos in pairs(config.usurperPosition) do
          tempMonster = Game.createMonster("Usurper Commander", pos)
          if not tempMonster then
             player:sendCancelMessage("There was an error, contact an admin.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
          totalUsurper = totalUsurper + 1
       end
       for _, pi in pairs(players) do
          pi:setStorageValue(Storage.TheOrderOfTheLion.Drume.Timer, os.time() + (20 * 60 * 60))
          pi:teleportTo(config.newPosition)
          addEvent(clearRoomDrume, config.timeToKill * 60 * 1000, config.centerPosition, config.rangeX, config.rangeY, resetGlobalStorage)
          pi:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You have " ..config.timeToKill.." minutes to defeat Drume.")
          
       end
       config.newPosition:sendMagicEffect(CONST_ME_TELEPORT)
       toPosition:sendMagicEffect(CONST_ME_POFF)
       Game.setStorageValue(Storage.TheOrderOfTheLion.Drume.TotalLionCommanders, totalLion)
       Game.setStorageValue(Storage.TheOrderOfTheLion.Drume.TotalUsurperCommanders, totalUsurper)
       return true
    end
    drumeAction:aid(59600)
    drumeAction:register()

    3 participantes

    4[Pedido] Script para Drume Empty Re: [Pedido] Script para Drume Miér Sep 08, 2021 12:41 pm

    alisdei

    alisdei
    Nuevo Miembro
    Nuevo Miembro
    Hola
    Gracias! por la info.

    Según reviso este código valida la cantidad de players en la posición y establece el tiempo limite de la quest verdad?
    Yo en realidad buscaba el script que creara la mecanica del boss de que las otras creatures tmb atacaran al drume y de que aparezca despues de matar los 3 lions, sino me equivoco.






    Ethaan escribió:hola amigo espero le funcione cualquier cosa si tiene algun inconveniente digame
    Código:
    local config = {
       lionPosition = {
          Position(32444, 32512, 7),
          Position(32449, 32516, 7),
          Position(32444, 32520, 7),
       },
       usurperPosition = {
          Position(32450, 32520, 7),
          Position(32444, 32516, 7),
          Position(32448, 32512, 7)
       },
       firstPlayerPosition = Position(32457, 32508, 6),
        centerPosition = Position(32439, 32523, 7), -- Center Room 
       exitPosition = Position(32453, 32503, 7), -- Exit Position
       newPosition = Position(32453, 32510, 7),
       rangeX = 22,
       rangeY = 16,
       timeToKill = 15, -- time in minutes to remove the player   
    }   

    local function RoomIsOccupied(centerPosition, rangeX, rangeY)
       local spectators = Game.getSpectators(config.centerPosition, false, true, config.rangeX, config.rangeX, config.rangeY, config.rangeY)
       if #spectators ~= 0 then
          return true
       end

       return false
    end


    local function clearRoomDrume(centerPosition, rangeX, rangeY, resetGlobalStorage)
       local spectators,
       spectator = Game.getSpectators(centerPosition, false, false, rangeX, rangeX, rangeY, rangeY)
       for i = 1, #spectators do
          spectator = spectators[i]
          if spectator:isMonster() then
             spectator:remove()
          end
          if spectator:isPlayer() then
             spectator:teleportTo(config.exitPosition)
             spectator:sendTextMessage(MESSAGE_EVENT_ADVANCE, "Your time is over.")
          end
       end
       if Game.getStorageValue(resetGlobalStorage) == 1 then
          Game.setStorageValue(resetGlobalStorage, -1)
       end
    end

    local drumeAction = Action()
    function drumeAction.onUse(player, item, fromPosition, target, toPosition, isHotkey)
       if player:getPosition() ~= config.firstPlayerPosition then return false end
       if RoomIsOccupied(config.centerPosition, config.rangeX, config.rangeY) then
          player:sendCancelMessage("There's someone already in the skirmish.")
          player:getPosition():sendMagicEffect(CONST_ME_POFF)
          return true
       end
       local tempPos, tempTile, tempCreature
       local players = {}
       for x = config.firstPlayerPosition.x, config.firstPlayerPosition.x + 4 do
          tempPos = Position(x, config.firstPlayerPosition.y, config.firstPlayerPosition.z)
          tempTile = Tile(tempPos)
          if tempTile then
             tempCreature = tempTile:getTopCreature()
             if tempCreature and tempCreature:isPlayer() then
                table.insert(players, tempCreature)
             end
          end
       end
       if #players == 0 then return false end
       for _, pi in pairs(players) do
          if pi:getStorageValue(Storage.TheOrderOfTheLion.Drume.Timer) > os.time() then
             player:sendCancelMessage("Someone of your team has already fought in the skirmish in the last 20h.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
       end
       local spectators = Game.getSpectators(config.centerPosition, false, false, config.rangeX, config.rangeX, config.rangeY, config.rangeY)
       for _, creature in pairs(spectators) do
          if creature:isMonster() then
             creature:remove()
          end
       end
       local totalLion = 0
       local totalUsurper = 0
       local tempMonster
       for _, pos in pairs(config.lionPosition) do
          tempMonster = Game.createMonster("Lion Commander", pos)
          if not tempMonster then
             player:sendCancelMessage("There was an error, contact an admin.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
          totalLion = totalLion + 1
       end
       for _, pos in pairs(config.usurperPosition) do
          tempMonster = Game.createMonster("Usurper Commander", pos)
          if not tempMonster then
             player:sendCancelMessage("There was an error, contact an admin.")
             player:getPosition():sendMagicEffect(CONST_ME_POFF)
             return true
          end
          totalUsurper = totalUsurper + 1
       end
       for _, pi in pairs(players) do
          pi:setStorageValue(Storage.TheOrderOfTheLion.Drume.Timer, os.time() + (20 * 60 * 60))
          pi:teleportTo(config.newPosition)
          addEvent(clearRoomDrume, config.timeToKill * 60 * 1000, config.centerPosition, config.rangeX, config.rangeY, resetGlobalStorage)
          pi:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You have " ..config.timeToKill.." minutes to defeat Drume.")
          
       end
       config.newPosition:sendMagicEffect(CONST_ME_TELEPORT)
       toPosition:sendMagicEffect(CONST_ME_POFF)
       Game.setStorageValue(Storage.TheOrderOfTheLion.Drume.TotalLionCommanders, totalLion)
       Game.setStorageValue(Storage.TheOrderOfTheLion.Drume.TotalUsurperCommanders, totalUsurper)
       return true
    end
    drumeAction:aid(59600)
    drumeAction:register()

    3 participantes

    5[Pedido] Script para Drume Empty Re: [Pedido] Script para Drume Miér Sep 08, 2021 9:36 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    gracias por el aporte

    Tema solucionado



    [Pedido] Script para Drume YNU5B25
    3 participantes
    http://www.tibiaface.com

    Contenido patrocinado


    3 participantes

    Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje (Página 1 de 1.)

    Permisos de este foro:
    No puedes responder a temas en este foro.

     

    BienvenidosTibiaFace es una comunidad de Open Tibia. Para participar debes estar registrado (click para Regístrate).