/client/verb/wiki() set name = "wiki" set desc = "Visit the wiki." set hidden = 1 if( config.wikiurl ) if(alert("This will open the wiki in your browser. Are you sure?",,"Yes","No")=="No") return src << link(config.wikiurl) else src << "\red The wiki URL is not set in the server configuration." return /client/verb/forum() set name = "forum" set desc = "Visit the forum." set hidden = 1 if( config.forumurl ) if(alert("This will open the forum in your browser. Are you sure?",,"Yes","No")=="No") return src << link(config.forumurl) else src << "\red The forum URL is not set in the server configuration." return #define RULES_FILE "config/rules.html" /client/verb/rules() set name = "Rules" set desc = "Show Server Rules." set hidden = 1 src << browse(file(RULES_FILE), "window=rules;size=480x320") #undef RULES_FILE