Originally Posted By: coda2
All I really need in the end is a setup where if someone says (rock) as their first word it won't do anything, yet if they say it anywhere else or something else first it will do what I set it up to do.
Code:
var %a = 1, %x = (rock) rock
while ($gettok(%x,%a,32)) {
if (* $+ $+(,(rock)) $+ * !iswm $strip($1-)) {
;DO NOTHING
return
}
;WHAT YOU SET OUT TO DO
return
inc %a
}

Last edited by Tomao; 20/11/12 12:00 AM.