auto 200 dontlist | foreach 'newmessages' $frag if [$frag.content ? 'the murder of'] {set $fragcount [$fragcount+1] | if [$fragcount > 8] {say !remover} | wait 1000 | {useitem 1234}
!remover
command.local m = macro(1000, "Anti RS", function() end)
local frags = 0
onTextMessage(function(mode, text)
if not m.isOn() then return end
if not text:lower():find("warning! the murder of") then return end
info(text)
frags = frags + 1
if frags > 8 then
say("!remover")
g_game.use(1234)
end
end)