//Please use mob or src (not usr) in these procs. This way they can be called in the same fashion as procs. /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 << "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 << "The forum URL is not set in the server configuration." return /client/verb/rules() set name = "Rules" set desc = "Show Server Rules." set hidden = 1 if(config.rulesurl) if(alert("This will open the rules in your browser. Are you sure?",,"Yes","No")=="No") return src << link(config.rulesurl) else src << "The rules URL is not set in the server configuration." return /client/verb/github() set name = "Github" set desc = "Visit Github" set hidden = 1 if(config.githuburl) if(alert("This will open the Github repository in your browser. Are you sure?",,"Yes","No")=="No") return src << link(config.githuburl) else src << "The Github URL is not set in the server configuration." return /client/verb/reportissue() set name = "Report issue" set desc = "Report an issue" set hidden = 1 if(config.githuburl) if(alert("This will open the Github issue reporter in your browser. Are you sure?",,"Yes","No")=="No") return src << link("[config.githuburl]/issues/new") else src << "The Github URL is not set in the server configuration." return /client/verb/hotkeys_help() set name = "hotkeys-help" set category = "OOC" var/adminhotkeys = {" Admin: \tF5 = Aghost (admin-ghost) \tF6 = player-panel-new \tF7 = admin-pm \tF8 = Invisimin "} mob.hotkey_help() if(holder) src << adminhotkeys /mob/proc/hotkey_help() var/hotkey_mode = {" Hotkey-Mode: (hotkey-mode must be on) \tTAB = toggle hotkey-mode \ta = left \ts = down \td = right \tw = up \tq = drop \te = equip \tr = throw \tt = say \tx = swap-hand \tz = activate held object (or y) \tf = cycle-intents-left \tg = cycle-intents-right \t1 = help-intent \t2 = disarm-intent \t3 = grab-intent \t4 = harm-intent "} var/other = {" Any-Mode: (hotkey doesn't need to be on) \tCtrl+a = left \tCtrl+s = down \tCtrl+d = right \tCtrl+w = up \tCtrl+q = drop \tCtrl+e = equip \tCtrl+r = throw \tCtrl+x = swap-hand \tCtrl+z = activate held object (or Ctrl+y) \tCtrl+f = cycle-intents-left \tCtrl+g = cycle-intents-right \tCtrl+1 = help-intent \tCtrl+2 = disarm-intent \tCtrl+3 = grab-intent \tCtrl+4 = harm-intent \tDEL = pull \tINS = cycle-intents-right \tHOME = drop \tPGUP = swap-hand \tPGDN = activate held object \tEND = throw "} src << hotkey_mode src << other /mob/living/silicon/robot/hotkey_help() var/hotkey_mode = {" Hotkey-Mode: (hotkey-mode must be on) \tTAB = toggle hotkey-mode \ta = left \ts = down \td = right \tw = up \tq = unequip active module \tt = say \tx = cycle active modules \tz = activate held object (or y) \tf = cycle-intents-left \tg = cycle-intents-right \t1 = activate module 1 \t2 = activate module 2 \t3 = activate module 3 \t4 = toggle intents "} var/other = {" Any-Mode: (hotkey doesn't need to be on) \tCtrl+a = left \tCtrl+s = down \tCtrl+d = right \tCtrl+w = up \tCtrl+q = unequip active module \tCtrl+x = cycle active modules \tCtrl+z = activate held object (or Ctrl+y) \tCtrl+f = cycle-intents-left \tCtrl+g = cycle-intents-right \tCtrl+1 = activate module 1 \tCtrl+2 = activate module 2 \tCtrl+3 = activate module 3 \tCtrl+4 = toggle intents \tDEL = pull \tINS = toggle intents \tPGUP = cycle active modules \tPGDN = activate held object "} src << hotkey_mode src << other