if you want to timeout someone because of too many messages, or also because of their first long message, change:

Code:
from:
if (%msg_count >= %max.messages) {
to:
if ((%msg_count >= %max.messages) || ($len($eventparms) >= 60)) {


$eventparms works in v7.53 or higher. For earlier versions, you would need to call this alias like $flood_counter($1-) instead of $flood_counter then replace $eventparms with $1-

I'd find myself timed out in your channel, because 60 seems too short.