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.
1.2K
Find Chat in channel #28
280b | 9 lines.
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
Ads