Ir para conteúdo

naruto vida loka

Campones
  • Total de itens

    42
  • Registro em

  • Última visita

Histórico de Reputação

  1. Upvote
    naruto vida loka deu reputação a leozinpbb em Help Sources Nto 8.54   
    Amigo te mandei via privado 
    - Soucer nova sem bugs , toda limpa ! ( 0.3.6 ) 8.54
    Se gostou ja sabe .. + REP !
    so que tera que adicionar efeitos , mais isso e o de menos !!
    boa sorte .
     
     
  2. Upvote
    naruto vida loka deu reputação a FlamesAdmin em [Resolvido] Erro Na Distro   
    É no globalevents que fica a tag do shop system...
  3. Upvote
    naruto vida loka deu reputação a Marco Oliveira em Item Time   
    Você precisa do script só pra arma quebrar, ou da arma toda ?
     
    Tente adicionar as tags a seguir na sua arma
    <attribute key="showduration" value="1" /> <attribute key="duration" value="1200" /> <attribute key="decayTo" value="0" />
  4. Upvote
    naruto vida loka deu reputação a Deadpool em item que de double xp   
    <?xml version="1.0" encoding="UTF-8"?>
    <mod name="AdvancedExpPotionSystem" enabled="yes" author="MatheusMkalo" forum="XTibia.com">
     
    <!-- Configs and Functions -->
    <config name="PotionExpConfigs"><![CDATA[
     
    ------ CONFIGURE SEU SCRIPT ------ TRUE ou FALSE
    configs = {
    time = 1, ---- TIME IN MINUTES
    needpa = TRUE,
    needlvl = {TRUE, level = 50},
    costmana = {TRUE, mana = 300},
    addrate = 20, -- Exp que vai adicionar em %
    removeonuse = TRUE
    }
     
    function getTime(s)
    local n = math.floor(s / 60)
    s = s - (60 * n)
    return n, s
    end
     
    CreatureEventChecker = function(event, ...) -- Colex
    if isCreature(arg[1]) then
    event(unpack(arg))
    end
    end
     
    creatureEvent = function(event, delay, ...) -- Colex
    addEvent(CreatureEventChecker, delay, event, unpack(arg))
    end
     
    function getPlayerExtraExpRate(cid) -- By MatheusMkalo
    return (getPlayerRates(cid)[8]-1)*100
    end
    ]]></config>
     
    <!-- exppotion.lua -->
    <action itemid="11401" event="script"><![CDATA[
    domodlib('PotionExpConfigs')
    if getPlayerStorageValue(cid, 62164) >= 1 then
    return doPlayerSendCancel(cid, "You are already taking effect from this item.")
    end
     
    if configs.needpa and not isPremium(cid) then
    return doPlayerSendCancel(cid, "You need to be a premmium account to use this item.")
    end
     
    if configs.needlvl[1] and getPlayerLevel(cid) < configs.needlvl.level then
    return doPlayerSendCancel(cid, "You need to be level " .. configs.needlvl.level .. " to use this item.")
    end
     
    if configs.costmana[1] then
    if getCreatureMana(cid) < configs.costmana.mana then
    return doPlayerSendCancel(cid, "You need " .. configs.costmana.mana .. " mana to use this item.")
    else
    doCreatureAddMana(cid, -configs.costmana.mana)
    end
    end
     
    if configs.removeonuse then
    doRemoveItem(item.uid, 1)
    end
     
    for i = configs.time*60, 1, -1 do
    local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
    if #a < 4 then
    a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
    end
    if i == configs.time*60 then
    creatureEvent(doPlayerSendCancel, configs.time*60*1000, cid, "The effect of the exp potion end.")
    end
    creatureEvent(doPlayerSendCancel, (configs.time*60-i)*1000, cid, "The effect of the exp potion will end in "..a..".")
    end
     
    doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
    creatureEvent(doPlayerSetExperienceRate, configs.time *60*1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
    doPlayerSendTextMessage(cid, 22, "Agora voce ira receber mais exp por matar os mosntros.")
    setPlayerStorageValue(cid, 62164, os.time())
    creatureEvent(setPlayerStorageValue, configs.time *60*1000, cid, 62164, 0)
    return TRUE
    ]]></action>
     
    <creaturescript type="login" name="ExpPotion" event="script"><![CDATA[
    domodlib('PotionExpConfigs')
    local time = configs.time
    if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then
    doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100))
    creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100)))
    creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0)
     
    for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do
    local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60))
    if #a < 4 then
    a = string.sub(a,1,2) .. "0" .. string.sub(a, 3)
    end
    if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then
    creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "The effect of the exp potion end.")
    end
    creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "The effect of the exp potion will end in "..a..".")
    end
    end
    return TRUE
    ]]></creaturescript>
    </mod>

     
  5. Upvote
    naruto vida loka deu reputação a SkyLigh em Script Para Quest   
    Esse players anbu? são o que vips? se for passe a storage da vip.
  6. Upvote
    naruto vida loka deu reputação a Stigal em [Source] Naruto Shinobi Online   
    Conteudo: Source Naruto Shinobi (By RobinHood)
    Criado por: Lks e sua equipe.
    Liberado por: Beeki
    Re-Upado por: Stigal
    Complementos: Junto com a sources vem Server+Modern Acc Para Narutibia!
    Topico Do Servidor: Click Aqui!

    -
    Link Download:
    (4Shared) - http://www.4shared.c...ce_NTO_Sh.html?
    Scan - Click Aqui!

    -
    Atenciosamente, Stigal.
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...