mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
19 lines
563 B
Plaintext
19 lines
563 B
Plaintext
/datum/game_mode/extended
|
|
name = "extended"
|
|
config_tag = "extended"
|
|
required_players = 0
|
|
|
|
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()
|
|
..() |