Ir para conteúdo

lucasczxczx silva

Membro
  • Registro em

  • Última visita

Histórico de Curtidas

  1. Gostei
    lucasczxczx silva deu reputação a Caronte em Spawn Conoot Find   
    O spawn do seu remere's deve estar com o nome diferente.
    Vá em map>properties , e veja se o nome do External Spawnfile é correspondente do seu spawn.

     
  2. Gostei
    lucasczxczx silva deu reputação a Aksz em (Resolvido)Script Mensagem   
    creaturescripts - > login.lua

    Coloca essa função debaixo da função onLogin

     
    doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Bem vindo de volta, "..getPlayerName(cid)..". Aviso que voce quer ....")testa ai para ver.
  3. Gostei
    lucasczxczx silva deu reputação a Nicrox em [DOWNLOAD] Poke Zot Atualizado + WebSite   
    Oi, pessoal.
    Aqui está o server + site que eu estava editando.
     
    Adicionei box 10, 11, 12, 13, 14, 15.
    Editei os mapas e retirei os bugs.
     
    Se tiver bugs, pode falar vou arrumar.
     
    Download
    Client
    MediaFire // 4shared
     
    Server
    MediaFire // 4shared
     
    Server sem Website
    MediaFire // 4shared
     
    Download Mapa Editor extendido
    MediaFire
     
    Rep+
    Thanks
  4. Gostei
    Fala TibiaKG's!!
     
    Essa é a Atualização V4.0 Do WebSite OTPokemon Espero Que Curtam As Novidades
     
     
    EDIÇÃO
     
    *Adicionado Poke Of Day (Editavel Na index.tpl Do Template)
    *Adicionado Facebook News (Editavel Na index.tpl Do Template)
    *Shop e Doação ( Disponiveis )
    *Nova Template
    *Atualizado Style.css
    *Deixei Apenas Um Mundo (BLUE) Disponivel Porque Muitos Estavam Com Dificuldades Para Tirar Os Outros
    *Sistema De Tradução
    Dentre Outras...
     
    PRINT



     
    DOWNLOAD
     
    MediaFire



     
    ATENÇÃO:senha para descompactar (otpokemon!) Sem Parenteses.
     
    SCAN



    CRÉDITOS
     
    Kranzix (Edição Geral)
    ModenAcc (Base)
    ---------------------------------------------------------------------------------------------------------------------------
    REP + SÃO BEM-VINDOS!!
  5. Gostei
    lucasczxczx silva deu reputação a Absolute em [UP-LEVEL] Recompensa ao subir de level   
    Você registrou no login.lua, fez todos os procedimentos? tem que fazer reinciar o server e testar
  6. Gostei
    function onAdvance(cid, skill, oldLevel, newLevel) local config = { [50] = {item = 2160, count = 50}, [100] = {item = 2160, count = 50}, [150] = {item = 2160, count = 50}, [200] = {item = 2160, count = 50}, [250] = {item = 2160, count = 50}, [300] = {item = 2160, count = 50}, [350] = {item = 2160, count = 50}, [400] = {item = 2160, count = 50}, } if skill == 8 then for level, info in pairs(config) do if newLevel >= level and (getPlayerStorageValue(cid, 30700) == -1 or not (string.find(getPlayerStorageValue(cid, 30700), "'" .. level .. "'"))) then doPlayerAddItem(cid, info.item, info.count) doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Parabéns, você atingiu o level "..newLevel.." e ganhou "..info.count.." "..getItemNameById(info.item)..".") local sat = getPlayerStorageValue(cid, 30700) == -1 and "Values: '" .. level .. "'" or getPlayerStorageValue(cid, 30700) .. ",'" .. level .. "'" setPlayerStorageValue(cid, 30700, sat) end end end return TRUE end Use este script, porém o item = 2160 é o ID da moeda Crystal Coin e a count é a quantia, no caso 50.
    Veja mais em: http://www.tibiaking.com/forum/forums/topic/36453-up-level-recompensa-ao-subir-de-level/
  7. Gostei
    lucasczxczx silva deu reputação a xWhiteWolf em (Resolvido)[PEDIDO] Critical System   
    creaturescripts.xml
    <!-- CRITICAL SYSTEM -->    <event type="statschange" name="critical" event="script" value="critical.lua"/> creaturescripts\scripts\login.lua
    --- CRITICAL SYSTEM ---- registerCreatureEvent(cid, "critical") if getPlayerStorageValue(cid, 48903) == -1 then         setPlayerStorageValue(cid, 48903, 0)      end creaturescripts\scripts\critical.lua:
    -----[[Critical System                      by Night Wolf]] local lvlcrit = 48903 local multiplier = 1.5 function onStatsChange(cid, attacker, type, combat, value) if (type == STATSCHANGE_HEALTHLOSS or type == STATSCHANGE_MANALOSS) and isPlayer(attacker) and isCreature(cid) then if (getPlayerStorageValue(attacker, lvlcrit)*3) >= math.random (0,1000) then value = math.ceil(value*(multiplier)) doTargetCombatHealth(attacker, cid, combat, -value, -value, 255) doSendAnimatedText(getCreaturePos(attacker), "CRITICAL!!", 144) return false end end return true end actions.xml:
    <action itemid="1294" script="criticalrock.lua"/> obs: muda o ID da pedra que vc for usar... aqui eu usei a small stone pra teste

    e em actions\scripts\criticalrock.lua:
    --- CRITICAL System by Night Wolf       local config = {    effectonuse = 14, -- efeito que sai    levelscrit = 100,  --- leveis que terão    storagecrit = 48903 -- storage que será verificado    }     function onUse(cid, item, frompos, item2, topos)     if getPlayerStorageValue(cid, config.storagecrit) < config.levelscrit then    doRemoveItem(item.uid, 1) doSendMagicEffect(topos,config.effectonuse) doPlayerSendTextMessage(cid,22,"You've Leveled your Critical Skill to ["..(getPlayerStorageValue(cid, config.storagecrit)+1).."/100].") setPlayerStorageValue(cid, config.storagecrit, getPlayerStorageValue(cid, config.storagecrit)+1) elseif getPlayerStorageValue(cid, config.storagecrit) >= config.levelscrit then doPlayerSendTextMessage(cid,22,"You've already reached the MAX level of Critical Skill.\nCongratulations!!!!")     return 0     end return 1 end OBS: Só funciona em ataques de players em players. Se vc ficar atacando monstro pra testar não vai dar certo (isso é porque o creaturescript só tá registrado no login.lua então o cid tem que necessariamente ser um player)
  8. Gostei
    lucasczxczx silva deu reputação a Stigal em [8.54] Naruto Seven / Client Descompilado [Download]   
    Vivemos um OPEN SOUCER! nao tem essa cara sjhhusuhshus'



    ...



    Esse servidor e 100% MEU! quero que retire IMEDIATAMENTE esse post que nao foi autorizado!
    Esse post e somente ESSE pode conter conteudos do naruto SEVEN da minha autoria e da autoria do meu amigo que não acessa foruns.

    Obrigado!
  9. Gostei
    lucasczxczx silva deu reputação a Stigal em [8.54] Naruto Seven / Client Descompilado [Download]   
    • Naruto Seven Com Client Descompilado [Download] •

    • Menu:
    ├ Informações;
    ├ Jutsus;
    ├ Ajustes;
    ├ Erros;
    ├ Prints;
    ├ Download;
    ├ CLIENT DESCOMPILADO;
    └ Creditos.

    • Informações Basicas •




    • Jutsus Do Servidor •




    • Ajustes No Servidor •




    • Erros Do Servidor •




    • PrintScreen •




    • Download's •
    Servidor 8.54 (4shared)

    http://www.mediafire.com/download/99upszbnbb7aklb/Nrtao+V.2.rar
    Cliente Do Servidor Compilado (4shared)
    http://www.4shared.com/file/Ny7GcYzw/Client_NSOexe.html
    Cliente Do Servidor DECOMPILADO! (4shared) - BASE.
    http://www.4shared.com/file/qjK7OGx7/Naruto_Seven.html
    Cliente Do Servidor ExTNL DECOMPILADO! (4shared) - VELHO.
    http://www.4shared.com/rar/_1lmtHS4/Stigal_-_ExTNL_Descompilado.html
    Cliente Do Servidor Nto Brasil v3.0 DECOMPILADO! (MediaFire) - VELHO.
    http://www.mediafire.com/?xvho2po19rq47ks
    Cliente Do Servidor ExTNL (NEW 25/12) DECOMPILADO! (4shared) - NOVO!
    http://www.4shared.com/rar/bn6j1oy9/Stigal_ExTNL_175_DESCOMPILADO.html?
    Cliente Do Servidor NtoBR (NEW 23/11) DECOMPILADO! (4shared) - NOVO!
    http://www.4shared.com/rar/LxXBOOmA/Stigal_NTOBrasil_01_DESCOMPILA.html?
    Cliente ASKL DECOMPILADO! (MegaUpload) - OFFILINE!
    http://www.megaupload.com/?d=L2DD5Y96
    • Creditos •
    80% Eu (Stigal)
    Motivo: "Edição Mediana / Final" "Ajustes" "Topico".

    20% Dono (ADM Seven)
    Motivo: "Edição Inicial".

    Servidor Atualisado: 05/Dezembro/2011
    Downloads Atualisado: 19/Dezembro/2012
  10. Gostei
    lucasczxczx silva deu reputação a principe sharingan em [Pedido] Rank System   
    Acho que este serve. Não tenho certeza.

    Data/Talkactions/Script rank.lua e cola dentro



    Agora em Talkactions.xml e cola isso:



Informação Importante

Confirmação de Termo