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.
1K
Simple Loot Channel #114
This displays loot in a separate tab.
420b | 12 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 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
Ads