• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [CreatureEvents] Sistema de Transformar Atutomatico por Level

    Compartir:

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

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Al llegar a ese nivel (determinado por el administrador), el jugador recibe una nueva vocación y un traje nuevo.

    Es el mismo que el / a transformar las narutibias sólo éste sólo al Alcanza el nivel lo transforma.



    bueno vamos a con la Instuciones :

    Nos dirigimos a:

    [CreatureEvents] Sistema de Transformar Atutomatico por Level Note10data/creaturescripts/scripts

    copiamos cualquier archivo y renombramos por promovido.lua y pegamos esto dentro

    Código:
    local config = {
    --[vocation id] = { nova voc, looktype, efeito}
    [1] = { 1, 31, 111},
    [ID da Vocacao Inicial] = { ID da Nova Vocacao, LookType da nova vocacao, Efeito},
    }

    local lvlGain = Level em que ira alterar a vocacao.

    function onAdvance(cid, skill, oldLevel, newLevel)

    if (getPlayerLevel(cid) == lvlGain and getPlayerStorageValue(cid, 2012) ~= 1) then
    local voc = config[getPlayerVocation(cid)]
    if voc then
    doPlayerSetVocation(cid, voc[1])
    doSendMagicEffect(getCreaturePosition(cid), voc[3])
    local outfit = {lookType = voc[2]}
    doCreatureChangeOutfit(cid, outfit)
    doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Parabéns, você agora é um Shippuden")
    setPlayerStorageValue(cid, 2012, 1)
    end
    return true
    end
    end

    ahora abrimos el archivo que esta en esta direccion:

    [CreatureEvents] Sistema de Transformar Atutomatico por Level Note10data/creaturescripts/creaturescripts.xml
    y añadimos esta tag:

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

    creditos: Me and Flaah



    [CreatureEvents] Sistema de Transformar Atutomatico por Level 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).