• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    Scripts ( Max skill lvl y Aura para personajes)

    Compartir:

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

    Invitado

    Anonymous
    Invitado
    Hola muy buenas, Estoy trabajando en un servidor y necesito unos scripts que después de cierto skill lvl, el personaje no siga subiendo, tambien he puesto un nivel maximo, me gustaria un script que hiciera que los pj level maximo Tuvieran un aura o algo que los destacara.

    Busque unos por internet, no me tiran error, pero tampoco funcionan!

    Muuchas gracias de antemano y saludos <3

    Invitado

    Anonymous
    Invitado
    Tezzeret escribió:Hola muy buenas, Estoy trabajando en un servidor y necesito unos scripts que después de cierto skill lvl, el personaje no siga subiendo, tambien he puesto un nivel maximo, me gustaria un script que hiciera que los pj level maximo Tuvieran un aura o algo que los destacara.

    Busque unos por internet, no me tiran error, pero tampoco funcionan!

    Muuchas gracias de antemano y saludos <3

    Que version es tu ot?

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    quieres que no tenga mas rate a cierto level y skill y que tenga un efecto el player cierto level que version es tu servidor



    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    Si exacto, el skill level especialmente ya que la experiencia es configurable, es un kiwi 10.10

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Tezzeret escribió:Si exacto, el skill level especialmente ya que la experiencia es configurable, es un kiwi 10.10

    tfs 1.0 o 1.1 0 1.2 o tfs 0.3.7



    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    Mmm no se la verdad, Solo veo kiwi 10.10

    [Tienes que estar registrado y conectado para ver este vínculo]

    Esos son los archivos que tengo en mi carpeta, alguna parte donde pueda verlo??

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Código:
    function onThink(interval, lastExecution)
            for _, name in ipairs(getOnlinePlayers()) do
            local cid = getPlayerByName(name)
                  if not isPlayerGhost(cid) and getPlayerLevel(cid) >= 100 then
                      doSendMagicEffect(getPlayerPosition(cid), 27)
                  end
            end
            return true
    end

    Código:
    <globalevent name="levelefect" interval="3" script="levelefect.lua"/>


    esto va en globalevents me avisas cualquier problema




    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    Me anduvo de maravilla muchas gracias, Sabes como podria dejar las skills estancadas?, a que me refiero por ejemplo que un knight solo pueda subir sword hasta 50 o que el magic level maximo sea 40, la idea es ir aumentándolos progresivamente

    Denuevo muchas gracias por la aura!

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    este es el scripts crear uno diferente para cada habilidad


    Código:
    local maxlevel = 10000
    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__LEVEL then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end


    Código:
    <event type="advance" name="MaxLvl" event="script" value="MaxLvl.lua"/>

    en login.lua


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



    estas son habilidades

    SKILL_DISTANCE, SKILL_CLUB, SKILL_AXE, SKILL_SWORD, SKILL_MAGIC

    solo remplzamos en esta linea

    if skill == SKILL__LEVEL then

    ejemplo

    if skill == SKILL_DISTANCE then


    y luego modificamos el maximo que podra subir

    local maxlevel = 10000 >>>>>>maximo



    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    No me funciono, bueno dentro de Data/creaturescripts /script cree un archivo lua llamado MaxLvl En el cual defini la variable Max level dejandola en 50


    Código:
    local maxlevel = 50
    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__FIST then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end

    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__SWORD then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end
    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__AXE then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end

    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__CLUB then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end

    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__DISTANCE then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end
    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL__MAGIC then
            if newLevel > maxlevel then
            doPlayerAddExp(cid, getExperienceForLevel(maxlevel)-getPlayerExperience(cid))
                return FALSE
            end
        end
    return TRUE
    end

    Quiza que habre hecho mal, la verdad que recién estoy aprendiendo sobre como trabajar con lua y tengo nociones muy muy básicas de programacion ajaja, gracias por toda la ayuda brindada!

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    nononononono tienes que hacer scripts separados para cada uno



    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Código:
    function onAdvance(cid, skill, oldLevel, newLevel)
        if skill == SKILL_SWORD then
            if getPlayerSkillLevel(cid, SKILL_SWORD) >= 171 then
                    doPlayerSetRate(cid, SKILL_SWORD, 0.0)
            end
       
        elseif skill == SKILL_SWORD then
            if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
                    doPlayerSetRate(cid, SKILL_FIST, 0.0)
            end   
        return false
       
        elseif skill == SKILL_AXE then
            if getPlayerSkillLevel(cid, SKILL_AXE) >= 171 then
                    doPlayerSetRate(cid, SKILL_AXE, 0.0)
            end   
        return false
       
        elseif skill == SKILL_CLUB then
            if getPlayerSkillLevel(cid, SKILL_CLUB) >= 171 then
                    doPlayerSetRate(cid, SKILL_CLUB, 0.0)
            end   
        return false
       
        elseif skill == SKILL_DISTANCE then
            if getPlayerSkillLevel(cid, SKILL_DISTANCE) >= 171 then
                    doPlayerSetRate(cid, SKILL_DISTANCE, 0.0)
            end   
        return false
       
        elseif skill == SKILL_SHIELD then
            if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
                    doPlayerSetRate(cid, SKILL_FIST, 0.0)
            end   
        return false
       
        elseif skill == SKILL_FISH then
            if getPlayerSkillLevel(cid, SKILL_FISH) >= 171 then
                    doPlayerSetRate(cid, SKILL_FISH, 0.0)
            end   
        return false
       
    end
    end



    el skill esta que suba hasta 171 ya lo modificas a tu gusto

    un scripts para todo solo falta añadir el de magic



    Scripts ( Max skill lvl y Aura para personajes) YNU5B25
    http://www.tibiaface.com

    Invitado

    Anonymous
    Invitado
    Implemente Un sistema de exp por stage a las skill, cuando llega al tope no se gana experiencia.
    tema solucionado, gracias a todos por comentar

    Contenido patrocinado


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