• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    Addones para todos

    Compartir:

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

    1Addones para todos Empty Addones para todos Lun Ago 06, 2018 6:15 pm

    oscarbks

    oscarbks
    Nuevo Miembro
    Nuevo Miembro
    Mi Problema:
    nesesito ayuda para que todos los players tengan el primer addon de todos los outfist
    y poder seleccionar cuales outfist puedan tener por determinado ya que otros los tienes que conseguir


    Imagen de mi error:
    Addones para todos Http:

    Esta en:
    Otro Problema

    2 participantes

    2Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 5:17 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    hay problema aqui no tengo la version de tu ot para poderte responder



    Addones para todos YNU5B25
    2 participantes
    http://www.tibiaface.com

    3Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 5:28 pm

    oscarbks

    oscarbks
    Nuevo Miembro
    Nuevo Miembro
    es 8.6

    2 participantes

    4Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 5:35 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    esto agrega en tu login.lua

    Código:

    if getPlayerStorageValue(cid,5031) == 1 then  ----> storage
    if getPlayerSex(cid) == 0 then
    doPlayerAddOutfit(cid, 157, 3) ----> id addon
    doPlayerAddOutfit(cid, 153, 3)
    setPlayerStorageValue(cid,5031,1)
    doPlayerSendTextMessage(cid,22,"full addon.")
    else
    doPlayerAddOutfit(cid, 157, 3)
    doPlayerAddOutfit(cid, 153, 3)
    setPlayerStorageValue(cid,5031,1)
    doPlayerSendTextMessage(cid,22,"full addon.")
    end
    else

    end



    Addones para todos YNU5B25
    2 participantes
    http://www.tibiaface.com

    5Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 5:39 pm

    oscarbks

    oscarbks
    Nuevo Miembro
    Nuevo Miembro
    muchas gracias ahora lo pruebo
    con eso es solo el primer addon verdad?



    asi quedo el script dime si esta bien


    local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
    }

    function onLogin(cid)
    local loss = getConfigValue('deathLostPercent')
    if(loss ~= nil and getPlayerStorageValue(cid, "bless") ~= 5) then
    doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
    end

    if(getPlayerStorageValue(cid, "death_bless") == 1) then
    local t = {PLAYERLOSS_EXPERIENCE, PLAYERLOSS_SKILLS, PLAYERLOSS_ITEMS, PLAYERLOSS_CONTAINERS}
    for i = 1, #t do
    doPlayerSetLossPercent(cid, t[i], 100)
    end
    setPlayerStorageValue(cid, "death_bless", 0)
    if getPlayerStorageValue(cid,5031) == 1 then ----> storage
    if getPlayerSex(cid) == 0 then
    doPlayerAddOutfit(cid, 157, 3) ----> id addon
    doPlayerAddOutfit(cid, 153, 3)
    setPlayerStorageValue(cid,5031,1)
    doPlayerSendTextMessage(cid,22,"full addon.")
    else
    doPlayerAddOutfit(cid, 157, 3)
    doPlayerAddOutfit(cid, 153, 3)
    setPlayerStorageValue(cid,5031,1)
    doPlayerSendTextMessage(cid,22,"full addon.")
    end
    else

    end
    end

    local accountManager = getPlayerAccountManager(cid)
    if(accountManager == MANAGER_NONE) then
    local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
    if(lastLogin > 0) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
    else
    str = str .. " Please choose your outfit."
    doPlayerSendOutfitWindow(cid)
    end

    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif(accountManager == MANAGER_NAMELOCK) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
    elseif(accountManager == MANAGER_ACCOUNT) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
    else
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
    end

    if(not isPlayerGhost(cid)) then
    doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end

    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "GuildMotd")

    registerCreatureEvent(cid, "Idle")
    if(config.useFragHandler) then
    registerCreatureEvent(cid, "SkullCheck")

    end
    registerCreatureEvent(cid, "gv3")
    registerCreatureEvent(cid, "ReportBug")
    registerCreatureEvent(cid, "AdvanceSave")
    return true
    end

    2 participantes

    6Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 6:27 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    agregalo antes de esto que esta al final


    Código:
    return true
    end



    Addones para todos YNU5B25
    2 participantes
    http://www.tibiaface.com

    7Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 7:05 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Código:
    function onLogin(cid)
    if getPlayerStorageValue(cid,9867) < 0 then
      if getPlayerSex(cid) > 0 then
          doPlayerAddOutfit(cid, 157, 3)
          doPlayerAddOutfit(cid, 153, 3)
          setPlayerStorageValue(cid,9867,1)
      else
          doPlayerAddOutfit(cid, 157, 3)
          doPlayerAddOutfit(cid, 153, 3)
          setPlayerStorageValue(cid,9867,1)
      end
    end
    return true
    end

    Código:

    <event type="login" name="addon" event="script" value="addon.lua"/>


    Código:
    registerCreatureEvent(cid, "addon")


    todo esto va en creaturescripts



    Addones para todos YNU5B25
    2 participantes
    http://www.tibiaface.com

    8Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 7:26 pm

    oscarbks

    oscarbks
    Nuevo Miembro
    Nuevo Miembro
    registerCreatureEvent(cid, "addon")

    esto en donde lo pongo

    2 participantes

    9Addones para todos Empty Re: Addones para todos Miér Ago 08, 2018 7:39 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    oscarbks escribió:registerCreatureEvent(cid, "addon")

    esto en donde lo pongo

    en login.lua



    Addones para todos YNU5B25
    2 participantes
    http://www.tibiaface.com

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