Suggestions
Simple Loot Channel
#114
This displays loot in a separate tab.
--[[
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 useLoot = macro(100000, "Loot Channel", function() end)
local tabName = "Loot"
local console = modules.game_console
onTextMessage(function(mode, text)
if mode ~= 29 then return end
if useLoot.isOff() then return end
if not text:find("Loot of") then return end
local tab = console.getTab(tabName) or console.addTab(tabName, true)
console.addText(text, { color = '#00EB00' }, tabName, "")
end)
17 Oct 2023