Is there any friend who knows how do i make this code to catch also word with wildcards?? (ex. iswm)
Like *bad* or *dam* etc ..and not only the all word ???
this is the code :
on @*:TEXT:*:#: {
if ($nick !isop #) {
var %i = 0
while (%i < $numtok($read(swear.txt,1),32)) {
inc %i
var %current.word = $gettok($read(swear.txt,1),%i,32) {
if ($istok($strip($1-),%current.word,32) == $true) {
..and follows the kicks

thank you