Files
CHOMPStation2/code/game/gamemodes/sandbox/sandbox.dm
panurgomatic fad29b3a83 - Something like a global map for extended and sandbox gamemodes. Explore space, blow up the asteroids, collect resources, build your own station. WIP
- Exosuit object. Patrially working. WIP.
- Disease transmission on touch
- Various minor changes.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@386 316c924e-a436-60f5-8080-3fe189b3f50e
2010-11-09 03:18:25 +00:00

19 lines
477 B
Plaintext

/datum/game_mode/sandbox
name = "sandbox"
config_tag = "sandbox"
/datum/game_mode/sandbox/announce()
world << "<B>The current game mode is - Sandbox!</B>"
world << "<B>Build your own station with the sandbox-panel command!</B>"
/datum/game_mode/sandbox/pre_setup()
for(var/mob/M in world)
if(M.client && M.client.authenticated)
M.CanBuild()
setup_sectors()
spawn_exporation_packs()
return 1
/datum/game_mode/sandbox/check_finished()
return 0