• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [Ayuda] Necesito ayuda con el account manager

    Compartir:

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

    yuruichu

    yuruichu
    Nuevo Miembro
    Nuevo Miembro
    hola

    Tengo el siguiente problema bueno en realidad es problema
    mi pregunta es como puedo hacer cambios en el account manager como los items que tiene al inicio una vez creado el personaje ejemplo te hace el personaje y aparece con una axe y oro pero yo quiero sacarle el oro ho agregar otro item no encuentro donde agregar items ni nada de eso y la ultima vez que hice un server fue desde 0 pero hace 10 años en un 7.6 ... y ahora lo estoy intentando en un 8.6


    alguien ´por favor me puede decir como agregar ho quitarle items al account manager ??

    lo agradecería muchooo

    2 participantes
    http://186.64.120.107

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    que version de servidor esta usando y que plataforma



    [Ayuda] Necesito ayuda con el account manager YNU5B25
    2 participantes
    http://www.tibiaface.com

    yuruichu

    yuruichu
    Nuevo Miembro
    Nuevo Miembro
    sql lite

    2 participantes
    http://186.64.120.107

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    si su ot no le entrega items al iniciar el servidor utilize este mod

    se va a la carpeta mod --- copia cualquier archivo y lo renombra por le nombre que usted quiera y remplaza el contenido por esto

    Código:
    <?xml version="1.0" encoding="UTF-8"?>
    <mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes">
        <config name="firstitems_config"><![CDATA[
            config = {
                storage = 30001,
                items = {2050, 2382}
            }
        ]]></config>
        <event type="login" name="FirstItems" event="script"> <![CDATA[
            domodlib('firstitems_config')
     
            function onLogin(cid)
        local config = {
            voc_items = {
                { -- SORC
                    {2190}, -- wand of vortex
                    {2525}, -- dwarven shield
                    {2457}, -- steel helmet
                    {2463} -- plate robe
                },
                { -- DRUID
                    {2182}, -- snakebite rod
                    {2525}, -- dwarven shield
                    {2457}, -- steel helmet
                    {2463} -- plate robe
                },
                { -- PALADIN
                    {2389}, -- throwing knife
                    {2525}, -- dwarven shield
                    {2457}, -- steel helmet
                    {2463} -- plate armor
                },
                { -- KNIGHT
                    {2383}, -- spike sword
                    {2525}, -- dwarven shield
                    {2457}, -- steel helmet
                    {2463} -- plate armor
                }
            },
            all_items = {
                {2647}, -- plate legs
                {2643} -- leather boots
            },
            extra_items = {
                {2789, 15},
                {2160, 1},
                {2120},
                {5710},
                {8704}, -- small hp
                {7618}, -- hp
                {7588}, -- stron hp
                {7591}, -- great hp
                {8473}, -- ultimate hp
                {7620}, -- mp
                {7589}, -- smp
                {7590}, -- gmp
                {8472} -- sp
            },
            knight_weapons = {
                {2394}, -- morning star
                {2428} -- orcish axe
            }
        }
        if getPlayerGroupId(cid) < 3 then
            if getPlayerStorageValue(cid, storage) == -1 then
                local common = config.voc_items[getPlayerVocation(cid)]
                if common ~= nil then
                    for _, v in ipairs(common) do
                        doPlayerAddItem(cid, v[1], v[2] or 1)
                    end
                end
     
                local all = config.all_items
                if all ~= nil then
                    for _, v in ipairs(all) do
                        doPlayerAddItem(cid, v[1], v[2] or 1)
                    end
                end
     
                local extra = config.extra_items
                local bp = doPlayerAddItem(cid, 1988, 1)
                if extra ~= nil then
                    for _, v in ipairs(extra) do
                        doAddContainerItem(bp, v[1], v[2] or 1)
                    end
                end
     
                local weapons = config.knight_weapons
                if weapons ~= nil then
                    for _, w in ipairs(weapons) do
                        if isKnight(cid) then
                            doAddContainerItem(bp, w[1], w[2] or 1)
                        end
                    end
                end
     
                setPlayerStorageValue(cid, storage, 1)
            end
        end
        return true
    end
        ]]></event>
    </mod>



    [Ayuda] Necesito ayuda con el account manager YNU5B25
    2 participantes
    http://www.tibiaface.com

    yuruichu

    yuruichu
    Nuevo Miembro
    Nuevo Miembro
    muchas Gracias Very Happy!!!!!

    2 participantes
    http://186.64.120.107

    Contenido patrocinado


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