// Administrative functions. + reload{weight=10000} * eq => Reloading brain... reload - {@botmaster only} + force reload - Reloading. reload + shutdown{weight=10000} * eq => Shutting down... shutdown - {@botmaster only} + botmaster only - This command can only be used by my botmaster. != > object reload perl my ($rs) = @_; # Reload the replies directory. $rs->loadDirectory ("./replies"); $rs->setVariable (master => $main::master); $rs->sortReplies(); return "success!"; < object > object shutdown perl my ($rs) = @_; # Shut down. exit(0); < object