• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [Ayuda] Script que teletransporta 4 players

    Compartir:

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

    Invitado

    Anonymous
    Invitado
    Holas buenas
    ¿alguien tiene un script que pueda teletransportar a 4 players a una zona al usar una palanca? asi como la Annihilator pero sin crear demons.

    Ejemplo: Estan los cuatro players posicionados, y cuando tiro de la lever teletransporta a los 4 players a un lugar.

    pls espero que hayan entendido



    Surprised Surprised

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    aqui tienes


    Código:
    local config = {
       requiredLevel = 100,
       daily = false,
       centerDemonRoomPosition = Position(33221, 31659, 13),
       playerPositions = {
          Position(33225, 31671, 13),
          Position(33224, 31671, 13),
          Position(33223, 31671, 13),
          Position(33222, 31671, 13)
       },
       newPositions = {
          Position(33222, 31659, 13),
          Position(33221, 31659, 13),
          Position(33220, 31659, 13),
          Position(33219, 31659, 13)
       },
       demonPositions = {
          Position(33219, 31657, 13),
          Position(33221, 31657, 13),
          Position(33223, 31659, 13),
          Position(33224, 31659, 13),
          Position(33220, 31661, 13),
          Position(33222, 31661, 13)
       }
    }


    function onUse(player, item, fromPosition, target, toPosition, isHotkey)
       if item.itemid == 1946 then
          local storePlayers, playerTile = {}

          for i = 1, #config.playerPositions do
             playerTile = Tile(config.playerPositions[i]):getTopCreature()
             if not playerTile or not playerTile:isPlayer() then
                player:sendTextMessage(MESSAGE_STATUS_SMALL, "You need 4 players.")
                return true
             end

             if playerTile:getLevel() < config.requiredLevel then
                player:sendTextMessage(MESSAGE_STATUS_SMALL, "All the players need to be level ".. config.requiredLevel .." or higher.")
                return true
             end

             storePlayers[#storePlayers + 1] = playerTile
          end

          local specs, spec = Game.getSpectators(config.centerDemonRoomPosition, false, false, 3, 3, 2, 2)
          for i = 1, #specs do
             spec = specs[i]
             if spec:isPlayer() then
                player:sendTextMessage(MESSAGE_STATUS_SMALL, "A team is already inside the quest room.")
                return true
             end

             spec:remove()
          end

       

          local players
          for i = 1, #storePlayers do
             players = storePlayers[i]
             config.playerPositions[i]:sendMagicEffect(CONST_ME_POFF)
             players:teleportTo(config.newPositions[i])
             config.newPositions[i]:sendMagicEffect(CONST_ME_ENERGYAREA)
             players:setDirection(DIRECTION_EAST)
          end
       elseif item.itemid == 1945 then
          if config.daily then
             player:sendTextMessage(MESSAGE_STATUS_SMALL, Game.getReturnMessage(RETURNVALUE_NOTPOSSIBLE))
             return true
          end
       end

       item:transform(item.itemid == 1946 and 1945 or 1946)
       return true
    end



    [Ayuda] Script que teletransporta 4 players YNU5B25
    http://www.tibiaface.com

    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).