Ir para conteúdo
  • Cadastre-se

Pesquisar na Comunidade

Mostrando resultados para as tags ''HOTKEYS/ACTIONS''.

  • Pesquisar por Tags

    Digite tags separadas por vírgulas
  • Pesquisar por Autor

Tipo de Conteúdo


Fóruns

  • Portal Tibiaking
    • Portal
  • Otserv
    • The Forgotten Server
    • Criação de Ots
    • Ferramentas OpenTibia
    • Linguagens de Programação
    • Mapas
    • Websites
    • Gráficos e Design
  • Otserv Tibia & Derivados
  • Tibia e Bots
    • Tibia
    • Bots & Macro
  • Diversos
    • Divulgações
    • Playground (Off-topic)

Calendários

  • Calendário Oficial
  • Calendário de OTServs
  • Calendários Diversos

Grupos de Produtos

  • Anúncios no Topo
  • Anúncios nas Assinaturas
  • Anúncios nos Tópicos
  • Outros Anúncios

Encontrar resultados em...

Encontrar resultados que contenham...


Data de Criação

  • Início

    FIM


Data de Atualização

  • Início

    FIM


Filtrar pelo número de...

Data de Registro

  • Início

    FIM


Grupo


Localização


Meu personagem


OTServ favorito


Bot preferido


