If I understood the matter correctly, then yes smile
Code:
on @*:action:*:#: {
 inc $+(%,action,$nick,$chan)
 if ($eval($+(%,action,$nick,$chan),2) < 2) { .notice $nick Please do not use actions (the /me command) in here. Thank you. }
 else { kick # $nick You were warned to not use actions. | unset $+(%,action,$nick,$chan) }
}
This should warn them in the first couple of times. After that, it kicks them. If you would like to have a limit for the actions (Eg: 2 in 30 minutes) you can add -uN between the inc and the $+(%,action,$nick,$chan) part, replacing N for the time in seconds.

I hope this can help smile
Zyzzyx.

Last edited by Zyzzyx26; 02/10/04 10:55 PM.