[Package Index | Mudlib Index | Effect Index]
inherit "/cmds/report_base"; void create() { ::create(); set_error_type("TYPO"); } /* create() */
.
int bug_misc(string which)
int bug_special(string which)
int bug_spell_file(string file, string name)This entry point is used to erroring spells without specifically saying which one.
int bug_web(string url)This entry point is used to erroring spells without specifically saying which one.
int query_use_last_error()This method returns the currently set value of the last error flag.
void set_error_type(string type)This sets the error type name. The error type should be one of "TYPO", "BUG", "IDEA".
void set_use_last_error(int error)This sets the use_last_error flag. If this flag is set to a non-zero value then the last runtime error stored on the player object will be attached to the error report.
class errors { int type; string file; string error; string extra; string env; }