Switch to edit mode.
Name(s): commands_cmd1: commands = {}
2: for x in ($object_utils:all_verbs(this))
3: if (length(x) > 4 && $object_utils:has_callable_verb(this, x) && x[length(x) - 3..length(x)] == "_cmd")
4: commands = {@commands, x[1..length(x) - 4]}
5: endif
6: endfor
7: player:tell({"Valid commands are:", @$string_utils:columnize(commands, 4)})
8: "Last modified by Dax (#789) on Tue Jun 2 14:21:32 1998 EDT."