//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(var/sub_page = null as null|text)
set name = "wiki"
set desc = "Visit the wiki."
set hidden = 1
var/wikiurl = GLOB.config.wikiurl
if(wikiurl)
if(tgui_alert(usr, "This will open the wiki in your browser. Are you sure?", "Wiki", list("Yes", "No")) != "Yes")
return
var/to_open = wikiurl
if (sub_page)
to_open += sub_page
send_link(src, to_open)
else
to_chat(src, SPAN_WARNING("The wiki URL is not set in the server configuration."))
/client/verb/forum()
set name = "forum"
set desc = "Visit the forum."
set hidden = 1
var/forumurl = GLOB.config.forumurl
if(forumurl)
if(tgui_alert(usr, "This will open the forum in your browser. Are you sure?", "Forum", list("Yes", "No")) != "Yes")
return
send_link(src, forumurl)
else
to_chat(src, SPAN_WARNING("The forum URL is not set in the server configuration."))
return
/client/verb/reportissue()
set name = "report-issue"
set desc = "Report an issue."
set hidden = TRUE
var/githuburl = GLOB.config.githuburl
var/message = "This will open the GitHub issue reporter in your browser. Are you sure?"
if(githuburl)
// We still use alert here because some people were concerned that if someone wanted to report that tgui wasn't working
// then the report issue button being tgui-based would be problematic.
if(alert(src, message, "Report Issue", "Yes", "No") != "Yes")
return
send_link(src, githuburl + "/issues")
else
to_chat(src, SPAN_WARNING("The issue tracker URL is not set in the server configuration."))
return
/client/verb/rules()
set name = "rules"
set desc = "Show Server Rules."
set hidden = 1
var/rulesurl = GLOB.config.rulesurl
if(rulesurl)
if(tgui_alert(usr, "This will open the rules in your browser. Are you sure?", "Rules", list("Yes", "No")) != "Yes")
return
send_link(src, rulesurl)
else
to_chat(src, SPAN_WARNING("The rules URL is not set in the server configuration."))
return
/client/verb/github()
set name = "github"
set desc = "Visit Github"
set hidden = TRUE
var/githuburl = GLOB.config.githuburl
if(githuburl)
if(tgui_alert(src, "This will open the GitHub repository in your browser. Are you sure?", "GitHub", list("Yes","No")) !="Yes")
return
send_link(src, githuburl)
else
to_chat(src, SPAN_WARNING("The GitHub URL is not set in the server configuration."))
return
/client/verb/hotkeys_help()
set name = "hotkeys-help"
set category = "OOC"
var/admin = {"
Admin:
\tF5 = Aghost (admin-ghost)
\tF6 = player-panel-new
\tF7 = admin-pm
\tF8 = Invisimin
"}
var/hotkey_mode = {"
Hotkey-Mode: (hotkey-mode must be on)
\tTAB = toggle hotkey-mode
\ta = left
\ts = down
\td = right
\tw = up
\t, = move-upwards
\t. = move-down
\tq = drop
\te = equip
\tr = throw
\tt = say
\t5 = emote
\tx = swap-hand
\tz = activate held object (or y)
\tj = toggle-aiming-mode
\tf = cycle-intents-left
\tg = cycle-intents-right
\t1 = help-intent
\t2 = disarm-intent
\t3 = grab-intent
\t4 = harm-intent
\tCtrl = drag
\tShift = examine
"}
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
\tF1 = adminhelp
\tF2 = ooc
\tF3 = say
\tF4 = emote
\tDEL = pull
\tINS = cycle-intents-right
\tHOME = drop
\tPGUP = swap-hand
\tPGDN = activate held object
\tEND = throw
"}
var/robot_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
\t5 = emote
\tCtrl = drag
\tShift = examine
"}
var/robot_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
\tF1 = adminhelp
\tF2 = ooc
\tF3 = say
\tF4 = emote
\tDEL = pull
\tINS = toggle intents
\tPGUP = cycle active modules
\tPGDN = activate held object
"}
if(isrobot(src.mob))
to_chat(src, robot_hotkey_mode)
to_chat(src, robot_other)
else
to_chat(src, hotkey_mode)
to_chat(src, other)
if(holder)
to_chat(src, admin)
/client/verb/open_webint()
set name = "open_webint"
set desc = "Visit the web interface."
set hidden = 1
if (GLOB.config.webint_url)
if(tgui_alert(usr, "This will open the Web Interface in your browser. Are you sure?", "Web Interface", list("Yes", "No")) == "No")
return
send_link(src, GLOB.config.webint_url)
else
to_chat(src, SPAN_WARNING("The web interface URL is not set in the server configuration."))
return
/client/verb/open_discord()
set name = "open_discord"
set desc = "Get a link to the Discord server."
set hidden = 1
if (SSdiscord && SSdiscord.active)
if(tgui_alert(usr, "This will open Discord in your browser. Are you sure?", "Discord", list("Yes", "No")) == "No")
var/url_link = SSdiscord.retreive_invite()
if (url_link)
send_link(src, url_link)
else
to_chat(src, SPAN_DANGER("An error occured retreiving the invite."))
else
to_chat(src, SPAN_WARNING("The serverside Discord bot is not set up."))