mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Adds a forum and wiki button to the game interface.
Set the urls within config.txt. Both buttons do nothing by default, you have to set the urls yourself. Removed two unused txt files that I forgot to remove. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3502 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
15
interface/interface.dm
Normal file
15
interface/interface.dm
Normal file
@@ -0,0 +1,15 @@
|
||||
/client/verb/wiki()
|
||||
set name = "wiki"
|
||||
set desc = "Visit the wiki."
|
||||
set hidden = 1
|
||||
if( config.wikiurl )
|
||||
src << link(config.wikiurl)
|
||||
return
|
||||
|
||||
/client/verb/forum()
|
||||
set name = "forum"
|
||||
set desc = "Visit the forum."
|
||||
set hidden = 1
|
||||
if( config.forumurl )
|
||||
src << link(config.forumurl)
|
||||
return
|
||||
Reference in New Issue
Block a user