
Tudo que Enzo Caue postou
-
[URGENTE] Hostiar Site
Usa Uniform Server então, e troca a default port por 8080.
-
[URGENTE] Hostiar Site
Compra um vps
- Como fazer itens com GOD 10.9
- Como fazer itens com GOD 10.9
- [Link Quebrado]GLOBAL FULL DOWNLOAD 10.95 [TFS 1.2/FERUMBRAS QUEST/KRAILOS/NEW ARENA/CAST/NEW ITEMS/REWARD/EVENTS/CASINO] ~ Atualizações
- ola, saudades
-
(Resolvido)[ERRO] TFS e Website 10.90
Tenta trocar a hora do seu relógio, coloque como Washington e tente novamente pra ver se para!
-
(Resolvido)[ERRO] TFS e Website 10.90
Disponibiliza o account.php ai pra gente dar uma olhada.
-
(Resolvido)[ERRO] TFS e Website 10.90
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!
-
[Link Quebrado]Base OtPokémon.com + Client
Só pelo scan já vi que é Kl, fiquem atentos!:P
- [v32] GlobalFull 11/12 - New Asuras, Falcons, Warzones 4,5,6 . (Updates Frequentes)
-
Pedido NPC Zeca De teleporte
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())
- GLOBAL FULL [TFS 1.2 - Reward System, BattleField Event, Seacrest Ground] EXCLUSIVO
- GLOBAL FULL [TFS 1.2 - Reward System, BattleField Event, Seacrest Ground] EXCLUSIVO
- SHOP NÃO MOSTRA IMAGEM
- Pedido NPC Zeca De teleporte
-
Pedido NPC Zeca De teleporte
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())
- GLOBAL FULL [TFS 1.2 - Reward System, BattleField Event, Seacrest Ground] EXCLUSIVO
-
Nomes de vocations repetidas
Tá explicado, é só apagar as repetidas e deixar uma de cada :D
- Rings não funcionam em alguns chars
-
Nomes de vocations repetidas
Forneça o seu vocations.lua por favor.
- SERVER FECHANDO SOZINHO DPS DE ALGUMAS HORAS
- BUG TFS
-
Tibia pelo Linux Ajuda
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!
- GLOBAL FULL [TFS 1.2 - Reward System, BattleField Event, Seacrest Ground] EXCLUSIVO