Files
CHOMPStation2/code/game/gamemodes/extended/extended.dm
petethegoat@gmail.com 9c7bc90ee3 removed asteroids
added apron lying sprite

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3453 316c924e-a436-60f5-8080-3fe189b3f50e
2012-04-14 00:51:55 +00:00

22 lines
631 B
Plaintext

/datum/game_mode/extended
name = "extended"
config_tag = "extended"
required_players = 0
uplink_welcome = "Syndicate Uplink Console:"
uplink_uses = 10
var/const/waittime_l = 600 //lower bound on time before intercept arrives (in tenths of seconds)
var/const/waittime_h = 1800
/datum/game_mode/announce()
world << "<B>The current game mode is - Extended Role-Playing!</B>"
world << "<B>Just have fun and role-play!</B>"
/datum/game_mode/extended/pre_setup()
return 1
/datum/game_mode/extended/post_setup()
spawn (rand(waittime_l, waittime_h)) // To reduce extended meta.
send_intercept()
..()