Ir para conteúdo
Banner com Efeitos

Enzo Caue

Membro
  • Registro em

  • Última visita

Tudo que Enzo Caue postou

  1. Usa Uniform Server então, e troca a default port por 8080.
  2. Não amigo, não é pra você mudar o group_id do seu gm e sim o type da conta dele. Leia com atenção!
  3. Na tabela `account` no mysql, procure pela sua contae altere o type para 6.
  4. Enzo Caue postou uma resposta no tópico em Playground (Off-topic)
    eu também não ³
  5. Tenta trocar a hora do seu relógio, coloque como Washington e tente novamente pra ver se para!
  6. Disponibiliza o account.php ai pra gente dar uma olhada.
  7. Pro primeiro erro, vá em data/migrations e crie um arquivo chamado -1.lua e cole isso dentro dele: function onUpdateDatabase() return false end Pro segundo erro, por favor, disponibilize o seu account.php!
  8. Só pelo scan já vi que é Kl, fiquem atentos!:P
  9. Qual a versão do servidor ? 8.57 ou .54 ? Tenta esses códigos aqui: Zeca De Teleporte.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Zeca De Teleporte" script="data/npc/scripts/Zeca De Teleporte.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="129" head="19" body="69" legs="107" feet="50" addons="0"/> <voices> <voice text="Passages to Villa Ice and Villa Fire!" interval2="100" margin="1" yell="no"/> </voices> <parameters> <parameter key="message_farewell" value="Good bye. Recommend us if you were satisfied with our service." /> <parameter key="message_walkaway" value="Good bye. Recommend us if you were satisfied with our service." /> <parameter key="module_keywords" value="1" /> <parameter key="keywords" value="name;" /> <parameter key="keyword_reply1" value="My name is Zeca De Teleporte from the Royal Tibia Line." /> <parameter key="message_greet" value="Welcome on board, |PLAYERNAME|. Where may I sail you today?"/> </parameters> </npc> Zeca De Teleporte.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) -- OTServ event handling functions start 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 -- OTServ event handling functions end -- Don't forget npcHandler = npcHandler in the parameters. It is required for all StdModule functions! local travelNode = keywordHandler:addKeyword({'villa ice'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you want to sail to Villa Ice for free?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=991, y=788, z=7} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) local travelNode = keywordHandler:addKeyword({'villa fire'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Do you want to sail to Villa Fire for free?'}) travelNode:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=833, y=1500, z=7} }) travelNode:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = 'We would like to serve you some time.'}) keywordHandler:addKeyword({'sail'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Where do you want to go? To Villa Ice or Villa Fire?'}) npcHandler:addModule(FocusModule:new())
  10. Try this one https://mega.nz/#!eUNXCLiJ!1d5kSu_yIoe5f7MEECey2p0Q47i9OO_T6DGZq2GLF-Y
  11. Você precisa ter as imagens com os ids em uma pasta dentro do htdcos.
  12. hahaha, to aprendendo né amigo!! as aulas de programação tem que valer pra alguma coisa.. prontinho, já coloquei!
  13. Zeca De Teleporte.xml <?xml version="1.0" encoding="UTF-8"?> <npc name="Zeca De Teleporte" script="Zeca De Teleporte.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100" /> <look type="129" head="19" body="69" legs="125" feet="50" addons="0" /> </npc> script/Zeca De Teleport.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 voices = { {text = 'Passages to Villa Ice and Villa Fire'} } npcHandler:addModule(VoiceModule:new(voices)) -- Travel local function addTravelKeyword(keyword, cost, destination, action) local travelKeyword = keywordHandler:addKeyword({keyword}, StdModule.say, {npcHandler = npcHandler, text = 'Do you seek a passage to ' .. keyword:titleCase() .. ' for |TRAVELCOST|?', cost = cost}) travelKeyword:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = false, cost = cost,destination = destination}, nil, action) travelKeyword:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, text = 'We would like to serve you some time.', reset = true}) end addTravelKeyword('villa ice', 0, Position(991, 788, 7)) addTravelKeyword('villa fire', 0, Position(833, 1500, 7)) keywordHandler:addKeyword({'sail'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Villa Fire} or {Villa Ice}?'}) npcHandler:setMessage(MESSAGE_GREET, 'Welcome on board, |PLAYERNAME|. Where can I {sail} you today?') npcHandler:setMessage(MESSAGE_FAREWELL, 'Good bye. Recommend us if you were satisfied with our service.') npcHandler:setMessage(MESSAGE_WALKAWAY, 'Good bye then.') npcHandler:addModule(FocusModule:new())
  14. Here it is http://www.tibiaking.com/forum/topic/63101-distro-1090-32bits-e-64bits/
  15. Tá explicado, é só apagar as repetidas e deixar uma de cada :D
  16. Confira o seu items.xml e procure pelos ids dos rings depois de equipados. Verifique se há algo fora do normal entre eles comparando com outro items.xml.
  17. Forneça o seu vocations.lua por favor.
  18. Então poste os códigos dessas spells para que possamos ajudar-lhe.
  19. Enzo Caue postou uma resposta no tópico em Suporte Tibia OTServer
    Não esquece que também pode ser problemas da LGV. Abraços.
  20. Não entendi o tópico, deixe mais claro o que você realmente quer. A imagem que você postou é de um Windows 10 e não de um Ubuntu, não faz sentido algum!

Informação Importante

Confirmação de Termo