

add_action("func", ":", 1);


if (query_verb() != ":")
   sscanf(query_verb(), ":%s", first_word);
   say(this_player()->query_name() + " " + first_word + " " + arg + "\n");
 } else {
 say(this_player()->query_name() + " " + arg + "\n");
}


the 1 says that ':' matches, ':bla' matches, ':sadfjlksdjfl' matches, etc.

