30d @verb #1180:"@todo" any none none rxdo #9633 @program #1180:"@todo" any none none if (!args) this:show_todo_list() return endif if (!$string_utils:is_numeric(args[1])) if (args[1] != "add") player:tell(this.todo_usage) return else this:add_todo_item() endif else if (toint(args[1]) > this.todo_items) player:tell("The item number you entered is too high.") return endif if (length(args) == 2) if (args[2] == "del") this:del_todo_item(toint(args[1])) elseif (args[2] == "edit") this:edit_todo_item(toint(args[1])) else player:tell(this.todo_usage) endif else this:show_todo_list(toint(args[1])) endif endif "Last modified by Dax (#789) on Tue May 3 14:11:56 2005 MDT." . 0