You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to_chat(src, "<span class='danger'>The wiki URL is not set in the server configuration.</span>")
return
/client/verb/forum()
set name ="forum"
set desc ="Visit the forum."
set hidden =1
var/forumurl=CONFIG_GET(string/forumurl)
if(forumurl)
if(alert("This will open the forum in your browser. Are you sure?",,"Yes","No")!="Yes")
return
src<< link(forumurl)
else
to_chat(src, "<span class='danger'>The forum URL is not set in the server configuration.</span>")
return
/client/verb/demoview(roundnumber as num)
set name ="demoview"
set desc ="Enter Round Number you wish to see the replay of"
set hidden =1
var/roundurl=CONFIG_GET(string/demourl)
if(roundnumber <26360)
roundnumber =26360
if(roundurl)
if(!roundnumber)
roundnumber = text2num(GLOB.round_id-1)
if(alert("This will open the demo in your browser. Are you sure?",,"Yes","No")!="Yes")
return
src<< link("[roundurl][roundnumber]")
else
to_chat(src, "<span class='danger'>The demo URL is not set in the server configuration.</span>")
/client/verb/rules()
set name ="rules"
set desc ="Show Server Rules."
set hidden =1
var/rulesurl=CONFIG_GET(string/rulesurl)
if(rulesurl)
if(alert("This will open the rules in your browser. Are you sure?",,"Yes","No")!="Yes")
return
src<< link(rulesurl)
else
to_chat(src, "<span class='danger'>The rules URL is not set in the server configuration.</span>")
return
/client/verb/github()
set name ="github"
set desc ="Visit Github"
set hidden =1
var/githuburl=CONFIG_GET(string/githuburl)
if(githuburl)
if(alert("This will open the Github repository in your browser. Are you sure?",,"Yes","No")!="Yes")
return
src<< link(githuburl)
else
to_chat(src, "<span class='danger'>The Github URL is not set in the server configuration.</span>")
return
/client/verb/reportissue()
set name ="report-issue"
set desc ="Report an issue"
set hidden =1
var/githuburl=CONFIG_GET(string/githuburl)
if(githuburl)
var/message="This will open the Github issue reporter in your browser. Are you sure?"
if(GLOB.revdata.testmerge.len)
message +="<br>The following experimental changes are active and are probably the cause of any new or sudden issues you may experience. If possible, please try to find a specific thread for your issue instead of posting to the general issue tracker:<br>"