• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [Problema] ¿Cómo pongo los first items y la ciudad de inicio en ot 10.53?

    Compartir:

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

    Invitado

    Anonymous
    Invitado
    La verdad no se como meterle los first items y me saca de quicio :S vi otros tutoriales y decían que me metiera a una carpeta, pero en el ot no existe tal carpeta, y así es como no puedo ponerle first items y lo de la Ciudad de inicio no se ocupa tanto pero igual se agradece xD, que quiero que empiecen en Thais y no en Venore...
    SI SABEN COMO EMPEZAR EN ROOKGARD NIVEL 1 POR FAVOR, PERO POR FAVOR DÍGANMELO Sad

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    jajjajajajaja ok empesemos por por la de la ciudad de inicio

    usted se va al rme abre el mapa del global y apreta "control + T" en su teclado ahi le saldran todas la ciudades mas su id.

    usted copia el id de la ROOKGARD o lo anota en un papel.

    luego se va usted a su centro de administracion mysql y busca su base de datos y editas los samples busca la tabla "town_id " y ahi colocas la id de la town de ROOKGARD.


    ahora de los first item

    usted se va a data\creaturescripts/creaturescripts.xml

    y añade la tag

    Código:
    event type="login" name="FirstItems" script="firstitems.lua"/>

    despues se va a data\creaturescripts\scripts\

    copia cualquier scripts y renombra por firstitems.lua y pega esto dentro

    Código:
    -- With Rookgaard

    --[[
    local firstItems = {2050, 2382}

    function onLogin(cid)
       local player = Player(cid)
       if player:getLastLoginSaved() <= 0 then
          for i = 1, #firstItems do
             player:addItem(firstItems[i], 1)
          end
          player:addItem(player:getSex() == 0 and 2651 or 2650, 1)
          player:addItem(1987, 1)
          player:addItem(2674, 1)
       end
       return true
    end
    ]]--

    -- Without Rookgaard

    local config = {
        [1] = {
            --equipment spellbook, wand of vortex, magician's robe, mage hat, studded legs, leather boots, scarf
            {{2175, 1}, {2190, 1}, {8819, 1}, {8820, 1}, {2468, 1}, {2643, 1}, {2661, 1}},
            --container rope, shovel, mana potion
            {{2120, 1}, {2554, 1}, {7620, 1}}
        },
        [2] = {
            --equipment spellbook, snakebite rod, magician's robe, mage hat, studded legs, leather boots scarf
            {{2175, 1}, {2182, 1}, {8819, 1}, {8820, 1}, {2468, 1}, {2643, 1}, {2661, 1}},
            --container rope, shovel, mana potion
            {{2120, 1}, {2554, 1}, {7620, 1}}
        },
        [3] = {
            --equipment dwrven shield, 5 spear, ranger's cloak, ranger legs scarf, legion helmet
            {{2525, 1}, {2389, 5}, {2660, 1}, {8923, 1}, {2643, 1}, {2661, 1}, {2480, 1}},
            --container rope, shovel, health potion, bow, 50 arrow
            {{2120, 1}, {2554, 1}, {7618, 1}, {2456, 1}, {2544, 50}}
        },
        [4] = {
            --equipment dwarven shield, steel axe, brass armor, brass helmet, brass legs scarf
            {{2525, 1}, {8601, 1}, {2465, 1}, {2460, 1}, {2478, 1}, {2643, 1}, {2661, 1}},
            --container jagged sword, daramian mace, rope, shovel, health potion
            {{8602, 1}, {2439, 1}, {2120, 1}, {2554, 1}, {7618, 1}}
        }
    }

    function onLogin(cid)
        local player = Player(cid)
        local targetVocation = config[player:getVocation():getId()]
        if not targetVocation then
            return true
        end
     
        if player:getLastLoginSaved() == 0 then
            for i = 1, #targetVocation[1] do
                player:addItem(targetVocation[1][i][1], targetVocation[1][i][2])
            end
       
            local backpack = player:addItem(1988)
            for i = 1, #targetVocation[2] do
                backpack:addItem(targetVocation[2][i][1], targetVocation[2][i][2])
            end
        end
        return true
    end


    Listo espero haberte ayudado si te sirvió coloca resuelto








    [Problema] ¿Cómo pongo los first items y la ciudad de inicio en ot 10.53? 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).