Ir para conteúdo

xZonaah

Membro
  • Registro em

  • Última visita

Tudo que xZonaah postou

  1. Agora o erro ficou assim
  2. Olá Boa Noite ou Bom dia ... Meu server estava online derre pente o computador reiniciou e do nada apareceu esse erro já procurei na Tíbia King de tudo já tentei ... Vou mandar uma print e meu MapName... Espero que me ajudem o mais rápido possível. Obrigado pela Atenção. Atenciosamente Pauliinho. Obs: Se eu tento tirar o .otbm fala que não vai mais ser útil para mim o arquivo. " Windows 8 " Obs MapName: Ja coloquei Baiak Yutots.otbm e já deixei sem o .otbm ... MapName do Config.lua mapName = "Baiak Yurots" mapAuthor = "Eek" randomizeTiles = true useHouseDataStorage = false storeTrash = true cleanProtectedZones = true mailboxDisabledTowns = "-1" Uso tfs ( não sei a versão ) , tem anti-divulgação. Nome da TFS : The Forgotten Server - Edited By Ciko v8
  3. Funcionou perfeitamente .... +1 REP
  4. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Quando os royal paladins vão pegar a vocação Ultra Paladins , fala que deu para comprar, ai você vai e da look está royal paladin e não é feito a mudança não fica com os attack de ultra paladin , ou seja ele não está funcionando no jonny. Já as outras vocações funcionam normalmente. E muitos players do meu server estão reclamando.
  5. Marcus , é o seguinte eu não sei qual é mais seu o nome The forgotten Server - Edited By Cyko v8 , pois já mandei muitos email lá eles são estão com linux mesmo ....
  6. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Absolute poderia me ajudar a arrumar ess erro atualizei com a vocations.xml
  7. Como coloca para ela atacar varios efeitos ? estou usando a amber staff vou mandar os aquivos.lua do meu server e se tiver como me ajudar nisso ... weapons.xml <wand id="7526" level="1" mana="5" min="21000" max="23000" type="holy" event="function" value="default"> <!-- Donate Staff --> <vocation id="1"/> <vocation id="2"/> <vocation id="5"/> <vocation id="6"/> </wand> scripts/wand1.lua function onUseWeapon(cid, var) min, max = 21000, 23000 -- dano minimo e maximo local sh = 12 -- efeito distance local efe = 12 -- efeito no player local dmg = COMBAT_HOLYDAMAGE target = getCreatureTarget(cid) if target ~= 0 then if isPlayer(target) then doSendDistanceShoot(getThingPos(cid), getThingPos(target), sh) addEvent(doAreaCombatHealth, 100, cid, dmg, getThingPos(target), 0, -min, -max, efe) elseif isMonster(target) then doSendDistanceShoot(getThingPos(cid), getThingPos(target), sh) addEvent(doAreaCombatHealth, 100, cid, dmg, getThingPos(target), 0, -min, -max, efe) end end return true end items.xml <item id="2501" article="a" name="Donate Helmet"> <attribute key="weight" value="3200" /> <attribute key="armor" value="3000" /> <attribute key="slotType" value="head" /> </item>
  8. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Ajeitei com a vocation.xml
  9. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Boa Tarde. O Npc o jhonny não quer dar promotion para Paladin , pois quando um palandin vai lá e fala promotion e continua com o Royal Paladin era para ficar com o Ultra Palandin apos ter comprado .... Como posso arrumar ? , vou deixar aqui todos os scripts. Todos os scripts , não sei se tem que pega algo do spells , mais me ajudem por favor. Obrigado pela atenção NPC Jhonny <?xml version="1.0" encoding="UTF-8"?> <npc name="Master Johnny" script="data/npc/scripts/promotionn.lua" walkinterval="2000" floorchange="0"> <mana now="800" max="800"/> <health now="200" max="200"/> <look type="133" head="114" body="119" legs="132" feet="114"/> </npc> Promotionn.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) 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 node1 = keywordHandler:addKeyword({'vip'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Posso promove-lo para Primeira Promotion por 20k. Voce quer?'}) node1:addChildKeyword({'yes'}, StdModule.promotePlayer, {npcHandler = npcHandler, cost = 20000, level = 20, promotion = 1, text = 'Agora voce tem a primeira promotion.'}) node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Tudo bem, volte quando estiver pronto.', reset = true}) local node2 = keywordHandler:addKeyword({'promotion'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Posso promove-lo para Promotion VIP por 500k. Voce quer?'}) node2:addChildKeyword({'yes'}, StdModule.promotePlayer, {npcHandler = npcHandler, cost = 500000, level = 200, promotion = 2, text = 'Agora voce tem a VIP promotion.'}) node2:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Tudo bem, volte quando estiver pronto.', reset = true}) npcHandler:addModule(FocusModule:new()) Promote.lua local focus = 0 local talk_start = 0 local target = 0 local days = 0 function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Good bye then.') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) msg = string.lower(msg) if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then selfSay('Hello ' .. creatureGetName(cid) .. '! I sell premiums and promotions.') focus = cid talk_start = os.clock() elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.') elseif focus == cid then talk_start = os.clock() if msgcontains(msg, 'promotion') or msgcontains(msg, 'promote') then if getPlayerVocation(cid) > 4 then selfSay('Sorry, you are already promoted.') talk_state = 0 elseif getPlayerLevel(cid) < 20 then selfSay('Sorry, you need level 20 to buy promotion.') talk_state = 0 elseif not isPremium(cid) then selfSay('Sorry, you must be premium to buy promotion.') talk_state = 0 else selfSay('Do you want to buy promotion for 20k?') talk_state = 1 end elseif msgcontains(msg, 'premium') or msgcontains(msg, 'premmy') then selfSay('Do you want to buy 7 days of premium for 7k?') talk_state = 2 elseif talk_state == 1 then if msgcontains(msg, 'yes') then if pay(cid,20000) then doPlayerSetVocation(cid, getPlayerVocation(cid)+4) selfSay('You are now promoted!') else selfSay('Sorry, you do not have enough money.') end end talk_state = 0 elseif talk_state == 2 then if msgcontains(msg, 'yes') then if pay(cid,7000) then selfSay('/premium '.. creatureGetName(cid) ..', 7') selfSay('You have 7 days of premium more!') else selfSay('Sorry, you do not have enough money.') end end talk_state = 0 elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then selfSay('Good bye, ' .. creatureGetName(cid) .. '!') focus = 0 talk_start = 0 end end end function onCreatureChangeOutfit(creature) end function onThink() doNpcSetCreatureFocus(focus) if (os.clock() - talk_start) > 30 then if focus > 0 then selfSay('Next Please...') end focus = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Good bye then.') focus = 0 end end end Promotion.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) 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 node1 = keywordHandler:addKeyword({'promot'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I can promote you for 20000 gold coins. Do you want me to promote you?'}) node1:addChildKeyword({'yes'}, StdModule.promotePlayer, {npcHandler = npcHandler, cost = 20000, level = 20, promotion = 1, text = 'Congratulations! You are now promoted.'}) node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Alright then, come back when you are ready.', reset = true}) npcHandler:addModule(FocusModule:new()) Promotions.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) 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 node1 = keywordHandler:addKeyword({'promot'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I can promote you for 20000 gold coins. Do you want me to promote you?'}) node1:addChildKeyword({'yes'}, StdModule.promotePlayer, {npcHandler = npcHandler, cost = 20000, level = 20, text = 'Congratulations! You are now promoted.'}) node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Alright then. Come back when you are ready.', reset = true}) npcHandler:addModule(FocusModule:new()) Vocations.xml <?xml version="1.0" encoding="UTF-8"?> <vocations> <vocation id="0" name="Ultra Assassin" description="Ultra Assassin" needpremium="0" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="4.0" attackspeed="3500" soulmax="100" gainsoulticks="150" fromvoc="3"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="3.0"/> </vocation> <vocation id="1" name="Master Sorcerer" description="a master sorcerer" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="150" gainmanaticks="2" gainmanaamount="400" manamultiplier="1.1" attackspeed="150" soulmax="100" gainsoulticks="120" fromvoc="1"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/> </vocation> <vocation id="2" name="Elder Druid" description="a elder druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="150" gainmanaticks="2" gainmanaamount="400" manamultiplier="1.1" attackspeed="150" soulmax="100" gainsoulticks="120" fromvoc="2"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="1.8" sword="1.8" axe="1.8" distance="1.8" shielding="1.5" fishing="1.1" experience="1.0"/> </vocation> <vocation id="3" name="Royal Paladin" description="a royal paladin" needpremium="0" gaincap="20" gainhp="10" gainmana="15" gainhpticks="2" gainhpamount="400" gainmanaticks="3" gainmanaamount="250" manamultiplier="1.4" attackspeed="150" soulmax="100" gainsoulticks="120" fromvoc="3"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.2" club="1.2" sword="1.2" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> <vocation id="4" name="Elite Knight" description="a elite knight" needpremium="0" gaincap="25" gainhp="15" gainmana="5" gainhpticks="2" gainhpamount="420" gainmanaticks="3" gainmanaamount="200" manamultiplier="3.0" attackspeed="150" soulmax="100" gainsoulticks="120" fromvoc="4"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> <vocation id="5" name="Ultra Sorcerer" description="a ultra sorcerer" needpremium="1" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="200" gainmanaticks="2" gainmanaamount="450" manamultiplier="1.1" attackspeed="100" soulmax="200" gainsoulticks="15" fromvoc="1" lessloss="30"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/> </vocation> <vocation id="6" name="Ultra Druid" description="an ultra druid" needpremium="1" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="200" gainmanaticks="2" gainmanaamount="450" manamultiplier="1.1" attackspeed="100" soulmax="200" gainsoulticks="15" fromvoc="2" lessloss="30"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="1.8" sword="1.8" axe="1.8" distance="1.8" shielding="1.5" fishing="1.1" experience="1.0"/> </vocation> <vocation id="7" name="Ultra Paladin" description="a ultra paladin" needpremium="1" gaincap="20" gainhp="10" gainmana="15" gainhpticks="2" gainhpamount="420" gainmanaticks="2" gainmanaamount="260" manamultiplier="1.4" attackspeed="100" soulmax="200" gainsoulticks="15" fromvoc="3" lessloss="30"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.2" club="1.2" sword="1.2" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> <vocation id="8" name="Ultra Knight" description="an ultra knight" needpremium="1" gaincap="25" gainhp="15" gainmana="5" gainhpticks="2" gainhpamount="460" gainmanaticks="3" gainmanaamount="245" manamultiplier="3.0" attackspeed="100" soulmax="200" gainsoulticks="15" fromvoc="4" lessloss="30"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> <vocation id="9" name="Necromancer" description="An Necromancer" needpremium="1" gaincap="35" gainhp="20" gainmana="20" gainhpticks="2" gainhpamount="460" gainmanaticks="3" gainmanaamount="245" manamultiplier="3.0" attackspeed="100" soulmax="200" gainsoulticks="15" fromvoc="4" lessloss="30"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="1.5" sword="1.5" axe="1.5" distance="1.5" shielding="1.5" fishing="1.5" experience="1.2"/> </vocation> --> </vocations>
  10. As minhas 22 bps com vip coins estão lotadíssimas , e ainda assim não da para comprar o item se tiver como me manda , o meu é TFS , mais já veio com a pasta do server então não sei qual TFS é. Pois ai está ... Deixei um espaço reservado para que possa ir a runa a bp mas continua a mesma coisa .
  11. ViitinG , este script não está funcionando não , pois acabei de colocar em meu server Subwat e não funciona , ou é erro aqui ou ai , pois se tiver como mandar um com alavanca de vip coins agradeceria muito. Obrigado
  12. Eu arrumei o meu só que deu outro erro e arrumei ou poderá ser assim , se sua database estiver em alguma pasta dentro do seu OT , faça o seguinte:
  13. Comprei um Host e ele é Linux , mais meu computador é windows , para deixar meu server online precisa compilar , pois está dando muito erro ... Preciso de ajuda em colocar meu server de tibia 8.6 online no Host , sou novo nisso e não sei mexer nisso já vi muitos tutorias mais não entendi. Se estiver alguém que saiba mexer com essas coisas , posso dar vaga mo meu server ... E ficarei muito grato.
  14. Muito obrigado Rusherzin , me ajudou muito e irá ajudar outros também...
  15. Alguém poderia me ajudar a como colocar novos comandos no GM do meu server ?
  16. Comprei um Host e ele é Linux , mais meu computador é windows , para deixar meu server online precisa compilar , pois está dando muito erro ... Preciso de ajuda em colocar meu server de tibia 8.6 online no Host , sou novo nisso e não sei mexer nisso já vi muitos tutorias mais não entendi. Se estiver alguém que saiba mexer com essas coisas , posso dar vaga mo meu server ... E ficarei muito grato. Obrigado pela atenção
  17. Como coloca a distro dentro do meu server ? Como coloca essa distro em meu server para não dar bug ? Não sei o que devo baixar e nem como configurar e colocar , me ajude por favor.
  18. Alguém da TK poderia me ajuda a como baixar e instalar o distro tsf 0.4 em meu ot ? gostaria muito que alguém me ajudasse , pois muitas pessoas vivem divulgando em meu server. Obrigado.
  19. Eu não sei fazer isso :\ Poderia me ajudar , eu não entendo nada disso sou novo nessas coisas.
  20. Obrigado mesmo , REP+ (:
  21. Boa Tarde. Alguém poderia me ajudar comprei um host linux e o meu é windows nem percebi e queria coloca meu server de poketibia online no host para não perder dinheiro, poderia me dar um distro linux ou me ajuda com scripts. Obrigado. Atenciosamente Pauliinho
  22. Obrigado , eu não sabia , eu estava em duvida.
  23. Pessoal queria que alguém me dissesse , eu comprei um vps de 1giga da Hostinger e como eu coloco meu server de poketibia lá ? Pra ficar 24 horas ? Alguém poderia me ajudar por favor?
  24. xZonaah postou uma resposta no tópico em Suporte Tibia OTServer
    Poderia me ajudar a criar um client próprio novamente eu me esqueci :c Já testei todos os free , nenhum pega e agora ?

Informação Importante

Confirmação de Termo