Ir para conteúdo

simone123

Banidos
  • Total de itens

    8
  • Registro em

  • Última visita

Histórico de Reputação

  1. Upvote
    simone123 recebeu reputação de guto815 em Rme Com Sprite De P.o   
    Bom esta ai
    vi que muita gente estava presizando, resolvi fazeer um tutorial
     
    Faça o seguinte:
    1- Baixe Remeres Map Editor Aqui: http://remeresmapeditor.com/marklar.php
    2- Instale o Map Editor
    3- Abra-o
    4- Vá em File>Preferences
    5- Abra a Aba Client Version
     
    Agora em Default Client Version, selecione a versão do Tibia do seu ot de pokémon.
    Agora embaixo, tem Version (versão) search path
    Procure o da sua versão.
    Exemplo:
    Se seu poke tibia for Tibia 8.54, selecione Version 8.54 search path e clique em Browse.
     
    O Browse vai abrir uma pequena janela, selecione a pasta do Client do seu Poke Tibia (Precisa ser a pasta onde tem o Tibia.dat e Tibia.spr)
     
     
    Após ter feito tudo isso clique em Apply e depois em OK.
    Feche seu Remeres Map Editor e vá para a pasta do seu ot.
     
    Em Pasta do ot/Data/World clique com o botão direito e selecone abrir como...
    E clique em Procurar Programa.
    Lá, selecione o programa Remeres Map Editor.
    De OK e feche;
     
    Agora dê um duplo clique no seu mapa (na pasta world).
     
    Seu mapa abrirá (ou deveria abrir) certinho, com sprites de pokémon para você editar sem problemas.
     
    ajudei? Rep+
  2. Upvote
    simone123 recebeu reputação de willsk8 em Rme Com Sprite De P.o   
    Bom esta ai
    vi que muita gente estava presizando, resolvi fazeer um tutorial
     
    Faça o seguinte:
    1- Baixe Remeres Map Editor Aqui: http://remeresmapeditor.com/marklar.php
    2- Instale o Map Editor
    3- Abra-o
    4- Vá em File>Preferences
    5- Abra a Aba Client Version
     
    Agora em Default Client Version, selecione a versão do Tibia do seu ot de pokémon.
    Agora embaixo, tem Version (versão) search path
    Procure o da sua versão.
    Exemplo:
    Se seu poke tibia for Tibia 8.54, selecione Version 8.54 search path e clique em Browse.
     
    O Browse vai abrir uma pequena janela, selecione a pasta do Client do seu Poke Tibia (Precisa ser a pasta onde tem o Tibia.dat e Tibia.spr)
     
     
    Após ter feito tudo isso clique em Apply e depois em OK.
    Feche seu Remeres Map Editor e vá para a pasta do seu ot.
     
    Em Pasta do ot/Data/World clique com o botão direito e selecone abrir como...
    E clique em Procurar Programa.
    Lá, selecione o programa Remeres Map Editor.
    De OK e feche;
     
    Agora dê um duplo clique no seu mapa (na pasta world).
     
    Seu mapa abrirá (ou deveria abrir) certinho, com sprites de pokémon para você editar sem problemas.
     
    ajudei? Rep+
  3. Upvote
    simone123 deu reputação a MatheusGlad em War Arena System.   
    Versão em MOD adicionada ao topico, muito mais pratico, aproveitem!
  4. Upvote
    simone123 deu reputação a beto06 em Exp Potion   
    data/actions/scripts/exppotion.lua

    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 onUse(cid,item,frompos,item2,topos) ------ CONFIGURE SEU SCRIPT ------ TRUE ou FALSE configs = { time = 1, ---- TIME IN MINUTES needpa = FALSE, needlvl = {FALSE, level = 50}, costmana = {FALSE, mana = 300}, removeonuse = TRUE } ---------------------------------- --------- Nao Mude -------------- if getPlayerStorageValue(cid, 62165) >= 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 double experience potion ended.") end creatureEvent(doPlayerSendCancel, (configs.time*60-i)*1000, cid, "The effect of the double experience will end in "..a..".") end doPlayerSetExperienceRate(cid, 2) creatureEvent(doPlayerSetExperienceRate, configs.time *60*1000, cid, 1) doPlayerSendTextMessage(cid, 22, "Now you will receive double experience from killing monsters.") setPlayerStorageValue(cid, 62163, os.time()) creatureEvent(setPlayerStorageValue, configs.time *60*1000, cid, 62163, 0) return TRUE end -------------------------------------
    data/actions/actions.xml

    <action itemid="7443" event="script" value="exppotion.lua"/>
    data/creaturescripts/scripts/potionevent.lua

    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 onLogin(cid) time = 1 ------ TIME IN MINUTES if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then doPlayerSetExperienceRate(cid, 2) creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1) 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 double experience potion ended.") end creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "The effect of the double experience will end in "..a..".") end end return TRUE end
    data/creaturescripts/creaturescripts.xml

    <event type="login" name="ExpPotion" event="script" value="potionevent.lua"/>
    Créditos: MatheusMkalo
    REP+?
  5. Upvote
    simone123 deu reputação a riksilva10 em Pokemon Serv 100%   
    EAE GALERINHA NA PAZ?? VIM AKI PRA TRAZER PARA VCS UM OT COMPLETO DE POKETIBIA COM MAPA QUASE 100% SVKE E MUITO MAIS!! CONFIRA ABAIXO OQUE ELE CONTEM:
     
    informaçoes:Maximo de 6 PB o resto vai pro DP 100%
    Nova Pokedex: 100%
    Seu pokemon ganha mais life por level 100%
    Sistema de fraqueza 100%
    Pokemons passivos 100%
    Surf 100%
    Fly 100%
    Ride 100%
    Catch 100%
    Stones System (Alguns evolutem com 2 stones, alguns tem chance de evoluir pra shinys) 100%
    Move System 100% -- Order Button (Hold position .h)
    Teleport,Dive System 100%
    Dig Sys, Flash Sys, Blink Sys, Blink 2 para pokemons mais fortes, Rock Smash Sys, Cut Sys -- 100% order
    Fishing 100% (balanced)
    Loot de pokemons como Svke.
    M1~M12 100%
    Novos items: Rare candy, exp potion, novos loots. 100%
    155 pokemons, raids de pokemons lendarios. 100%
    Mais de 20 quests e subindo. 100%
    Sistema de promocao, elite trainer e master trainer. 10%(pois irei fazer o npc de vocação pra quando rebornar escolher a vocaçao )
    Cassino 100%
    Safari zone 100%
    Utilitarios, Arvores dropam sementes, tochas acesas com essence of fire. 100%
    Ranking, comando !rank. 100%
    Mapa, 98%(tem umas areas que se baseião na svke mais não e pareçido e tambem tem hunts faltando mais ireu colocar) svke, houses 100%, spawns 100%, quests 60%.
    Box 1-4, 100%.
    Fight arena de Fuchsia, 100%.
    Pokebags e pokebackpacks, 100%.
    Diamonds e small diamonds dropando de bixos. 100%
    Npc de anuncio para todo servidor, NPc ajudante. 100%
    Poke food, revive, Ultra potion 5x. 100%
    Evento inicial, a cada 2 horas pegue um premio no cp (random entre xp potions e rare candys).100%
    sistema !reborn(ao chegar level 150 fale !reborn e volte para level 15,e volte pro level 15)
     
    DOWNLOAD SERVER:http://www.megaupload.com/?d=BMTWPRTA
    DOWNLOAD CLIENT PROPRIO(FEITO POR MIN PARA NAO DAR DEBUG):http://www.megaupload.com/?d=KO81OUGY
     
    E É ISSO AE GALERA APROVEITEM...
     
    OBS:NET COM PROBLEMA QNDO EU PUDER EU POSTO SCAN ,MAS PODE CONFIA NAO TEM VIRUS!!!
     
    EU JA IA ESQUECENDO!!!GOSTOU??INTAO NAO SE ESQUEÇA REP++
  6. Upvote
    simone123 deu reputação a masterzs em [Movement] Portrait System   
    Você prescisaria modificar o catch para a ball não ir direto para o lugar das boots...
  • Quem Está Navegando   0 membros estão online

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