• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [TFS 1.3] Capturar la bandera

    Compartir:

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

    1[TFS 1.3] Capturar la bandera Empty [TFS 1.3] Capturar la bandera Miér Jun 24, 2020 3:54 pm

    cimmeria

    cimmeria
    Miembro
    Miembro
    Esto fue probado en la última OTX basada en TFS 1.3.

    Vamos a instalar: data/actions/actions.xml

    Código:
    <action fromaid="15150" toaid="15151" script="ctf.lua" />

    data/actions/actions/scripts/ctf.lua

    Código:
    function onUse(player, item, fromPosition, target, toPosition, isHotkey)
    local flag = captureTheFlag.getFlag(item)
    if flag then
    local info = captureTheFlag.players[player:getName()]
    if info.team ~= flag.team then
    flag:remove()
    item:remove()
    flag:setHolder(player)
    info.flag = flag

    for name, _ in pairs(captureTheFlag.players) do
    local player = Player(name)
    player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, info.name .. ' has captured the flag for team ' .. (info.team == 1 and 'A' or 'B') .. '!')
    end
    end
    end
    return true
    end

    data/creaturescripts/creaturescripts.xml

    Código:
    <event type="preparedeath" name="CTFDeath" script="ctf.lua" />
    <event type="healthchange" name="CTFHealthChange" script="ctf.lua" />

    data/creaturescripts/scripts/ctf.lua

    Código:
    function onPrepareDeath(creature, killer)
    if captureTheFlag.getPlayerState(creature) == CTF_STATE_FIGHT then
    captureTheFlag.onDeath(creature)
    return false
    end
    return true
    end

    function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin)
    local infoA = captureTheFlag.players[creature:getName()]
    local infoB = attacker and captureTheFlag.players[attacker:getName()]
    if infoA and infoB and infoA.team == infoB.team and primaryType ~= COMBAT_HEALING then
    return 0, 0, 0, 0
    end
    return primaryDamage, primaryType, secondaryDamage, secondaryType
    end

    data/globalevents/globalevents.xml

    Código:
    <globalevent name="Capture The Flag" time="10:00:00" script="ctf.lua" />

    data/globalevents/scripts/ctf.lua

    Código:
    function onTime()
    captureTheFlag.close()
    captureTheFlag.start()
    addEvent(captureTheFlag.round, 10*60*1000)
    broadcastMessage("Capture the Flag event will start in 10 minutes, entrance in Event Room.", MESSAGE_STATUS_WARNING)
    addEvent(broadcastMessage, 5 * 60 * 1000, "Capture the Flag event will start in 5 minutes, entrance in Event Room.", MESSAGE_STATUS_WARNING)
    addEvent(broadcastMessage, 8 * 60 * 1000, "Capture the Flag event will start in 2 minutes, entrance in Event Room .", MESSAGE_STATUS_WARNING)
    end

    data/lib/libs.lua

    Código:
    dofile('data/lib/ctf.lua')

    data/lib/ctf.lua - LA CONFIGURACION ES TODO AQUI.

    Código:
    local function newOutfitCondition(outfit)

    local condition = Condition(CONDITION_OUTFIT)

    condition:setTicks(120 * 60 * 1000) -- estava: condition:setTicks(-1)

    condition:setOutfit(outfit)

    return condition

    end



    CTF_STATE_NONE = 0

    CTF_STATE_WAIT = 1

    CTF_STATE_FIGHT = 2



    CTF_TEAM_A = 1

    CTF_TEAM_B = 2



    if not captureTheFlag then

    Flag = {

    -- (Modify) effect period (in ms)

    effectPeriod = 3000,



    new = function(self, obj)

    return setmetatable(obj, {__index = self})

    end

    }



    captureTheFlag = {

    -- Whether the event is happening right now

    open = false,



    -- (Modify) How many points to win

    goal = 10,



    -- (Modify) Rewards: {itemid, count}

    rewards = {

    {26337, 1},

    },



    -- [name] = {name = 'playerName', state = CTF_STATE_, team = CTF_TEAM_, flag = Frag|nil}

    players = { },



    -- (Modify) Waiting Room position

    waitingRoom = Position(1536, 896, 14),



    -- Death Room position

    deathRoom = Position(1459, 907, 14),



    -- (Modify) Exit position,

    exit = Position(1000, 1000, 7),



    teams = {

    [CTF_TEAM_A] = {

    -- (Modify) Team A Outfit

    outfit = newOutfitCondition {

    lookType = 619,

    lookHead = 114,

    lookBody = 94,

    lookLegs = 94,

    lookFeet = 114

    },





    -- (Modify) Team A Outfit

    outfitFlag = newOutfitCondition {

    lookType = 619,

    lookHead = 132,

    lookBody = 132,

    lookLegs = 132,

    lookFeet = 132

    },



    -- (Modify) Base position (entrance)

    base = Position(1412, 854, 14),

    -- (Modify) Flag, change position and actionid

    flag = Flag:new {position = Position(1424, 875, 14), id = 8617, actionid = 15150, team = CTF_TEAM_A},

    -- How many players are in this team

    players = 0,

    -- How many points the team has scored so far

    score = 0

    },



    [CTF_TEAM_B] = {

    -- (Modify) Team B Outfit

    outfit = newOutfitCondition {

    lookType = 619,

    lookHead = 114,

    lookBody = 86,

    lookLegs = 86,

    lookFeet = 114

    },



    -- (Modify) Team B Outfit

    outfitFlag = newOutfitCondition {

    lookType = 619,

    lookHead = 126,

    lookBody = 126,

    lookLegs = 126,

    lookFeet = 126

    },



    -- (Modify) Base position (entrance)

    base = Position(1484, 918, 14),

    -- (Modify) Flag, change position and actionid

    flag = Flag:new {position = Position(1470, 913, 14), id = 8622, actionid = 15151, team = CTF_TEAM_B},

    -- How many players are in this team

    players = 0,

    -- How many points the team has scored so far

    score = 0

    },

    }

    }



    function Flag:setHolder(player)

    self.holder = player and player:getName()

    if not self.event then

    self:doEffect()

    end

    end



    function Flag:remove()

    if not self.holder then

    local flag = Tile(self:getPosition()):getItemById(self.id)

    flag:remove()

    end



    if self.event then

    stopEvent(self.event)

    self.event = nil

    end



    self.currentPosition = nil

    self.holder = nil

    end



    function Flag:getPosition()

    return self.currentPosition or self.position

    end



    function Flag:doEffect()

    local position = self:getPosition()

    local holder = Player(self.holder)

    if holder then

    holder:addCondition(captureTheFlag.teams[captureTheFlag.players[holder:getName()].team].outfitFlag)

    position = holder:getPosition()

    end

    position:sendMagicEffect(CONST_ME_TUTORIALARROW)



    self.event = addEvent(self.doEffect, self.effectPeriod, self)

    end



    function Flag:drop(position)

    local flag = Game.createItem(self.id, 1, position)

    flag:setActionId(self.actionid)

    self.currentPosition = position

    self.holder = nil



    if not self.event then

    self:doEffect()

    end

    end



    captureTheFlag.start = function()

    if captureTheFlag.open then

    return false

    end



    captureTheFlag.open = true



    for _, team in ipairs(captureTheFlag.teams) do

    team.score = 0

    team.flag:drop(team.flag.position)

    end

    end



    captureTheFlag.close = function()

    if not captureTheFlag.open then

    return true

    end



    for _, info in pairs(captureTheFlag.players) do

    local player = Player(info.name)

    captureTheFlag.onLeave(player)

    end



    for _, team in ipairs(captureTheFlag.teams) do

    team.flag:remove()

    team.players = 0

    team.score = 0

    end



    captureTheFlag.open = false

    end



    captureTheFlag.round = function(team)

    if not captureTheFlag.open then

    return true

    end



    local winner

    for _, team in ipairs(captureTheFlag.teams) do

    team.flag:remove()

    team.flag:drop(team.flag.position)

    if team.score == captureTheFlag.goal then

    winner = _

    end

    end



    if not winner then

    local status = 'Team A: ' .. captureTheFlag.teams[CTF_TEAM_A].score .. ' x Team B: ' .. captureTheFlag.teams[CTF_TEAM_B].score

    if team then

    status = string.format('Team %s has returned the flag and won the round. %s', team == CTF_TEAM_A and 'A' or 'B', status)

    end

    for _, info in pairs(captureTheFlag.players) do

    local player = Player(info.name)

    player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, status)

    player:teleportTo(captureTheFlag.teams[info.team].base)

    player:addCondition(captureTheFlag.teams[info.team].outfit)

    info.state = CTF_STATE_FIGHT

    end

    else

    local status = 'Team ' .. (winner == CTF_TEAM_A and 'A' or 'B') .. ' has won!'

    for _, info in pairs(captureTheFlag.players) do

    local player = Player(info.name)

    player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, status)

    if info.team == winner then

    for i, reward in ipairs(captureTheFlag.rewards) do

    player:addItem(reward[1], reward[2])

    end

    end

    end



    captureTheFlag.close()

    end

    end



    captureTheFlag.getPlayerState = function(player)

    local info = captureTheFlag.players[player:getName()]

    return info and info.state or CTF_STATE_NONE

    end



    captureTheFlag.setPlayerState = function(player, state)

    local info = captureTheFlag.players[player:getName()]

    if info then

    info.state = state

    end

    end



    captureTheFlag.onJoin = function(player)

    local info = {name = player:getName(), state = CTF_STATE_WAIT, flag = false}

    local playersA, playersB = captureTheFlag.teams[CTF_TEAM_A].players, captureTheFlag.teams[CTF_TEAM_B].players

    if playersA == playersB then

    info.team = math.random(CTF_TEAM_A, CTF_TEAM_B)

    elseif playersA > playersB then

    info.team = CTF_TEAM_B

    else

    info.team = CTF_TEAM_A

    end



    captureTheFlag.players[info.name] = info

    captureTheFlag.teams[info.team].players = captureTheFlag.teams[info.team].players + 1



    player:teleportTo(captureTheFlag.waitingRoom)

    player:addCondition(captureTheFlag.teams[info.team].outfit)

    player:registerEvent('CTFHealthChange')

    player:registerEvent('CTFDeath')

    end



    captureTheFlag.onDeath = function(player)

    local info = captureTheFlag.players[player:getName()]

    if info then



    -- info.state = CTF_STATE_WAIT MUDEI AQUI, PROBLEM?

    info.state = CTF_STATE_FIGHT



    if info.flag then

    info.flag:drop(info.flag.position)

    info.flag = nil

    end

    end



    --player:teleportTo(captureTheFlag.waitingRoom) MUDEI AQUI, PROBLEM?

    player:teleportTo(captureTheFlag.deathRoom)

    player:addCondition(captureTheFlag.teams[info.team].outfit)

    -- testar

    player:sendTextMessage(MESSAGE_INFO_DESCR, "You was killed.")

    --teste

    player:addHealth(player:getMaxHealth())

    player:addMana(player:getMaxMana())



    if player:getIp() == 0 then

    captureTheFlag.onLeave(player)

    end

    end



    captureTheFlag.onLeave = function(player)

    local info = captureTheFlag.players[player:getName()]

    if info then

    captureTheFlag.teams[info.team].players = captureTheFlag.teams[info.team].players - 1

    captureTheFlag.players[info.name] = nil



    if info.flag then

    info.flag:drop(info.flag.position)

    info.flag = nil

    end

    end



    player:teleportTo(captureTheFlag.exit)

    player:removeCondition(CONDITION_OUTFIT)

    player:unregisterEvent('CTFHealthChange')

    player:unregisterEvent('CTFDeath')

    end



    captureTheFlag.getFlag = function(item)

    for _, team in ipairs(captureTheFlag.teams) do

    if team.flag.id == item:getId() and team.flag.actionid == item:getActionId() then

    return team.flag

    end

    end

    return nil

    end

    end

    data/movements/movements.xml

    Código:
    <movevent event="StepIn" fromaid="15153" toaid="15155" script="ctf.lua" />

    data/movements/ctf.lua

    Código:
    local CTF_JOIN = 15153
    local CTF_LEAVE = 15154
    local CTF_DROPFLAG = 15155

    function onStepIn(creature, item, position, fromPosition)
    local actionid = item:getActionId()
    if not captureTheFlag.open then
    if position ~= fromPosition then
    creature:teleportTo(fromPosition)
    end
    creature:sendCancelMessage('This event is currently closed.')
    return true
    end

    if creature:getLevel() < 200 then
    local vaeas = {x = 1000, y = 1000, z = 7} -- 32470, 32473, 6
    creature:teleportTo(vaeas)
    creature:sendTextMessage(MESSAGE_INFO_DESCR, "YOU NEED LEVEL 200+ TO ENTER.")
    return false
    end

    -- CAPTURE START
    if creature:isPlayer() then
    if creature:getItemCount(2165) > 0 then
    local vaeap = {x = 1000, y = 1000, z = 7} -- 32470, 32473, 6
    creature:teleportTo(vaeap)
    creature:sendTextMessage(MESSAGE_INFO_DESCR, "You can't enter with stealth ring.")
    return false
    end
    end
    -- CAPTURE END
    -- AQUI
    if actionid == CTF_JOIN then
    captureTheFlag.onJoin(creature)
    broadcastMessage("Player "..creature:getName().." joined Capture The Flag event!", MESSAGE_STATUS_WARNING)
    elseif actionid == CTF_LEAVE then
    captureTheFlag.onLeave(creature)
    broadcastMessage("Player "..creature:getName().." left the event Capture The Flag!", MESSAGE_STATUS_WARNING)
    elseif actionid == CTF_DROPFLAG then
    local info = captureTheFlag.players[creature:getName()]
    local team = captureTheFlag.teams[info.team]
    if info.flag and position:getDistance(team.base) < position:getDistance(captureTheFlag.teams[info.team == 1 and 2 or 1].base) then
    team.score = team.score + 1
    captureTheFlag.round(info.team)
    info.flag = nil
    end
    end
    return true
    end

    Ahora que ha instalado sus archivos, debe configurar

    su

    mapa primero

    como


    tal: -Arena -Sala de espera -Sala de la muerte *NOTA debe tener un teletransporte fuera del evento en la Arena (en ambos lados) y sala de espera.


    En el mapa, necesita los siguientes ID: ACTIONID - 15155 - es lo que pone en los mosaicos en cada reaparición de los equipos.
    Así es como se sun puntos.
    ACTIONID - 15154 - usa este ACTIONID en tus teletransportes que teletransportan al jugador fuera de la arena.
    ACTIONID - 15153 - usa este actionID en tu teletransporte al evento. Complicaciones conocidas:

    Cuando el evento se está ejecutando, los jugadores todavía pueden entrar en el evento tp.

    Esto sólo sucede cuando el juego no está máximo jugador. Sólo pueden ir a la sala de espera y serán teletransportes, o pueden usar el teletransporte en la sala de espera para volver al templo. Esto NO afecta en absoluto al evento. Funciona perfectamente bien. Cuando el evento no se está ejecutando, los jugadores no pueden entrar.
    Usted debe proporcionar su propio mapa, lo siento!

    Creditos:

    lmiguelm26

    3 participantes
    http://sayayinz.ddns.net

    2[TFS 1.3] Capturar la bandera Empty Re: [TFS 1.3] Capturar la bandera Miér Jun 24, 2020 7:10 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    o genial gran aporte + 1 (y)



    [TFS 1.3] Capturar la bandera YNU5B25
    3 participantes
    http://www.tibiaface.com

    3[TFS 1.3] Capturar la bandera Empty Re: [TFS 1.3] Capturar la bandera Lun Jun 07, 2021 8:43 pm

    3zequi3l

    3zequi3l
    Miembro
    Miembro
    tfs 1.0 funciona?

    3 participantes

    4[TFS 1.3] Capturar la bandera Empty Re: [TFS 1.3] Capturar la bandera Mar Jun 08, 2021 11:13 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    3zequi3l escribió:tfs 1.0 funciona?

    nooo



    [TFS 1.3] Capturar la bandera 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).