Ir para conteúdo

trancx123

Membro
  • Registro em

  • Última visita

Tudo que trancx123 postou

  1. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    boa tarde pessoal, gostaria de saber como deixar um certo item não contável, para que ele não possa acumular na bag como food.
  2. olá pessoal, minha duvida é bem simples, gostaria de saber como posso deixar um item não contável.
  3. Ninguem pra me explicar o funcionamento dessa parte do script?
  4. Ninguem tem esse tipo de acript ae galera? Ter um script da anihi diferente q funcione 100% tb conta, desde q tire os demons q sobrarem em uma determinada area
  5. cara, n seria mais facil vc trocar uma sprite antiga por uma nova? existem varios items q n sao utilizados, acho q ficaria mt mais simples
  6. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    Os npcs normais vendem por outro id ne? Vc só gostaria de trocar o iten barganhado pelo player por esse q vc mandou?
  7. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    bota isso na linha antes do doSendAnimatedText(pos, text, math.random(1,250)) doSendMagicEffect(pos, text,6) eu n sei qual é o efeito 6 no seu servidor, mas existem de 1~68, a linha q eu te mandei aparece somente 1 efeito, se quiser ir testando todos é só mudar o numero dessa linha aqui, troca a que te mandei por essa doSendMagicEffect(pos,53)
  8. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    q efeito vc esta querendo kauan
  9. boa noite pessoal, eu tenho um script da inq q parece funcionar mt bem, no entanto n entendi uma parte dele, q creio eu ser justamente a de abrir uma porta X após o player ter passado pelos tps, segue a parte do script(q é essa) q n consegui fazer funcionar: isso eu coloquei em data/movements/scripts. local config = { bosses={---aid of portal, position where it sends, value it sets, text it shows [1001] = {pos={x=33069, y=31783, z=13, stackpos=1}, value=1, text="Entering The Crystal Caves"}, [1002] = {pos={x=33371, y=31613, z=14, stackpos=1}, value=2, text="Entering The Blood Halls"}, [1003] = {pos={x=33153, y=31781, z=12, stackpos=1}, value=3, text="Entering The Vats"}, [1004] = {pos={x=33038, y=31753, z=15, stackpos=1}, value=4, text="Entering The Arcanum"}, [1005] = {pos={x=33199, y=31686, z=12, stackpos=1}, value=5, text="Entering The Hive"}, [1006] = {pos={x=33111, y=31682, z=12, stackpos=1}, value=6, text="Entering The Shadow Nexus"} }, mainroom={---aid, position, lowest value that can use this portal, text [2001] = {pos={x=33069, y=31783, z=13, stackpos=1}, value=1, text="Entering The Crystal Caves"}, [2002] = {pos={x=33371, y=31613, z=14, stackpos=1}, value=2, text="Entering The Blood Halls"}, [2003] = {pos={x=33153, y=31781, z=12, stackpos=1}, value=3, text="Entering The Vats"}, [2004] = {pos={x=33038, y=31753, z=15, stackpos=1}, value=4, text="Entering The Arcanum"}, [2005] = {pos={x=33199, y=31686, z=12, stackpos=1}, value=5, text="Entering The Hive"} }, portals={---aid, position, text [3000] = {pos={x=33163, y=31708, z=14}, text="Entering Inquisition Portals Room"}, [3001] = {pos={x=33158, y=31728, z=11}, text="Entering The Ward of Ushuriel"}, [3002] = {pos={x=33169, y=31755, z=13}, text="Entering The Undersea Kingdom"}, [3003] = {pos={x=33124, y=31692, z=11}, text="Entering The Ward of Zugurosh"}, [3004] = {pos={x=33356, y=31590, z=11}, text="Entering The Foundry"}, [3005] = {pos={x=33197, y=31767, z=11}, text="Entering The Ward of Madareth"}, [3006] = {pos={x=33250, y=31632, z=13}, text="Entering The Battlefield"}, [3007] = {pos={x=33232, y=31733, z=11}, text="Entering The Ward of The Demon Twins"}, [3008] = {pos={x=33094, y=31575, z=11}, text="Entering The Soul Wells"}, [3009] = {pos={x=33197, y=31703, z=11}, text="Entering The Ward of Annihilon"}, [3010] = {pos={x=33105, y=31734, z=11}, text="Entering The Ward of Hellgorak"}, [3011] = {pos={x=32319, y=32248, z=9}, text="Congratulations!"} }, storage=56123,---storage used in boss and mainroom portals e={} }----dunno whats this but have to be like this to make doCreatureSayWithDelay working, DON'T TOUCH} function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) == TRUE then if(config.bosses[item.actionid]) then local t= config.bosses[item.actionid] if getPlayerStorageValue(cid, config.storage)< t.value then setPlayerStorageValue(cid, config.storage, t.value) end doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1, config.e) elseif(config.mainroom[item.actionid]) then local t= config.mainroom[item.actionid] if getPlayerStorageValue(cid, config.storage)>=t.value then doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1,config.e) else doTeleportThing(cid, fromPosition) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid, 'You don\'t have enough energy to enter this portal', TALKTYPE_ORANGE_1) end elseif(config.portals[item.actionid]) then local t= config.portals[item.actionid] doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1,config.e) if item.actionid == 3011 then setPlayerStorageValue(cid, 14916, 1) end end end end tambem coloquei essa tag em movements.xml <movevent type="StepIn" fromaid="3000" toaid="3011" event="script" value="inq.lua"/> o resto da script q é de matar o boss e aparecer o tele está certa, caso queiram eu posto ela toda detalhando.
  10. vankk, n testei sua script pq o reds respondeu primeiro e funcionou perfeitamente, rep+ pra vc reds, brigadao!
  11. eai galera, eu procurei no forum mas n achei algo parecido, se já existir esse script por favor me avisem, eu quero que quando um certo player matar um certo boss seja anunciado para todos no servidor que "Player XXXXX acabou de matar o boss YYYYYY". eu tenho um script mas n consegui fazer funcionar, segue o script: isso em data/creaturescripts/scripts local monstrolol = {"Morgaroth,Ferumbras,Ghazbaran,Orshabaal,the Horned Fox,Necropharus,Demodras,Tiquandas Revenge"} function onKill(cid, target, lastHit) if isInArray(monstrolol,getCreatureName(target)) then doBroadcastMessage("O jogador "..getCreatureName(cid).." killed the powerful boss "..getCreatureName(target).."!") end return true end e essa tag em data/creaturescripts.xml <event type="kill" name="killboss" event="script" value="killboss.lua"/> botei isso nesse monstro mas nada ocorreu: <script> <event name="killboss"/> </script> Alguem pode me falar onde eu errei ou se o script ta errado?
  12. pessoal, desculpem estar revivendo o topico, mas alguem pode me falar como botar pro tp abrir ao lado do monstro pra ainda poder ser pego o loot dele tb?
  13. boa noite galera, eu ando com um problema na anihi, ela está quase perfeita, só em uma parte que não está funcionando, quando eu uso uma alavanca a primeira vez Tudo ocorre certo, porém, se a equipe n conseguir matar os demons e dps vier outra equipe eles pegaram os demons acumulados, a parte de tirar/ "varrer" os demons remanescentes n está funcionando. Se alguem me ajudar serei grato, segue a parte do script que trata dessa parte: if item.itemid == 1945 then starting={x=495, y=757, z=10, stackpos=253} checking={x=starting.x, y=starting.y, z=starting.z, stackpos=starting.stackpos} ending={x=502, y=753, z=10, stackpos=253} players=0 totalmonsters=0 monster = {} repeat creature= getThingfromPos(checking) if creature.itemid > 0 then if getPlayerAccess(creature.uid) == 0 then players=players+1 end if getPlayerAccess(creature.uid) == 0 and getPlayerAccess(creature.uid) == 3 then totalmonsters=totalmonsters+1 monster[totalmonsters]=creature.uid end end checking.x=checking.x+1 if checking.x>ending.x then checking.x=starting.x checking.y=checking.y+1 end until checking.y>ending.y if players==0 then trash= {x=640, y=65, z=7} current=0 repeat current=current+1 doTeleportThing(monster[current],trash) until current>=totalmonsters doTransformItem(item.uid,1946) end end end
  14. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    o bom seria com mais, mas qualquer coisa eu tento dar continuidade a seu scripts com 3 pra botar umas 10, se vc conseguir com 3 já seria de grande ajuda
  15. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    isso! no caso só seriam necessarios 2, pq nenhum nome passa de 18 caracteres.
  16. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    eu botei de 1-250 cores hahaha, ficou show, vc n conseguiria modificar esse script para fazer isso q te pedi?
  17. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    Entendi, eu tinha pensado nisso ontem, porém nao tentei pq eu preferi botar as cores aleatórias, se eu fizer isso sairá coisas do tipo: city of(azul) sand(vermelho), entendeu? n consiguiria fazer com que a cor aleatória caisse a mesma para esse sqm extra escrito ao lado, ou vc sabe como deixar ambos sqms pra sofrer a mesma cor mantendo o sistema aleatório?
  18. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    Com essa script o máximo que eu consigo escrever sao 9 caracteres, se eu tentar escrever Misterious, que tem 10 caracteres, o S nao irá aparecer, e no caso de nomes compostos isso é pior ainda
  19. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    Alguem me ajuda? consegui fazer certinho mas tem restrição do numero de letras que aparecem in-game, como faço pra aumentar? obs: rep++ fidel
  20. Olá pessoal, aqui vai um pedido. Alguém poderia me informar/ajudar, de como eu poderia adquirir os sprites dessa waterfall (cachoeira) da 10.9? Ainda não encontrei algum SPR EDITOR que consiga abrir as sprites da 10.5 para cima, então não to conseguindo elas.. Podem me ajudar de qualquer forma.. Dicas, algum programa, como eu faria manualmente, enfim... Desde já mto obrigado =) PS: meu OT é 8.6 xd.
  21. Bom dia galera, queria q alguem me ajudase a colocar sprites no meu tibiaot 8.6, eu já tenho um pack maneiro mas n sei introduzir no meu ot, oq eu faço?
  22. trancx123 postou uma resposta no tópico em Formação de Equipe
    Boa tarde pessoal, estou a procura de um scripter para tibiaot versao 8.6. o servidor está quase pronto, faltando apenas alguns detalhes chatos para ser finalizado. A a remuneraçao pode variar de 50 até 150 reias dependendo da disponibilidade, rapidez e eficiencia. Mandem msg no privado caso se interesse
  23. trancx123 postou uma resposta no tópico em Suporte Tibia OTServer
    oi pessoal, desculpa estar revivendo uma duvida ja sanada mas n estou conseguindo, por mais q eu altere essas configuraçoes a stamina continua crescendo bem pouco, realmente n sei se ta fazendo ou n diferença quando eu altero
  24. Ola pessoal, ja vi problemas parecidos com o meu porém nao consegui resolver, alguem poderia me ajudar? esses sao os monstros q nao carregam, me parece q o erro ocorre especificamente nessas duas pastas: arena e undead humanoids. I/O warning : failed to load external entity "data/monster/arena/greenhorn/achad.xml" [Warning - Monsters::loadMonster] Cannot load monster (Achad) file (data/monster/arena/greenhorn/achad.xml). Info: failed to load external entity "data/monster/arena/greenhorn/achad.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/axeitus headbanger.xml" [Warning - Monsters::loadMonster] Cannot load monster (Axeitus Headbanger) file (data/monster/arena/greenhorn/axeitus headbanger.xml). Info: failed to load external entity "data/monster/arena/greenhorn/axeitus headbanger.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/bloodpaw.xml" [Warning - Monsters::loadMonster] Cannot load monster (Bloodpaw) file (data/monster/arena/greenhorn/bloodpaw.xml). Info: failed to load external entity "data/monster/arena/greenhorn/bloodpaw.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/bovinus.xml" [Warning - Monsters::loadMonster] Cannot load monster (Bovinus) file (data/monster/arena/greenhorn/bovinus.xml). Info: failed to load external entity "data/monster/arena/greenhorn/bovinus.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/colerian the barbarian.xml" [Warning - Monsters::loadMonster] Cannot load monster (Colerian The Barbarian) file (data/monster/arena/greenhorn/colerian the barbarian.xml). Info: failed to load external entity "data/monster/arena/greenhorn/colerian the barbarian.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/cursed gladiator.xml" [Warning - Monsters::loadMonster] Cannot load monster (Cursed Gladiator) file (data/monster/arena/greenhorn/cursed gladiator.xml). Info: failed to load external entity "data/monster/arena/greenhorn/cursed gladiator.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/frostfur.xml" [Warning - Monsters::loadMonster] Cannot load monster (Frostfur) file (data/monster/arena/greenhorn/frostfur.xml). Info: failed to load external entity "data/monster/arena/greenhorn/frostfur.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/orcus the cruel.xml" [Warning - Monsters::loadMonster] Cannot load monster (Orcus the Cruel) file (data/monster/arena/greenhorn/orcus the cruel.xml). Info: failed to load external entity "data/monster/arena/greenhorn/orcus the cruel.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/rocky.xml" [Warning - Monsters::loadMonster] Cannot load monster (Rocky) file (data/monster/arena/greenhorn/rocky.xml). Info: failed to load external entity "data/monster/arena/greenhorn/rocky.xml" I/O warning : failed to load external entity "data/monster/arena/greenhorn/the hairy one.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Hairy One) file (data/monster/arena/greenhorn/the hairy one.xml). Info: failed to load external entity "data/monster/arena/greenhorn/the hairy one.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/avalanche.xml" [Warning - Monsters::loadMonster] Cannot load monster (Avalanche) file (data/monster/arena/scrapper/avalanche.xml). Info: failed to load external entity "data/monster/arena/scrapper/avalanche.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/drasilla.xml" [Warning - Monsters::loadMonster] Cannot load monster (Drasilla) file (data/monster/arena/scrapper/drasilla.xml). Info: failed to load external entity "data/monster/arena/scrapper/drasilla.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/grimgor guteater.xml" [Warning - Monsters::loadMonster] Cannot load monster (Grimgor Guteater) file (data/monster/arena/scrapper/grimgor guteater.xml). Info: failed to load external entity "data/monster/arena/scrapper/grimgor guteater.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/kreebosh the exile.xml" [Warning - Monsters::loadMonster] Cannot load monster (Kreebosh the Exile) file (data/monster/arena/scrapper/kreebosh the exile.xml). Info: failed to load external entity "data/monster/arena/scrapper/kreebosh the exile.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/slim.xml" [Warning - Monsters::loadMonster] Cannot load monster (Slim) file (data/monster/arena/scrapper/slim.xml). Info: failed to load external entity "data/monster/arena/scrapper/slim.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/spirit of earth.xml" [Warning - Monsters::loadMonster] Cannot load monster (Spirit of Earth) file (data/monster/arena/scrapper/spirit of earth.xml). Info: failed to load external entity "data/monster/arena/scrapper/spirit of earth.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/spirit of fire.xml" [Warning - Monsters::loadMonster] Cannot load monster (Spirit of Fire) file (data/monster/arena/scrapper/spirit of fire.xml). Info: failed to load external entity "data/monster/arena/scrapper/spirit of fire.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/spirit of water.xml" [Warning - Monsters::loadMonster] Cannot load monster (Spirit of Water) file (data/monster/arena/scrapper/spirit of water.xml). Info: failed to load external entity "data/monster/arena/scrapper/spirit of water.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/the dark dancer.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Dark Dancer) file (data/monster/arena/scrapper/the dark dancer.xml). Info: failed to load external entity "data/monster/arena/scrapper/the dark dancer.xml" I/O warning : failed to load external entity "data/monster/arena/scrapper/the hag.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Hag) file (data/monster/arena/scrapper/the hag.xml). Info: failed to load external entity "data/monster/arena/scrapper/the hag.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/darakan the executioner.xml" [Warning - Monsters::loadMonster] Cannot load monster (Darakan the Executioner) file (data/monster/arena/warlord/darakan the executioner.xml). Info: failed to load external entity "data/monster/arena/warlord/darakan the executioner.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/deathbringer.xml" [Warning - Monsters::loadMonster] Cannot load monster (Deathbringer) file (data/monster/arena/warlord/deathbringer.xml). Info: failed to load external entity "data/monster/arena/warlord/deathbringer.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/fallen mooh'tah master ghar.xml" [Warning - Monsters::loadMonster] Cannot load monster (Fallen Mooh'tah Master Ghar) file (data/monster/arena/warlord/fallen mooh'tah master ghar.xml). Info: failed to load external entity "data/monster/arena/warlord/fallen mooh'tah master ghar.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/gnorre chyllson.xml" [Warning - Monsters::loadMonster] Cannot load monster (Gnorre Chyllson) file (data/monster/arena/warlord/gnorre chyllson.xml). Info: failed to load external entity "data/monster/arena/warlord/gnorre chyllson.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/norgle glacierbeard.xml" [Warning - Monsters::loadMonster] Cannot load monster (Norgle Glacierbeard) file (data/monster/arena/warlord/norgle glacierbeard.xml). Info: failed to load external entity "data/monster/arena/warlord/norgle glacierbeard.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/svoren the mad.xml" [Warning - Monsters::loadMonster] Cannot load monster (Svoren the Mad) file (data/monster/arena/warlord/svoren the mad.xml). Info: failed to load external entity "data/monster/arena/warlord/svoren the mad.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/the masked marauder.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Masked Marauder) file (data/monster/arena/warlord/the masked marauder.xml). Info: failed to load external entity "data/monster/arena/warlord/the masked marauder.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/the obliverator.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Obliverator) file (data/monster/arena/warlord/the obliverator.xml). Info: failed to load external entity "data/monster/arena/warlord/the obliverator.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/the pit lord.xml" [Warning - Monsters::loadMonster] Cannot load monster (The Pit Lord) file (data/monster/arena/warlord/the pit lord.xml). Info: failed to load external entity "data/monster/arena/warlord/the pit lord.xml" I/O warning : failed to load external entity "data/monster/arena/warlord/webster.xml" [Warning - Monsters::loadMonster] Cannot load monster (Webster) file (data/monster/arena/warlord/webster.xml). Info: failed to load external entity "data/monster/arena/warlord/webster.xml" data/monster/Bosses/klingor.xml:63: parser error : Opening and ending tag mismatch: item line 55 and loot </loot> ^ data/monster/Bosses/klingor.xml:64: parser error : Opening and ending tag mismatch: loot line 50 and monster </monster> ^ data/monster/Bosses/klingor.xml:65: parser error : Premature end of data in tag monster line 2 [Warning - Monsters::loadMonster] Cannot load monster (Klingor) file (data/monster/Bosses/klingor.xml). Line: 65, Info: Premature end of data in tag monster line 2 I/O warning : failed to load external entity "data/monster/Undead humanoids/banshee.xml" [Warning - Monsters::loadMonster] Cannot load monster (Banshee) file (data/monster/Undead humanoids/banshee.xml). Info: failed to load external entity "data/monster/Undead humanoids/banshee.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/blightwalker.xml" [Warning - Monsters::loadMonster] Cannot load monster (Blightwalker) file (data/monster/Undead humanoids/blightwalker.xml). Info: failed to load external entity "data/monster/Undead humanoids/blightwalker.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/crypt shambler.xml" [Warning - Monsters::loadMonster] Cannot load monster (Crypt Shambler) file (data/monster/Undead humanoids/crypt shambler.xml). Info: failed to load external entity "data/monster/Undead humanoids/crypt shambler.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/ghoul.xml" [Warning - Monsters::loadMonster] Cannot load monster (Ghoul) file (data/monster/Undead humanoids/ghoul.xml). Info: failed to load external entity "data/monster/Undead humanoids/ghoul.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/lich.xml" [Warning - Monsters::loadMonster] Cannot load monster (Lich) file (data/monster/Undead humanoids/lich.xml). Info: failed to load external entity "data/monster/Undead humanoids/lich.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/mummy.xml" [Warning - Monsters::loadMonster] Cannot load monster (Mummy) file (data/monster/Undead humanoids/mummy.xml). Info: failed to load external entity "data/monster/Undead humanoids/mummy.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/vampire.xml" [Warning - Monsters::loadMonster] Cannot load monster (Vampire) file (data/monster/Undead humanoids/vampire.xml). Info: failed to load external entity "data/monster/Undead humanoids/vampire.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/grim reaper.xml" [Warning - Monsters::loadMonster] Cannot load monster (Grim Reaper) file (data/monster/Undead humanoids/grim reaper.xml). Info: failed to load external entity "data/monster/Undead humanoids/grim reaper.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/the count.xml" [Warning - Monsters::loadMonster] Cannot load monster (The count) file (data/monster/Undead humanoids/the count.xml). Info: failed to load external entity "data/monster/Undead humanoids/the count.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/gravelord oshuran.xml" [Warning - Monsters::loadMonster] Cannot load monster (Gravelord Oshuran) file (data/monster/Undead humanoids/gravelord oshuran.xml). Info: failed to load external entity "data/monster/Undead humanoids/gravelord oshuran.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/arachir the ancient one.xml" [Warning - Monsters::loadMonster] Cannot load monster (Arachir the ancient one) file (data/monster/Undead humanoids/arachir the ancient one.xml). Info: failed to load external entity "data/monster/Undead humanoids/arachir the ancient one.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/diblis the fair.xml" [Warning - Monsters::loadMonster] Cannot load monster (Diblis the fair) file (data/monster/Undead humanoids/diblis the fair.xml). Info: failed to load external entity "data/monster/Undead humanoids/diblis the fair.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/sir valorcrest.xml" [Warning - Monsters::loadMonster] Cannot load monster (Sir valorcrest) file (data/monster/Undead humanoids/sir valorcrest.xml). Info: failed to load external entity "data/monster/Undead humanoids/sir valorcrest.xml" I/O warning : failed to load external entity "data/monster/Undead humanoids/zevelon duskbringer.xml" [Warning - Monsters::loadMonster] Cannot load monster (Zevelon Duskbringer) file (data/monster/Undead humanoids/zevelon duskbringer.xml). Info: failed to load external entity "data/monster/Undead humanoids/zevelon duskbringer.xml" I/O warning : failed to load external entity "data/monster/guarda.xml" [Warning - Monsters::loadMonster] Cannot load monster (Guarda) file (data/monster/guarda.xml). Info: failed to load external entity "data/monster/guarda.xml"
  25. Pessoal, ja tentei mudar a stamina no config.lua mas n adianta, ela continua a mesma. Oq pode ser isso??? Fiquei sabendo q tem q mudar algo na source...n sei como fixar

Informação Importante

Confirmação de Termo