• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    ayuda script transformar crystal coins

    Compartir:

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

    1Resuelto ayuda script transformar crystal coins Miér Jul 06, 2016 1:05 pm

    Invitado

    Anonymous
    Invitado
    hola ayuda con script quiero que 100 cc se vuelvan un especial coin es la moneda especial de mi ot

    2Resuelto Re: ayuda script transformar crystal coins Miér Jul 06, 2016 4:44 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador


    Nos Dirigimos A data\actions\scripts\other y Buscamos El Archivo Llamado changegold.lua
    Remplazamos Lo De Dentro Por Esto:

    Código:
    --Configurations
    local ITEM_NUGGET = 2157 -- Nugget ID
    --End of Configs

    function onUse(cid, item, fromPosition, itemEx, toPosition)
    if item.itemid == ITEM_GOLD_COIN and item.type == ITEMCOUNT_MAX then --Gold Coin to Platinum Coin
    doChangeTypeItem(item.uid, item.type - item.type)
    doPlayerAddItem(cid, ITEM_PLATINUM_COIN, 1)
    doSendAnimatedText(fromPosition, "Platinum", TEXTCOLOR_LIGHTBLUE)
    elseif item.itemid == ITEM_PLATINUM_COIN and item.type == ITEMCOUNT_MAX then --Platinum Coin to Crystal Coin
    doChangeTypeItem(item.uid, item.type - item.type)
    doPlayerAddItem(cid, ITEM_CRYSTAL_COIN, 1)
    doSendAnimatedText(fromPosition, "Crystal!", TEXTCOLOR_TEAL)
    elseif item.itemid == ITEM_PLATINUM_COIN and item.type < ITEMCOUNT_MAX then --Platinum Coin to Gold Coin
    doChangeTypeItem(item.uid, item.type - 1)
    doPlayerAddItem(cid, ITEM_GOLD_COIN, ITEMCOUNT_MAX)
    doSendAnimatedText(fromPosition, "Gold", TEXTCOLOR_YELLOW)
    elseif item.itemid == ITEM_CRYSTAL_COIN and item.type < ITEMCOUNT_MAX then --Crystal Coin to Platinum Coin
    doChangeTypeItem(item.uid, item.type - 1)
    doPlayerAddItem(cid, ITEM_PLATINUM_COIN, ITEMCOUNT_MAX)
    doSendAnimatedText(fromPosition, "Platinum", TEXTCOLOR_LIGHTBLUE)
    elseif item.itemid == ITEM_CRYSTAL_COIN and item.type == ITEMCOUNT_MAX then --Crystal Coin to Nugget
    doChangeTypeItem(item.uid, item.type - item.type)
    doPlayerAddItem(cid, ITEM_NUGGET,1)
    doSendAnimatedText(fromPosition, "Nugget", TEXTCOLOR_YELLOW)
    else
    return FALSE
    end
    return TRUE
    end


    Despues De Esto Nos Vamos A data\actions\scripts\other
    y Creamos Un Nuevo Archivo Llamado
    changenugget.lua

    Luego Pegamos Esto Dentro:

    Código:
    --Configurations
    local ITEM_NUGGET = 2157 -- Nugget ID
    --End of Configs

    function onUse(cid, item, fromPosition, itemEx, toPosition)
    if item.itemid == ITEM_NUGGET then --Nugget to Crystal Coin
    doChangeTypeItem(item.uid, item.type - 1)
    doPlayerAddItem(cid, ITEM_CRYSTAL_COIN, ITEMCOUNT_MAX)
    doSendAnimatedText(fromPosition, "Crystal", TEXTCOLOR_TEAL)
    else
    return FALSE
    end
    return TRUE
    end


    Aora a Actions.xlm buscan Dn dise Change Gold
    Abajo De Eso Pegamos Esto


    Código:
    <action itemid="2157" script="other/changenugget.lua"/>


    Eso es,todo facil =)



    ayuda script transformar crystal coins YNU5B25
    http://www.tibiaface.com

    3Resuelto Re: ayuda script transformar crystal coins Miér Jul 06, 2016 5:20 pm

    Invitado

    Anonymous
    Invitado
    No lo estaba buscando..pero estaba Aburrido y decidi probarlo..!!!! y FUNCIONAAAAAAAAAAAAA :gracias:

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