Match - EdgeIY/infiniteyield GitHub Wiki
boolean Match(<string> str1, <string> str2)
Returns true
if str1
contains str2
; otherwise, false
is returned.
--Note: This is just a snippet
["Function"] = function(args,speaker)
if Match(args[1],"Omq") then
notify("Info",args[1].." might be an ODer")
end
end