Interesses

  1. local ItemToBuy = 'Brown mushroom' --Item to buy local AmountToBuy = 100 --Amount to buy local MaxPrice = 15 --Wont buy anything more expensive than this local ItemBP = 'Backpack of Holding' --Backpack where to move item setsettings("Settings\\Input\\OpenMenuPolicy", "Do nothing") setsettings("Settings\\CaveBot\\Settings\\OpenNextBp", "no") reachgrounditem("depot") wait(1500,2000) openitem("depot") wait(1500,2000) useitem(12903,"locker") wait(1500, 2000) buyitemmarket(ItemToBuy, (AmountToBuy-itemcount(ItemToBuy)), MaxPrice) setsettings("Settings\\Input\\OpenMenuPolicy", "Confirm if cavebotti
  2. init start -- local SCRIPT_VERSION = '1.0.1' local alerts = { { name = 'Player on Screen', sound = 'playeronscreen.wav', playSound = false, pauseBot = false, logout = false, safelist = {'Bubble', 'Cachero'} }, { name = 'Player Attacking', sound = 'playerattacking.wav', playSound = false, pauseBot = false, logout = false, safelist = {'Bubble', 'Cachero'} }, { name = 'Monster Attacking', sound = 'monsterattacking.wav', playSound = false, pauseBot = false, logout = false, safelist = {'Rat', 'Bat'} }, {
  3. local serverlog_lines = getnewmessages("Server Log") local serverlog_q = serverlog_lines.count - 1 for i = 0, serverlog_q do if (serverlog_lines[serverlog_q - i].text:find("due to an attack by a stalker.")) and paround(7,true) == 0 and maround(3,false,"Stalker") == 0 and cancast("exori mas") then cast("exori mas") end end
  4. if $cavebot then setsetting('Cavebot/Enabled', 'no') else setsetting('Cavebot/Enabled', 'yes') end Créditos: windbotbr
  5. init start -- local SCRIPT_VERSION = '1.1.0' -- The bot will open these backpacks, in this order. The first item is the -- name of the backpack, the second the location and the third is whether -- it should be open as new, which defaults to true. local backpacks = { {'Backpack of Holding', 'back'}, {'Dragon Backpack' , '0' }, {'Expedition Backpack', '1' , false}, {'Brocade Backpack' , '1' }, {'Brown Bag' , '0' }, } local serverSaveWait = {15, 20} -- Wait time on server save, in minutes local nextTry = $timems init end auto(100) if not $connected and
  6. init start local Config = { SafeList = {"Bubble", "Eternal Oblivion"}, MinLevel = 10, IgnoreMonsters = false, LogText = true, UseDatabase = false, } -- DO NOT EDIT BELOW -- local Responder = { MessageInfo = {}, Timer = os.time(), } Responder.Ignored = $chardb:getvalue('AUTO_RESPONDER', 'IgnoredGuys') if Config.UseDatabase and Responder.Ignored and Responder.Ignored ~= '{}' then Responder.Ignored = Responder.Ignored:totable() else Responder.Ignored = {} end Responder.SpeechWords = { { k = {"spanish?", "spanish ?", "span?", "spanol?", "spanol?", "spanol
  7. init start local Monsters = {"Swampling", "Snake", "Marsh Stalker", "Water Buffalo", "Salamander", "Emerald Damselfly"} local Players = { Consider = true, Distance = 10, FloorDifference = 1, SafeList = {"Bubble", "Eternal Oblivion"}, } local Spells = { {Name = "exori gran", Amount = 4}, {Name = "exori", Amount = 3}, {Name = "exori min", Amount = 2}, {Name = "exori ico", Hppc = 10}, {Name = "exori hur", Hppc = 10}, {Name = "utito tempo", Amount = 5}, } local SpecialAreas = { -- {min x, max x, min y, max y, z} } local UseTargetState = false -- DO NOT CHA
  8. init start -- local SCRIPT_VERSION = '1.0.1' local filename = 'Loot - ' .. $name .. '.txt' local hideEmpty = false -- DO NOT EDIT BELOW THIS LINE -- init end auto(1000) local handler = nil foreach newmessage m do if m.type == MSG_INFO and not (hideEmpty and m.content:find('nothing')) then if handler == nil then handler = io.open(filename, 'a+') end handler:write(os.date('%H:%M') .. ' ' .. m.content .. '\n') end end if handler ~= nil then handler:close() end Créditos: windbotbr
  9. init start local lastStand = $standtime local randTime = math.random(300000, 600000) init end auto(100) if $standtime < lastStand then lastStand = $standtime end if $standtime - lastStand > randTime then local dirs = {'n', 'e', 's', 'w'} -- Makes sure it's random and not the same we're facing right now table.remove(dirs, table.find(dirs, $self.dir)) turn(dirs[math.random(1, 3)]) waitping() lastStand = $standtime randTime = math.random(300000, 600000) end Créditos: windbotbr
  10. cast('exura sio "' .. $name) Créditos: windbotbr
  11. if $vocation == 'druid' then cast('exura sio "' .. $name) wait(300, 500) elseif $vocation == 'sorcerer' then cast('exura vita') wait(300, 500) end Créditos: windbotbr
  12. if $voc == 2 then cast('exura ico') wait(300, 500) elseif $voc == 2 then cast('exura') wait(300, 500) end Créditos: windbotbr
  13. auto(200) if $maxhp-$hp > 150 then cast('exura vita') wait(300, 500) end Créditos: windbotbr
  14. auto(200) if $maxhp-$hp > 140 then cast('exura San') wait(300, 500) end Créditos: windbotbr
  15. auto(200) if $maxhp-$hp > 100 then cast('exura ico') wait(300, 500) end Créditos: windbotbr
  16. auto(200) if $maxhp-$hp > 170 then cast('exura gran ico') wait(300, 500) end Créditos: windbotbr
  17. auto(200) if $maxhp-$hp > 180 then cast('exura gran san') wait(300, 500) end Créditos: windbotbr
  18. auto(200) if $hppc < 60 then cast('exura san') wait(300, 500) end Créditos: windbotbr
  19. auto(200) if $hp < 50 and $mp >= 20 then cast('exura') wait(300, 500) end Créditos: windbotbr
  20. auto(200) if $hp < 40 and $mp >= 70 then cast('exura gran') wait(300, 500) end Créditos: windbotbr
  21. auto(200) if $hp < 200 and $mp >= 160 then cast('exura san') wait(300, 500) end Créditos: windbotbr
  22. auto(200) if $hp < 150 and $mp >= 210 then cast('exura gran san') wait(300, 500) end Créditos: windbotbr
  23. auto(200) if $hp < 120 and $mp >= 40 then cast('exura ico') wait(300, 500) end Créditos: windbotbr
  24. auto(200) if $hp < 400 and $mp >= 200 then cast('exura gran ico') wait(300, 500) end Créditos: windbotbr
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo