Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
3.2K
Suggestions
Simple Loot Channel | 17/10/23 | 1.4K
Container Config | 23/11/21 | 6.9K
vBot item loot list | 11/11/21 | 2.5K
CaveBot/TargetBot Hotkey | 01/02/24 | 1.1K
BotServer Node.js | 19/09/24 | 364
Autoloot on Look #67
401b | 10 lines.
--[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
]]--
local doAutoLootLook = macro(5000, "Auto Loot on Look", "F1",  function() end)
onTextMessage(function(mode, text)
    if mode == 20 and text:find("You see") and doAutoLootLook:isOn() then
        local regex = [[You see (?:an|a)([a-z A-Z]*).]]
        local data = regexMatch(text, regex)[1]
        if data and data[2] then
            say('!autoloot add, ' ..data[2]:trim())
        end
    end
end)

08 Nov 2021
Ads