Ir para conteúdo

Tricoder

Héroi
  • Registro em

  • Última visita

Tudo que Tricoder postou

  1. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Você criou o tópico na área errada, preste atenção. Quando for postar algum script, use o bbcode de code se não o tópico fica meio bagunçado. Apesar de não achar esse post muito útil devido à já vir esse arquivo na pasta, espero que traga mais scripts e tutoriais ao Tibia King!
  2. Não entendi, qual seria o problema?
  3. Ué, tente adicionar outra porta com id diferente.
  4. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Qual a versão do seu TFS?
  5. Tricoder postou uma resposta no tópico em Outros Bots
    local rand auto(0.5*60*1000,14*60*1000) rand = math.random(1,4) if (rand == 1) then face("w") elseif (rand == 2) then face("e") elseif (rand == 3) then face("n") elseif (rand == 4) then face("s") end Créditos: tibiabot-script
  6. Tricoder postou uma resposta no tópico em Outros Bots
    auto(30000,180000) for i=1, math.random(1,10) do eatfood() end Créditos: tibiabot-script
  7. Tricoder postou uma resposta no tópico em Outros Bots
    init start local mother local dist = 4 -- é o mínio de distância que o slime deve estar longe de você, it is the minimum distance the slime must be from you, útil para treinar paladinos local killmother = {dmg = 50, hppc = 40, now = false} -- vai matar a slime mãe se der mais de 50 de dano em você ou se você tiver menos de 40% do hp. setsetting('Hud/DisplaysList/ActiveHotkeys/Enabled','yes')init end auto(100,500) if not mother then if $followed.name == 'Slime' then mother = $followed else listas('Dê Follow a slime mae para começar a treinar') endelse if mother.hppc == 0 then mother = nil killmother.now = false return end local toattack foreach creature m 'sm' do local closest = 7 if m.name == 'Slime' and m ~= mother and m.dist <= dist and m.dist < closest and m.isshootable then closest = m.dist toattack = m end end if not killmother.now then if toattack then listas('Matando um summon de slime (clone)') if $attacked ~= toattack then attack(toattack) wait(500,600) end else listas('Esperando por um summon de slime (clone)') end else listas('Matando a slime mãe') if $attacked ~= mother then attack(mother) wait(500,600) end end endif not killmother.now then foreach newmessage m do if m.type == MSG_STATUSLOG then if m.content:sub(1,8) == 'You lose' then local dmg = tonumber(m.content:token(3)) local length = m.content:len() local name = m.content:sub(length-6,length-1) if name == 'slime' and dmg > killmother.dmg then killmother.now = true end end end end if $hppc < killmother.hppc then killmother.now = true end end Créditos: tibiabot-script
  8. Tricoder postou uma resposta no tópico em Outros Bots
    init start local r = 4 -- Range. local safelist = {'Bubble', 'Eternal Oblivion'} -- O bot VAI dar KS nesses players. Adicione mais se quiser. table.insert(safelist, $name) -- Não mexa aqui. init end auto(100) local ppos = {} foreach creature p 'pf' do if not table.find(safelist, p.name) then table.insert(ppos, {x = p.posx, y = p.posy}) end end foreach creature c 'mf' do local ignore = false if c.id ~= $mattacker.id then for i = 1, #ppos do local difx, dify = ppos[i].x - c.posx, ppos[i].y - c.posy if math.abs(difx) <= r and math.abs(dify) <= r then ignore = true if c.ignored == false then ignorecreature(c.id) end break end end end if ignore == false and c.ignored == true then ignorecreature(c.id, true) end end if $attacked.id ~= 0 then if $attacked.ignored then stopattack() end end Créditos: tibiabot-script
  9. auto(200) if $lhand.id ~= rpid and itemcount(rpid) == 0 then equipitem(ssid, 'lhand') end Créditos: tibiabot-script
  10. Tricoder postou uma resposta no tópico em Outros Bots
    init start local wppos = {x = $wptx, y = $wpty, z = $wptz} -- Não mude local wppid = 'Worm' -- Worm, Gold Coin etc.. local wppbp = 'Yellow Backpack' -- Backpack em que se encontra esses items init end auto(100) moveitems(wppid, ground(wpposx,wpposy,wppoz), 'wppbp', 1) Créditos: tibiabot-script
  11. Tricoder postou uma resposta no tópico em Outros Bots
    auto(180000,188000) if not $connected then reconnect()wait(7000,9500) end Créditos: tibiabot-script
  12. Tricoder postou uma resposta no tópico em Outros Bots
    init start local softequip,softunequip local softid = 6529 local softuseid = 3549 local wornsoftid = 6530 local bootsid = 'boots of haste' local alertifnosoft = true local soundfile = 'monster.wav' if type(bootsid) == 'string' then bootsid = itemid(bootsid) end init endif softequip == nil then softequip = math.random(65,80) --porcentagem de mana pra por a soft boots endif softunequip == nil then softunequip = math.random(85,95) --porcentagem de mana pra equipar a boh denovo end auto(100) listas('dontlist') if ($mppc <= softequip or ($feet.id == wornsoftid and itemcount(softid) > 0)) and not $pzone and $feet.id ~= softuseid then equipitem(softid,'feet','backpack') softequip = nil wait(500,1000) elseif ($mppc >= softunequip or ($feet.id == wornsoftid and itemcount(softid) == 0) or $pzone) and $feet.id ~= bootsid then equipitem(bootsid,'feet','backpack') softunequip = nil wait(500,1000) end Créditos: tibiabot-script
  13. Tricoder postou uma resposta no tópico em Outros Bots
    init start local ringequip,ringunequip local ringid = 3052 --life ring local ringuseid = 3089 --ring que você está usando init end if ringequip == nil then ringequip = math.random(60,80) end if ringunequip == nil then ringunequip = math.random(85,95) end auto(100) listas('dontlist') if ($mppc <= ringequip) and not $pzone and $finger.id ~= ringuseid then equipitem(ringid,'finger','backpack') ringequip = nil wait(500,1000) elseif (($mppc >= ringunequip) or $pzone) and $finger.id == ringuseid then moveitems(ringuseid,'backpack','finger') ringunequip = nil wait(500,1000) end Créditos: tibiabot-script
  14. levitate('w','up') --> will turn to west and then levitate up levitate('s','down') --> will turn to south and then levitate down levitate('e','up') --> will turn to east and then levitate up levitate('n','down') --> will turn to north and then levitate down Créditos: tibiabot-script
  15. init start local followCursor = false -- Seguir o cursor? (false = nao, true = sim) local displayColor = 0xFFFFFF setfontstyle("Tahoma", 10, displayColor) setfontweight(150) setjustify("left") setposition($worldwin.left+6, $worldwin.top+20)init end auto(20) if followCursor == true then setposition($cursor.x+7, $cursor.y-7)end local itemID = cursorinfo().idif itemID ~= 0 then addtext('ID: '..itemID, 0, 0) end Créditos: tibiabot-script
  16. Tricoder postou uma resposta no tópico em Playground (Off-topic)
    que nojo
  17. O que colocou em EdronCost?
  18. http://www.tibiaking.com/forum/topic/2187-tutorial-explicando-e-criando-vocações/ Sobre o erro, não entendi. Qual é o problema? Se possível, poste print, por favor. Utilize imgur.com
  19. Valor do Script: US$ 7,00 | TibiaKing: Download Grátis Informação do Script: Level Recomendado: 110+ Dificuldade: Fácil Exp/h: 180k à 320k Loot/h: 0k à 20k Versão: 1.0.2 Necessário: Aceitar a missão 8 da quest The New Frontier Quest Monstro(s): Lizard High Guard + Lizard Zaogum + Lizard Legionnaire + Lizard Dragon Priest + Killer Caiman Características do Script Opção de Caçar no North Opção de UE Opção de usar Strong Strike Opção de Atalho Opção de Haste Refil da Soft Boots Loot GP ( ativado / desativado ) Montaria Automática Depositer Reabrir Backpack Configuração da Supply Banco Seguro Área Especial HUDs Hotkey(s) Exuri Frigo Exura Exura Gran Exura Vita Strong Mana Potion / Great Mana Potion Avalanche Rune ( on crosshair ) Exori Gran Vis Exevo Gran Mas Vis ( opcional ) Sudden Death Rune ( on Target ) Exani Hur "Up Exani Hur "Down Backpack(s) Localização DOWNLOAD TIBIABRBOT - MAGE Muggy Plains AVA by CroiX v1.0.2..xml
  20. Valor do Script: R$ 20,00 | TibiaKing: Download Grátis Informação Testado em: 118MS Dificuldade: 110+ Exp/h: 150k à 250k Loot/h: -5k à 30k Necessário: The New Frontier Quest ( missão 8 ) Monstro(s): Lizard Legionnaire + Lizard Dragon Priest + Lizard High Guard + Draken Warmaster Hotkey(s) Exura Vita Strong Mana Potion Exori Frigo Exura Gran Exura Exori Gran Vis Avalanche Rune (on crosshair) Exevo Gran Mas Vis Download TIBIABRBOT - M 110+ Midnight - Isle of strife.xml
  21. Valor do Script: US$ 7,00 | Tibia King: Download Grátis Informação do Script Level Recomendado: 100+ Dificuldade: Médio para Dificil Exp/h: 180k à 450k Loot/h: -25k à 15k Versão: 1.2 Monstro(s): Frost Dragon + Frost Dragon Hatchiling Necessário: Glacier Set + Pshycal Set ( Recomendado ) Onde Iniciar: Deport de Svarground Características do Script Usar Strong Strike ( Sim / Não ) Usar UE ( Sim / Não ) SDs Pegar Gold ( Sim / Não ) Opção de Andar Cada Respaw disponível Refil da Soft Boots Respaw HardCore PVP Seguro Banco Seguro Montaria Automática Reabrir Backpack Opção de Escolher as Supply HUD Muito mais... Hotkey(s) Exura Exura Gran Exura Vita Strong/Great Mana Potion Exori Vis Exevo Gran Mas Vis Exevo Mas Vis Rope Pick (opcional) Backpack(s) Localização Download TIBIABRBOT - [Mage] Frost Dragons West. V1.2.xml
  22. NOVIDADES Sistema de Loteria [100%] Sistema de Cassino [100%] Sistema de Reborn [100%] Sistema de Emoticon [100%] Sistema de Skills por stages [100%] Trade System [100%] Party System [100%] Transformações [100%] +300 monstros [100%] Max skills e Max Magic Level 90 [100%] Missões e sagas [100%] Esferas do dragão [100%] Novos Monstros [100%] Novas sprites [100%] Novas quests [100%] Novas talkactions [100%] Premium Acess [100%] Double exp pra premium [100%] Bonus drop [100%] Bonus spells [100%] _________________________________________ INFORMAÇÕES A pasta do servidor está acompanhada com: Website [100%] Mapa Editor [100%] Client [100%] Sources [100%] _________________________________________ SCREENSHOTS In-game Mapa Website _________________________________________ Download Tamanho do arquivo: 81,6 MB. Clique aqui Scan https://www.virustotal.com/pl/file/b6b888876ad5c10b87723b85abc02328137e103f43c5748159658ee7d56c6278/analysis/1438891990/ _________________________________________ Créditos Ri Ku Ru Mistrz Azuu elora1992 Royalz Twórca DBViolent Oskarowi Placek
  23. http://www.tibiaking.com/forum/topic/61908-erro-no-distro/?do=findComment&comment=358149
  24. init start -- local SCRIPT_VERSION = '1.0.0' local goldIds = {itemid('gold coin'), itemid('platinum coin')} init end auto(200, 300) local cont, item for i = 0, 15 do cont = getcontainer(i) if cont.isopen then for j = 0, cont.itemcount do item = cont.item[j] if item.count == 100 and table.find(goldIds, item.id) then useitem(item.id, i, j) waitping() end end end end Créditos: windbotbr
  25. Tricoder postou uma resposta no tópico em WindBot
    init start -- local SCRIPT_VERSION = '1.1.1' local charList = { {'account1', 'password1', 'char1', 'skill1'}, {'account2', 'password2', 'char2', 'skill2'}, {'account3', 'password3', 'char3', 'skill3'}, {'account4', 'password4', 'char4', 'skill4'}, {'account5', 'password5', 'char5', 'skill5'}, {'account6', 'password6', 'char6', 'skill6'}, {'account7', 'password7', 'char7', 'skill7'} } -- DO NOT EDIT BELOW THIS LINE -- local skills = {'sword', 'axe', 'club', 'distance', 'magic'} local randTime = math.random(-110, 10) for i, v in ipairs(charList) do table.insert(charList[i], $botdb:getvalue('offtrainlast', v[3]) or 0) table.insert(charList[i], $botdb:getvalue('offtraintime', v[3]) or 0) end init end auto(10000, 30000) for _, v in ipairs(charList) do if (os.time() - v[5]) / 60 > v[6] + (12 * 60) + randTime then randTime = math.random(-110, 10) connect(v[1], v[2], v[3]) waitping() v[5] = os.time() v[6] = $offlinetraining $botdb:setvalue('offtrainlast', v[3], v[5]) $botdb:setvalue('offtraintime', v[3], v[6]) if $offlinetraining > 10 then local skill = v[4] if skill == 'auto' then if $voc == VOC_DRUID or $voc == VOC_SORCERER then skill = 'magic' elseif $voc == VOC_PALADIN then skill = 'distance' else if $axe > $sword and $axe > $club then skill = 'axe' elseif $sword > $axe and $sword > $club then skill = 'sword' else skill = 'club' end end end local id = 16197 + table.find(skills, skill) reachgrounditem(id) wait(200, 500) useitem(id, 'ground') else logout() end wait(1000, 1500) press('[ESC]') wait(1000, 1500) end endEdite o charList com as informações do seu char/conta. Créditos: windbotbr

Informação Importante

Confirmação de Termo