Find Chat in channel
#28
local tChannel= getChannelId("World Chat")
local find_msg = "sell" -- lower case
onTalk(function(name, level, mode, text, channelId, pos)
if channelId == tChannel then
if text:lower():find(find_msg) then
-- Action Code here
end
end
end)
- remove | + add
26 May 2021