Files
CHOMPStation2/interface/interface.dm
Erthilo 265dd6e888 TG: 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.
Revision: r3502
Author: 	 elly1...@rocketmail.com
2012-05-06 01:22:29 +01:00

15 lines
295 B
Plaintext

/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