• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [CreatureEvents] Outfit al crear nuevo char

    Compartir:

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

    1[CreatureEvents] Outfit al crear nuevo char Empty [CreatureEvents] Outfit al crear nuevo char Miér Mar 24, 2021 8:11 pm

    SoyFabi

    SoyFabi
    Miembro
    Miembro
    Descripcion escribió:Hola buenas, tengo un scripts que lo que hace que al crear un nuevo char te da un outfit especifico, pero el problema que tengo es que a logear se me coloca el outfit de nuevo.

    El caso es que intente colocarle un storage que hace que al que al logear no se pueda colocar el outfit 762 en este caso el sorcerer.

    Pero intente colocarle storage y aun asi, cuando logeo me sigue dando el outfit.

    Código:
    local config = {
    [1] = 762, -- SORCERER/ 762 OUTFIT
    [2] = 776, -- DRUID/ 776 OUTFIT
    [3] = 788, -- PALADIN/ 788 OUTFIT
    [4] = 796, -- KNIGHT/ 796 OUTFIT

    }


    function onLogin(cid)
    if (not config[getPlayerVocation(cid)]) then
    return TRUE
    end

    if getPlayerAccess(cid) >= 3 then
    return TRUE
    end

    doCreatureChangeOutfit(cid, {lookType = config[getPlayerVocation(cid)]})
    return TRUE
    end
    Captura del Error escribió:Imagen del error: [CreatureEvents] Outfit al crear nuevo char Empty
    La config. radica en: CreatureScript

    2 participantes

    Touch Me

    Touch Me
    Miembro
    Miembro
    Código:
    local config = {
    [1] = 762, -- SORCERER/ 762 OUTFIT
    [2] = 776, -- DRUID/ 776 OUTFIT
    [3] = 788, -- PALADIN/ 788 OUTFIT
    [4] = 796, -- KNIGHT/ 796 OUTFIT

    }


    function onLogin(cid)
    if (not config[getPlayerVocation(cid)]) then
    return TRUE
    end

    if getPlayerAccess(cid) >= 3 then
    return TRUE
    end

    if getPlayerStorageValue(cid, 63377) <= 0 then
    doCreatureChangeOutfit(cid, {lookType = config[getPlayerVocation(cid)]})
    setPlayerStorageValue(cid, 63377, 1)
    end
    return TRUE
    end

    así debería funcionar

    2 participantes
    http://google.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).