Ir para conteúdo

xZonaah

Membro
  • Registro em

  • Última visita

Tudo que xZonaah postou

  1. Obrigado, assim que eu arumar irei te mandar tudo arrumado pode ser? Se achar mas bugs me avise :D
  2. O Npc Dark Rodo * Mestre Das Runas * Não vende wands.
  3. Parabéns e me ajudou :D
  4. Vai em: npc/scripts/runes.lua (ou onde for o script do npc) Só subistitui por isso.. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end local shopModule = ShopModule:new() npcHandler:addModule(shopModule) shopModule:addBuyableItem({'spellbook'}, 2175, 150, 'spellbook') shopModule:addBuyableItem({'magic lightwand'}, 2163, 400, 'magic lightwand') shopModule:addBuyableItem({'small health'}, 8704, 20, 1, 'small health potion') shopModule:addBuyableItem({'health potion'}, 7618, 45, 1, 'health potion') shopModule:addBuyableItem({'mana potion'}, 7620, 50, 1, 'mana potion') shopModule:addBuyableItem({'strong health'}, 7588, 100, 1, 'strong health potion') shopModule:addBuyableItem({'strong mana'}, 7589, 80, 1, 'strong mana potion') shopModule:addBuyableItem({'great health'}, 7591, 190, 1, 'great health potion') shopModule:addBuyableItem({'great mana'}, 7590, 120, 1, 'great mana potion') shopModule:addBuyableItem({'great spirit'}, 8472, 190, 1, 'great spirit potion') shopModule:addBuyableItem({'ultimate health'}, 8473, 310, 1, 'ultimate health potion') shopModule:addBuyableItem({'antidote potion'}, 8474, 50, 1, 'antidote potion') shopModule:addSellableItem({'normal potion flask', 'normal flask'}, 7636, 5, 'empty small potion flask') shopModule:addSellableItem({'strong potion flask', 'strong flask'}, 7634, 10, 'empty strong potion flask') shopModule:addSellableItem({'great potion flask', 'great flask'}, 7635, 15, 'empty great potion flask') shopModule:addBuyableItem({'instense healing'}, 2265, 95, 1, 'intense healing rune') shopModule:addBuyableItem({'instense healing'}, 2260, 100000, 1, 'blank rune') shopModule:addBuyableItem({'ultimate healing'}, 2273, 175, 1, 'ultimate healing rune') shopModule:addBuyableItem({'magic wall'}, 2293, 350, 3, 'magic wall rune') shopModule:addBuyableItem({'destroy field'}, 2261, 45, 3, 'destroy field rune') shopModule:addBuyableItem({'light magic missile'}, 2287, 40, 10, 'light magic missile rune') shopModule:addBuyableItem({'heavy magic missile'}, 2311, 120, 10, 'heavy magic missile rune') shopModule:addBuyableItem({'great fireball'}, 2304, 180, 4, 'great fireball rune') shopModule:addBuyableItem({'explosion'}, 2313, 250, 6, 'explosion rune') shopModule:addBuyableItem({'sudden death'}, 2268, 350, 3, 'sudden death rune') shopModule:addBuyableItem({'death arrow'}, 2263, 300, 3, 'death arrow rune') shopModule:addBuyableItem({'paralyze'}, 2278, 700, 1, 'paralyze rune') shopModule:addBuyableItem({'animate dead'}, 2316, 375, 1, 'animate dead rune') shopModule:addBuyableItem({'convince creature'}, 2290, 80, 1, 'convince creature rune') shopModule:addBuyableItem({'chameleon'}, 2291, 210, 1, 'chameleon rune') shopModule:addBuyableItem({'desintegrate'}, 2310, 80, 3, 'desintegreate rune') shopModule:addBuyableItemContainer({'bp slhp'}, 2000, 8704, 400, 1, 'backpack of small health potions') shopModule:addBuyableItemContainer({'bp hp'}, 2000, 7618, 900, 1, 'backpack of health potions') shopModule:addBuyableItemContainer({'bp mp'}, 2001, 7620, 1000, 1, 'backpack of mana potions') shopModule:addBuyableItemContainer({'bp shp'}, 2000, 7588, 2000, 1, 'backpack of strong health potions') shopModule:addBuyableItemContainer({'bp smp'}, 2001, 7589, 1600, 1, 'backpack of strong mana potions') shopModule:addBuyableItemContainer({'bp ghp'}, 2000, 7591, 3800, 1, 'backpack of great health potions') shopModule:addBuyableItemContainer({'bp gmp'}, 2001, 7590, 2400, 1, 'backpack of great mana potions') shopModule:addBuyableItemContainer({'bp gsp'}, 1999, 8472, 3800, 1, 'backpack of great spirit potions') shopModule:addBuyableItemContainer({'bp uhp'}, 2000, 8473, 6200, 1, 'backpack of ultimate health potions') shopModule:addBuyableItemContainer({'bp ap'}, 2002, 8474, 2000, 1, 'backpack of antidote potions') shopModule:addBuyableItem({'wand of vortex'}, 2190, 500, 1, 'wand of vortex') shopModule:addBuyableItem({'wand of dragonbreath'}, 2191, 1000, 1, 'wand of dragonbreath') shopModule:addBuyableItem({'wand of decay'}, 2188, 5000, 1, 'wand of decay') shopModule:addBuyableItem({'wand of draconia'}, 8921, 7500, 1, 'wand of draconia') shopModule:addBuyableItem({'wand of cosmic energy'}, 2189, 10000, 1, 'wand of cosmic energy') shopModule:addBuyableItem({'wand of inferno'}, 2187, 15000, 1, 'wand of inferno') shopModule:addBuyableItem({'wand of starstorm'}, 8920, 18000, 1, 'wand of starstorm') shopModule:addBuyableItem({'wand of voodoo'}, 8922, 22000, 1, 'wand of voodoo') shopModule:addBuyableItem({'snakebite rod'}, 2182, 500, 1, 'snakebite rod') shopModule:addBuyableItem({'moonlight rod'}, 2186, 1000, 1, 'moonlight rod') shopModule:addBuyableItem({'necrotic rod'}, 2185, 5000, 1, 'necrotic rod') shopModule:addBuyableItem({'northwind rod'}, 8911, 7500, 1, 'northwind rod') shopModule:addBuyableItem({'terra rod'}, 2181, 10000, 1, 'terra rod') shopModule:addBuyableItem({'hailstorm rod'}, 2183, 15000, 1, 'hailstorm rod') shopModule:addBuyableItem({'springsprout rod'}, 8912, 18000, 1, 'springsprout rod') shopModule:addBuyableItem({'underworld rod'}, 8910, 22000, 1, 'underworld rod') local items = {[1] = 2190, [2] = 2182, [5] = 2190, [6] = 2182} function creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return false end local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid if(msgcontains(msg, 'first rod') or msgcontains(msg, 'first wand')) then if(isSorcerer(cid) or isDruid(cid)) then if(getPlayerStorageValue(cid, 30002) <= 0) then selfSay('So you ask me for a {' .. getItemNameById(items[getPlayerVocation(cid)]) .. '} to begin your advanture?', cid) talkState[talkUser] = 1 else selfSay('What? I have already gave you one {' .. getItemNameById(items[getPlayerVocation(cid)]) .. '}!', cid) end else selfSay('Sorry, you aren\'t a druid either a sorcerer.', cid) end elseif(msgcontains(msg, 'yes')) then if(talkState[talkUser] == 1) then doPlayerAddItem(cid, items[getPlayerVocation(cid)], 1) selfSay('Here you are young adept, take care yourself.', cid) setPlayerStorageValue(cid, 30002, 1) end talkState[talkUser] = 0 elseif(msgcontains(msg, 'no') and isInArray({1}, talkState[talkUser])) then selfSay('Ok then.', cid) talkState[talkUser] = 0 end return true end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  5. O seu download está em andamento, só vou pedir para que você pegue a database do que você baixou e coloque o neste daqui. @Edit: Download: http://www.mediafire.com/download/73zld8xo9nbbht3/Baaiiak+Zona+v1.rar Quer que eu faça scan ou confia ?
  6. Estou arrumando já, assim que ficar tudo ok te mandarei pode ser? Pode ter certeza que esse server irá atrair muitosp layer pelo visual e jogabilidade.
  7. Estou com o server ligado normalmente você deve ter feito algo de errado, o server aqui em casa está normal. Mais caro jovem, amanhã mesmo te entregarei sem bug, estou resolvendo isto já, mesmo aqui funcionando novamente eu irei arrumar pra você.
  8. Qual distro ?
  9. Já tive um server de poketibia "PokeNoia" bombou ano passo 80 a 100 players, pois eu era o mapper, se quiser estou aqui Skype: pauliinho.viictor Whatsapp: 015 997539203
  10. Amigo tente subistituir os seguintes itens do seu remeres: Baixe este arquivo: http://www.mediafire.com/download/kb3cbeq84lc5yqq/8.54.rar E abra a opção File\Opções\Cleint Version Marque a opção: Check File Signatures E após ter baixado extraia e clica em 8.54 no RME e clique na pasta em que fez o download Pasta 8.54
  11. Então, o erro mesmo se eu não me engano foi na hora de adicionar os itens, verificou se ão houve algum erro? Caso se não deu erro verifique trocando o client e adicionando novamente os itens e veja se não foi na hora de colocar os itens no client que deu bug Ou seja, verifica em outro client se funciona normal com os itens dele mesmo, ai coloque os itens que você quer dentro do novo client e teste, caso se der o mesmo problema é o item ou mesmo ambos os clients.
  12. Cara faça o seguinte, tem um erro já ... ( basespeed="200" ) retire-o e renicie o seu server e me fale se arrumou. E o sistema de fast attack funciona assim: Quanto mais fast attack attackspeed="1000" Menos ataque ele vai dar. Quanto menos fast attack attackspeed="100" Mais ataque ele vai dar. Tente modificar de "1000", para "500" e me fale.
  13. Então amigo, esse erro é realmente no client, tente mudar o client e mande o erro, pois as bordas que contém nesse client ele estão lendo de uma outra forma. Mude o client e vejá se irá mudar.
  14. Baiak Barão editado por mim mesmo e reconfigurado e muito mais confira a baixo o que mudei: - Novo Visual do Templo - Aura System (comando !aura on) - Task System - Dodge System - Run Event (CORRIDA MALUCA) - Reset System (ÁREA EXCLUSIVA COM CASTELO E HUNTS) para resetar fale !reset - Guild Frags System (ÁREA EXCLUSIVA COM CASTELO E HUNTS) - War System (100% RODANDO EM SQLITE) - Cast System (100% Roda em Mysql ) ( Para Ativar vai em Config.lua e ache | enableCast = false | mude para true ) Duvidas entrem em http://www.tibiaking.com/forum/topic/34609-add-cast-system-pra-quem-já-tem-os-códigos-na-distro/ - PvP Balanceado, agora totalmnte balaceado e fast attk ( editado por mim mesmo) - Varios Eventos Automaticos - Battle Field Event - Capture The Flag Event - Adicionado CASTLE 24HORAS (COM CASTELO) e AVISOS DE INVASORES - Itens DONATES - Área DONATE ~~ (Só Entra Quem Usar o Itens) - Vários Novos Script - Fast Atk Arrumado e balanceado por mim mesmo. - Distro 0.4 Rodando 100% ( Se For 64x Bits) - Refinamento ( Aprimora seu Item ) - Level Points System Adicionado (Melhora Seu Skill) - Frags no Look ( próxima atualizção com Kill and Death no look ) - Fly System Adicionado fale !fly O que eu adiconei: /name [ADM] Zona, [ADM] Batata , sim agora da para mudar o nome dos GM, Tutor, CM, GOD dentro do jogo. - Todos npc em cima do templo, - Cristical System ( Não tinha ), - Depot Templo, - Anti Magebomb 10 acc + kika do server e se tentar novamente da ban IP. O que retirei de bugs: - Houses bugadas ✓ - Distro cheio de erro ✓ ( Erro das houses que tem não muda nada no uptime ) - Melhorado templo ✓ - Melhorado e tirado muitos erros e bugs que tinha no mapa ✓ - Major Ancient ( RETIRADO HAVIA BUG ) ✓ - Entre outros bugs se acharem, me avisem próxima atualização me esforçarei para tirar. *Criticas construtivas ✓ *Melhorias para a próxima ✓ Chega de mimi vamos para os prints! E muito mais novidades, baixem e confira tudo. Desculpem se eu esqueci algo, sou novo para postar download aqui. Download: http://www.mediafire.com/download/wh0na63t2g8cotm/Baaiiak+Zona.rar Senha para descompactar: baiakzona Scan: https://www.virustotal.com/pt/file/4f3a5fb85359705484726654c781a6055db0dc75661a9dca7bf741ab955fd0d1/analysis/1457465154/
  15. Tem skype? Posso te ajudar, mas enfim, verificou as configurações ?
  16. Double post, tome cuidado.
  17. Não consigo exportar para meu mapa, poderiam me ajudar ?
  18. Olá pessoal da TK, quero vir pedir ajuda pois meu server está impossível de criar guild, está com o seguinte erro:
  19. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Poderia colocar um link novo ? pois estou com o mesmo problema, dou REP+
  20. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Meu server os players não conseguem atacar a andar ao mesmo tempo, dou REP+
  21. Olá pessoal da TK, não sei se está é a area correta, mas em fim. Quero que me ajudem a criar uma staff para todas as vocações e que de para os que criarem conta "novatos".. Dou REP+ Preciso urgente pro meu server 24horas. ID: 2437 - Light Mace ( Staff of All )
  22. Olá, pessoal do TK, venho pedir ajuda pois meu server ele está online normalmente, nunca foi assim, ele em média sempre aguentou 90 a 100 players e estava com 15 players. O ot não da nenhum erro em si, mas ele acaba fechando sozinho sem nenhum motivo, nenhum erro na distro "real server 3.1", o mapa é "Baiak Rox 8.60 Criado Por Vinicius" quero pedir a ajuda e a colaboração que me ajudem, dou REP+. De vez enquando ele dura 3 dias, de vez enquando ele dura 10 , 20 minutos , 1 hora ... Varia e sem nenhum erro ou nuker ele desliga sozinho. Info computador: Intel(R) Core(TM0 i3-3217U CPU @ 1.80GHz 1.80GHz Memoria Ram: 4,00 (Utilizável: 3,89 GB) Tipo de sistema x64 bits Windows: 8.1 Pro 500GB HD SATA III Internet: 20 mega Agradeço pela compreensão e pela colaboração de quem está me ajudando.
  23. Olá, pessoal do TK, venho pedir ajuda pois meu server ele está online normalmente, nunca foi assim, ele em média sempre aguentou 90 a 100 players e estava com 15 players. O ot não da nenhum erro em si, mas ele acaba fechando sozinho sem nenhum motivo, nenhum erro na distro "real server 3.1", o mapa é "Baiak Rox 8.60 Criado Por Vinicius" quero pedir a ajuda e a colaboração que me ajudem, dou REP+. De vez enquando ele dura 3 dias, de vez enquando ele dura 10 , 20 minutos , 1 hora ... Varia e sem nenhum erro ou nuker ele desliga sozinho. Info computador: Intel(R) Core(TM0 i3-3217U CPU @ 1.80GHz 1.80GHz Memoria Ram: 4,00 (Utilizável: 3,89 GB) Tipo de sistema x64 bits Windows: 8.1 Pro 500GB HD SATA III Internet: 20 mega Agradeço pela compreensão e pela colaboração de quem está me ajudando.
  24. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Testando :D Acabei de fazer mas continua :\ O pessoal reloga ou morre volta ao level 8
  25. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    @TESTANDO, já edito Deu certo não, uparam e volto ao level 8 e perderam os itens... :\

Informação Importante

Confirmação de Termo