• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [CreatureEvents] auto promotion

    Compartir:

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

    1[CreatureEvents] auto promotion Empty [CreatureEvents] auto promotion Miér Mayo 07, 2014 3:19 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Hola ususarios de tibiaface

    es un script que al llegar a x lvl se le da la promotion automaticamente si cobrarle ni un crystal.


    intalacion:

    nos vamos a:


    [CreatureEvents] auto promotion Note10 data/creaturescripts/scripts


    copian cualquier archivo y renombran por promotion.lua y pegan esto dentro

    Código:
        local config = {
            promoLevel = 1,    -- promotion level : )
            needLevel = 20, -- level to get promotion
            needPremium = "yes" -- need premium (YES/NO)? :D
        }

        function onAdvance(cid, skill, oldlevel, newlevel)
            if (skill == 0) and (newlevel >= config.needLevel and getPlayerPromotionLevel(cid)<config.promoLevel) then
                if(string.lower(config.needPremium) == "yes" and isPremium(cid) == TRUE) or (string.lower(config.needPremium) == "no") then
                    setPlayerPromotionLevel(cid, config.promoLevel)
                    doPlayerSendTextMessage(cid, 22, "You have been promoted to " .. getVocationInfo(getPlayerVocation(cid)).name .. ".")
                end
            end
            return TRUE
        end 


    luego añaden esta tag en:


    [CreatureEvents] auto promotion Note10 /data/creaturescripts/creaturescripts.xml


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


    zona editable:

    Código:
            promoLevel = 1,    -- promotion level : )
            needLevel = 20, -- level to get promotion
            needPremium = "yes" -- need premium (YES/NO)? :D


    creaditos: Azi



    [CreatureEvents] auto promotion 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).