Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Hi, I am using the LEM relay tells, and in Project Lazarus it is triggered by my pet "tell from Kabarn: Attacking a giant scorpion Master". There's no option to ignore pet messages in alt-o filters
so am I just stuck with this?
#1# tells you, '#2#'
local mq = require('mq')
local function event_handler(line, name, message)
local counter = 0
mq.cmdf('/dgt all Tell from %s: %s', name, message)
repeat
mq.cmd('/beep')
counter = counter + 1
until (counter > 2)
end
return {eventfunc=event_handler}
The chat options are different for Live and Project Lazarus. Specifically, there's no option to filter pet responses in Project Laz, but interestingly, you can't filter them in Live either. But...I’d just put a if then statement and exclude your pet name. Or use mqfilter
Nice solution! Thanks.you could
Code:local petCheck = string.format("pet =\"%s\"", who) if (mq.TLO.SpawnCount(petCheck ') ~= 0) then -- its a pet end
where who is the speakers name pulled out from the event
For naming pet. Hail it and select one of the options from there for a renameThe chat options are different for Live and Project Lazarus. Specifically, there's no option to filter pet responses in Project Laz, but interestingly, you can't filter them in Live either. But...
Live: Zober told you, `Attacking a cave rat master.'
PL: Kabarn tells you, 'Attacking greater skeleton master.'
This is why the LEM entry does not beep for pet messages on Live.
I'll find out if there's a way to name your pet in Project Laz, if so that's the way to go (exclude pet).
