
Tricoder
Héroi
-
Registro em
-
Última visita
Histórico de Curtidas
-
Tricoder recebeu reputação de Tryller em OTClient 0.6.3 | 7.4 à 10.9 (ATUALIZADO!)OTClient 0.6.3 Rev 2474 Compilado em: 11 de dezembro de 2015. Compativel com as versões: 7.4 à 10.9 Compilado por: zbizu Background: http://kate-fox.deviantart.com/art/SteamFox-505747704 Sources: https://github.com/edubart/otclient
Versões compatíveis
Mudar background do OTClient
Vá em otclient\data\images\ Substitua background.png. Reinicie o client.
Adicionar versão no client
Adicione a versão do client em otclient\modules\gamelib\game.lua. Crie uma pasta com a versão do client em otclient\data\things\ e coloque o .spr e dat. Reinicie o jogo.
Download
MEGA Google Drive Sendspace
Scan
VirusTotal Jotti -
Tricoder recebeu reputação de rodo56 em [7.7] ThoraOT distroScreenshots
Informações
Este datapack foi disponibilizado por R.yan e Iryont
Caso queira saber mais, basta acessar: www.thoraot.com
Download e Scan
Download: MediaFire Senha: TibiaKing.com Scan: VirusTotal -
Tricoder recebeu reputação de rodo56 em OTClient 0.6.3 | 7.4 à 10.9 (ATUALIZADO!)OTClient 0.6.3 Rev 2474 Compilado em: 11 de dezembro de 2015. Compativel com as versões: 7.4 à 10.9 Compilado por: zbizu Background: http://kate-fox.deviantart.com/art/SteamFox-505747704 Sources: https://github.com/edubart/otclient
Versões compatíveis
Mudar background do OTClient
Vá em otclient\data\images\ Substitua background.png. Reinicie o client.
Adicionar versão no client
Adicione a versão do client em otclient\modules\gamelib\game.lua. Crie uma pasta com a versão do client em otclient\data\things\ e coloque o .spr e dat. Reinicie o jogo.
Download
MEGA Google Drive Sendspace
Scan
VirusTotal Jotti -
Tricoder recebeu reputação de gurulima20 em OTClient 0.6.3 | 7.4 à 10.9 (ATUALIZADO!)OTClient 0.6.3 Rev 2474 Compilado em: 11 de dezembro de 2015. Compativel com as versões: 7.4 à 10.9 Compilado por: zbizu Background: http://kate-fox.deviantart.com/art/SteamFox-505747704 Sources: https://github.com/edubart/otclient
Versões compatíveis
Mudar background do OTClient
Vá em otclient\data\images\ Substitua background.png. Reinicie o client.
Adicionar versão no client
Adicione a versão do client em otclient\modules\gamelib\game.lua. Crie uma pasta com a versão do client em otclient\data\things\ e coloque o .spr e dat. Reinicie o jogo.
Download
MEGA Google Drive Sendspace
Scan
VirusTotal Jotti -
Tricoder recebeu reputação de Drankar em OTClient 0.6.3 | 7.4 à 10.9 (ATUALIZADO!)OTClient 0.6.3 Rev 2474 Compilado em: 11 de dezembro de 2015. Compativel com as versões: 7.4 à 10.9 Compilado por: zbizu Background: http://kate-fox.deviantart.com/art/SteamFox-505747704 Sources: https://github.com/edubart/otclient
Versões compatíveis
Mudar background do OTClient
Vá em otclient\data\images\ Substitua background.png. Reinicie o client.
Adicionar versão no client
Adicione a versão do client em otclient\modules\gamelib\game.lua. Crie uma pasta com a versão do client em otclient\data\things\ e coloque o .spr e dat. Reinicie o jogo.
Download
MEGA Google Drive Sendspace
Scan
VirusTotal Jotti -
Tricoder recebeu reputação de Loop CubTv em Old EvolutionCategoria: Mapa.
Versão: 8.60
Créditos: Placek
Anexos: Download | Scan
Screenshot;
-
-
Tricoder recebeu reputação de Dragonight em OTClient 0.6.3 | 7.4 à 10.9 (ATUALIZADO!)OTClient 0.6.3 Rev 2474 Compilado em: 11 de dezembro de 2015. Compativel com as versões: 7.4 à 10.9 Compilado por: zbizu Background: http://kate-fox.deviantart.com/art/SteamFox-505747704 Sources: https://github.com/edubart/otclient
Versões compatíveis
Mudar background do OTClient
Vá em otclient\data\images\ Substitua background.png. Reinicie o client.
Adicionar versão no client
Adicione a versão do client em otclient\modules\gamelib\game.lua. Crie uma pasta com a versão do client em otclient\data\things\ e coloque o .spr e dat. Reinicie o jogo.
Download
MEGA Google Drive Sendspace
Scan
VirusTotal Jotti -
Tricoder recebeu reputação de dumazin em [TFS 1.x] AutoLoot SystemSCREENSHOT
http://3.1m.yt/Zwo99Sdx.png
http://4.1m.yt/oG_cwli8u.png
______________________________________________ COMANDOS
!autoloot add, itemId ou name -- Adicionando um item na lista !autoloot remove, itemId or name -- Remover um item da lista !autoloot show -- Mostrar a lista do autoLoot !autoloot clear -- Limpar a lista do autoLoot ______________________________________________ SCRIPT data/global.lua
-- AutoLoot config AUTO_LOOT_MAX_ITEMS = 5 -- Reserved storage AUTOLOOT_STORAGE_START = 10000 AUTOLOOT_STORAGE_END = AUTOLOOT_STORAGE_START + AUTO_LOOT_MAX_ITEMS -- AutoLoot config end talkactions/talkactions.xml
<talkaction words="!autoloot" separator=" " script="autoloot.lua"/> talkactions/scripts/autoloot.lua
function onSay(player, words, param) local split = param:split(",") local action = split[1] if action == "add" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item local size = 0 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if size == AUTO_LOOT_MAX_ITEMS then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The list is full, please remove from the list to make some room.") break end if storage == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." is already in the list.") break end if storage <= 0 then player:setStorageValue(i, itemType:getId()) player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been added to the list.") break end size = size + 1 end elseif action == "remove" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been removed from the list.") player:setStorageValue(i, 0) return false end end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." was not founded in the list.") elseif action == "show" then local text = "-- Auto Loot List --\n" local count = 1 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if storage > 0 then text = string.format("%s%d. %s\n", text, count, ItemType(storage):getName()) count = count + 1 end end if text == "" then text = "Empty" end player:showTextDialog(1950, text, false) elseif action == "clear" then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do player:setStorageValue(i, 0) end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The autoloot list has been cleared.") else player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Use the commands: !autoloot {add, remove, show, clear}") end return false end creaturescripts/creaturescripts.xml
<event type="kill" name="AutoLoot" script="autoloot.lua" /> creaturescripts/scripts/autoloot.lua
local function scanContainer(cid, position) local player = Player(cid) if not player then return end local corpse = Tile(position):getTopDownItem() if not corpse then return end if corpse:getType():isCorpse() and corpse:getAttribute(ITEM_ATTRIBUTE_CORPSEOWNER) == cid then for i = corpse:getSize() - 1, 0, -1 do local containerItem = corpse:getItem(i) if containerItem then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == containerItem:getId() then containerItem:moveTo(player) end end end end end end function onKill(player, target) if not target:isMonster() then return true end addEvent(scanContainer, 100, player:getId(), target:getPosition()) return true end creaturescripts/scripts/login.lua
player:registerEvent("AutoLoot") ______________________________________________ CRÉDITOS
Printer -
Tricoder deu reputação a Usmon em Monsters Quest WorldsOlá, Bem Vindos.
Sou um tibiano apaixonado por servidores alternativos do tíbia, na minha visão o tíbia nunca foi um jogo de mmo completo, mas com o passa do tempo evoluiu e está a ficar melhor a cada ano, porém mesmo assim ainda sinto que falta algo no tibia. Então é por falta disso que dei inicio ao meu projeto, mesmo não sabendo nada de programação em c++!
O PROJETO;
Monsters Quest Worlds será um MMORPG, qual fazer missões (Quest) e seguir a história (Lore) do surgimento do mundo será obrigatório para liberar mapas especiais e itens únicos. Pretendo manter a originalidade do clássico tibia, porém ha muitos sistemas que pretendo incluir. Não existira classe especifica, todos serão domadores e os monstros serão suas armas, exatamente, pretendo fazer parecido com o poketibia, porém ao invés de Pokémon teremos os clássicos monstros da mitologia grega e diversos. Já pensou você domar um minotauro ou mesmo esta montando em um centauro? Parece inacreditável? Mas não é, esse é o mundo do Monster Quest Worlds!
DESENVOLVIMENTO & ATUALIZAÇÕES:
------
-
Tricoder recebeu reputação de Vodkart em Rainbow Outfit Script + OTClient V8 com Bot [Video Tutorial + Download]Video Tutorial:
https://www.youtube.com/watch?v=yU1xBKd26PU
OTClient v8:
https://mega.nz/file/nPwDzQIY#netyyUzAQwDP6Nwrqqkg8DXc0QwSjtKaKZYQ9KqYJ3A
https://www.virustotal.com/gui/file/617aa96b08e6036ef08d39f58331a0d1cbdf13d705e9f0bf2787e9232c59fc7d?nocache=1
Rainbow.lua:
https://mega.nz/file/iL4DjQqa#4BYeWRK8oNGvfa58J4fKOxcuc0Kx-TOZM488-czbFbE
https://www.virustotal.com/gui/file/b8ceb30339a08d13c93c5d992f634d89df99af3bf5cf44cf9140f8afa7e39158?nocache=1
Things:
https://mega.nz/file/zDhDwSBZ#Ay8X4-5ffcrJvCZQwEN2jnJEr3U9onj-pjiMS1UCw1w
https://www.virustotal.com/gui/file/35fd5a6eb0b4d6482cd3d0e5b50fc5d913694506f493b39be4057237a7908099?nocache=1
-
Tricoder recebeu reputação de GuiAmaro em Thais MedievalCategoria: Mapa.
Versão: 8.60
Créditos: Koci
Anexos: Download | Scan
Screenshot;
-
Tricoder recebeu reputação de Brum em [TFS 1.0/1.1/1.2] Summon teleportando mesmo que você tenha subidoInstalando
globalevents.xml
<globalevent name="SummonTeleport" interval="1000" script="summon_teleport.lua"/> globalevents/scripts/summon_teleport.lua
local distFromMaster = 7 ------ DISTANCIA QUE O SUMMON FICARÁ DO PLAYER function onThink(interval) for _, player in ipairs(Game.getPlayers()) do local playerPos = player:getPosition() if not Tile(playerPos):hasFlag(TILESTATE_PROTECTIONZONE) then local summons = player:getSummons() if #summons ~= 0 then for i = 1, #summons do local summon = summons[i] local summonPos = summon:getPosition() if summonPos.z ~= playerPos.z or summonPos:getDistance(playerPos) > distFromMaster then summon:teleportTo(playerPos) summon:getPosition():sendMagicEffect(CONST_ME_TELEPORT) end end end end end return true end
Créditos
Printer, luanluciano93
-
Tricoder recebeu reputação de Rogex Joyz em Domek perfect rpg mapCategoria: Mapa.
Versão: 8.60
Créditos: Eturl
Anexos: Download | Scan
Screenshot;
-
Tricoder recebeu reputação de guicfelipe em [VIDEO AULA] Colocando OT online nas versões atuais 10.xDescrição
Há MUITAS pessoas com esse tipo de dúvida sobre como abrir servidor atualmente, andei fuçando até que achei esse video e resolvi compartilhar com vocês.
O tutorial é longo, possui mais de uma hora mas é completamente explicativo. No tutorial é utilizado a versão 10.8x, mas lembrando que serve para todas as versões atuais. Os downloads se encontram ao final do tópico!
Agradecimentos à @hpjp, conteúdo feito totalmente por ele!
Compatibilidade
Windows e Linux.
Video Aula
Comandos uteis/necessários
Downloads
Máquina Virtual: http://www.oracle.com/technetwork/pt/server-storage/virtualbox/downloads/index.html xUbuntu Torrent: http://torrent.ubuntu.com/xubuntu/releases/trusty/release/desktop/xubuntu-14.04.3-desktop-amd64.iso.torrent Arquivo Install PHP: http://www.4shared.com/file/UH9Mtrd-ce/install.html Database (senha admin/admin e players 1/1): http://www.4shared.com/document/7mkM6cZxba/global.html
Servidor: http://www.mediafire.com/download/f7jacdzac7w5a4w/server.rar Sources com cast system: http://www.mediafire.com/download/bt2b2kj6eblfz2j/sources.rar Website compativel: http://www.mediafire.com/download/ssmgo9ko8j354so/www.zip Database: http://www.mediafire.com/download/vn0gbf75qgbi5ge/global-8.sql -
Tricoder recebeu reputação de Deletera em Thais MedievalCategoria: Mapa.
Versão: 8.60
Créditos: Koci
Anexos: Download | Scan
Screenshot;
-
Tricoder recebeu reputação de Viniciusvgs10 em [TFS 1.2] Bless free for low level - Bless de graça para level baixoInstalando
Coloque isso depois de function onLogin(player) em data/creaturescripts/scripts/others/login.lua
-- Free bless freeBless = { level = 50, blesses = {1, 2, 3, 4, 5} } if player:getLevel() <= freeBless.level then for i=1,#freeBless.blesses do doPlayerAddBlessing(player, freeBless.blesses[i]) end end
Créditos
eduardojuniosm -
Tricoder recebeu reputação de Navazek em Pokemon DreamRed v3.2 [Catch, Pokedex, Stones, Teleport, Fly, Ride, e+]Sistemas
Portrait [100%] Pokedex [100%] Surf [100%] Fly [100%] Ride [100%] Catch [100%] Teleport [100%] Fishing [100%] Bike [100%] Elite Stone [100%] Gerações I [100%] Gerações II [100%] Shiny Stone [100%] Boost Stone [100%] Caught [100%] Moves [100%] Go-Back [100%] E MUITO MAIS! Créditos: Dreamer
Screenshot
Downloads
Server: MediaFire Client: MediaFire DLLs: dll TibiaKing.com.rar Senha: anti sangue-sugas tibiaking.com Scans
Server: VirusTotal Client: VirusTotal Dlls: VirusTotal -
Tricoder recebeu reputação de Carlos Ortega em Fuzion Global | Trainer Offline, Teleports, Servidor estável e +Fuzion Global
8.60
Informações
Mapa Global 100%. Rashid está de cidade em cidade em cada dia da semana. Todas as quests 100%. Spells 100%. Monstros 100%. Teleports; Teleports para as quests 100%. Offline Trainer 100%. Servidor 100% estável. Teleports para as cidades 100%. E muito mais!
Quests
The Annihilator Quest Demon Helmet Quest The Elemental Spheres Quest Firewalker Boots Quest The Inquisition Quest Killing in the Name of... Quest The Pits of Inferno Quest Shadows of Yalahar Quest Children of the Revolution Quest The New Frontier Quest The Demon Oak Quest Tomes of Knowledge Quest In Service of Yalahar Quest
Cidades
Carlin Thais Ab'Dendriel Venore Liberty Bay Outlaw Camp Ankrahmun Zao + Razachai! Edron Kazordoon Port Hope Svargrund Yalahar Darashia E muitas outras...
Download
http://www.4shared.com/rar/PLed471h/westelation-fusion.html
Scan
https://www.virustotal.com/en/file/e6fe9b5b05b8bcbd1928891a0159c02dce783a08661c2096bf9aaf7d3bc13027/analysis/1375810285/
Créditos totais à Lordfireot.
-
Tricoder recebeu reputação de Katiau em [TFS 1.x] AutoLoot SystemSCREENSHOT
http://3.1m.yt/Zwo99Sdx.png
http://4.1m.yt/oG_cwli8u.png
______________________________________________ COMANDOS
!autoloot add, itemId ou name -- Adicionando um item na lista !autoloot remove, itemId or name -- Remover um item da lista !autoloot show -- Mostrar a lista do autoLoot !autoloot clear -- Limpar a lista do autoLoot ______________________________________________ SCRIPT data/global.lua
-- AutoLoot config AUTO_LOOT_MAX_ITEMS = 5 -- Reserved storage AUTOLOOT_STORAGE_START = 10000 AUTOLOOT_STORAGE_END = AUTOLOOT_STORAGE_START + AUTO_LOOT_MAX_ITEMS -- AutoLoot config end talkactions/talkactions.xml
<talkaction words="!autoloot" separator=" " script="autoloot.lua"/> talkactions/scripts/autoloot.lua
function onSay(player, words, param) local split = param:split(",") local action = split[1] if action == "add" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item local size = 0 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if size == AUTO_LOOT_MAX_ITEMS then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The list is full, please remove from the list to make some room.") break end if storage == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." is already in the list.") break end if storage <= 0 then player:setStorageValue(i, itemType:getId()) player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been added to the list.") break end size = size + 1 end elseif action == "remove" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been removed from the list.") player:setStorageValue(i, 0) return false end end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." was not founded in the list.") elseif action == "show" then local text = "-- Auto Loot List --\n" local count = 1 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if storage > 0 then text = string.format("%s%d. %s\n", text, count, ItemType(storage):getName()) count = count + 1 end end if text == "" then text = "Empty" end player:showTextDialog(1950, text, false) elseif action == "clear" then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do player:setStorageValue(i, 0) end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The autoloot list has been cleared.") else player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Use the commands: !autoloot {add, remove, show, clear}") end return false end creaturescripts/creaturescripts.xml
<event type="kill" name="AutoLoot" script="autoloot.lua" /> creaturescripts/scripts/autoloot.lua
local function scanContainer(cid, position) local player = Player(cid) if not player then return end local corpse = Tile(position):getTopDownItem() if not corpse then return end if corpse:getType():isCorpse() and corpse:getAttribute(ITEM_ATTRIBUTE_CORPSEOWNER) == cid then for i = corpse:getSize() - 1, 0, -1 do local containerItem = corpse:getItem(i) if containerItem then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == containerItem:getId() then containerItem:moveTo(player) end end end end end end function onKill(player, target) if not target:isMonster() then return true end addEvent(scanContainer, 100, player:getId(), target:getPosition()) return true end creaturescripts/scripts/login.lua
player:registerEvent("AutoLoot") ______________________________________________ CRÉDITOS
Printer -
Tricoder recebeu reputação de Serpente em Player nao perde nada quando morre.creaturescripts/droploot.lua
function onDeath(player, corpse, killer, mostDamage, unjustified, mostDamage_unjustified) if getPlayerFlagValue(player, PlayerFlag_NotGenerateLoot) or player:getVocation():getId() == VOCATION_NONE then return true end local amulet = player:getSlotItem(CONST_SLOT_NECKLACE) if amulet and amulet.itemid == ITEM_AMULETOFLOSS and not isInArray({SKULL_RED, SKULL_BLACK}, player:getSkull()) then local isPlayer = false if killer:isPlayer() then isPlayer = true else local master = killer:getMaster() if master and master:isPlayer() then isPlayer = true end end if not isPlayer or not player:hasBlessing(6) then player:removeItem(ITEM_AMULETOFLOSS, 1, -1, false) end else for i = CONST_SLOT_HEAD, CONST_SLOT_AMMO do local item = player:getSlotItem(i) if item then if isInArray({SKULL_RED, SKULL_BLACK}, player:getSkull()) or math.random(item:isContainer() and 100 or 1000) <= player:getLossPercent() then if not item:moveTo(corpse) then item:remove() end end end end end if not player:getSlotItem(CONST_SLOT_BACKPACK) then player:addItem(ITEM_BAG, 1, false, CONST_SLOT_BACKPACK) end return true endcreaturescripts.xml <event type="death" name="DropLoot" script="droploot.lua"/>loginplayer:registerEvent("DropLoot") -
Tricoder recebeu reputação de Tyrisfall em Elves huntTamanho: 72 KB.
Categoria: Mapa.
Versão: 10.31
Créditos: Slec
Download: Elves TibiaKing.com.rar
Scan: VirusTotal
Screenshot;
-
Tricoder recebeu reputação de FearWar em (Resolvido)Erro WAR.PHP@flyblade
Salve backup desse e tenta esse wars.php:
https://github.com/gesior/Gesior2012/blob/TFS-0.4_rev_3703%2B/pages/wars.php
-
Tricoder recebeu reputação de hudsonof em TibiaBot NG 8.6 + Crack [COM POTIONS]VERSÃO: 8.60
Introdução
Clássico bot que ainda é usado por muitas pessoas que não possuem tanta facilidade em usar MageBot. Não há milhões de funções como MB, porém, tem os mais utilizados e uteis para você não só upar tranquilamente, como também, conseguir um bom loot.
Utilizo ele quando quero fazer loot ou deixar treinando ml.
Funções
X-Ray Alertas Aimbot Outfit 1 e 2 Reconnect Light Attack Combo Auto Fishing Mana Training Macro Recorder Cave Hunting Cure Poison Mana Restore Rune Maker Self Healing Trade Helper Click Reuse Hotkeys Logout (+)
Instalação
Baixe o arquivo anexado nesse tópico. Após baixar, instale primeiramente o arquivo NG 4.9.7. Depois, instale o Loader.exe na mesma pasta onde o TibiaBOT foi instalado. Mova o arquivo Crack.REG para a pasta do TibiaBOT NG. Agora abra o Crack.REG, clique em "SIM" e em "OK". Por último, abra o Tibia e abra o TibiaBOT como Administrador.
Download: TibiaBOT NG 8.6 TibiaKing.com.rar
Scan: VirusTotal
Senha: Conteúdo do TibiaKing.com
-
Tricoder deu reputação a Pifafa em (Resolvido)Botão para WhatsappNão gostei do seu comentário, não estou pedindo e muito menos mandando estou apenas procurando alguém que tenha um código já para posta. Achei totalmente desnecessário seu comentário e infeliz, eu ao longo dos meus 8 anos de fórum nunca mandei ou argumentei dessa forma rude com alguém, sempre procurei ajuda e auxiliar o pessoal na minha pequena capacidade para tais coisa, visto que sou bem leigo com os ot's.