mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Adds randomlly spawning rooms to the mining asteroid that contain various goodies. (Among them are a modified traitor beacon, a cloaking device and a closet full of resources so you can go build your own honk.)
These rooms will spawn at least out of range of space and the explored pathways, so at the very least some mining is required to even detect them with mesons. Adds a borg upgrade system. Right now, it just contians a borg reset module that allows the borg to choose their module again. Adds some support code to borgs to suppot flashproofing and renaming. Adds a few various admin commands like a quick-list of objects (which is hardcoded) and a command to break the local air group. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3415 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1273,11 +1273,19 @@ var/global/BSACooldown = 0
|
||||
else
|
||||
alert("You are not a high enough administrator! Sorry!!!!")
|
||||
|
||||
if (href_list["quick_create_object"])
|
||||
if (src.rank in list("Admin Candidate", "Trial Admin", "Badmin", "Game Admin", "Game Master"))
|
||||
return quick_create_object(usr)
|
||||
else
|
||||
alert("You are not a high enough administrator! Sorry!!!!")
|
||||
|
||||
|
||||
if (href_list["create_turf"])
|
||||
if (src.rank in list("Admin Candidate", "Trial Admin", "Badmin", "Game Admin", "Game Master"))
|
||||
return create_turf(usr)
|
||||
else
|
||||
alert("You are not a high enough administrator! Sorry!!!!")
|
||||
|
||||
if (href_list["create_mob"])
|
||||
if (src.rank in list("Badmin", "Game Admin", "Game Master"))
|
||||
return create_mob(usr)
|
||||
@@ -2309,6 +2317,7 @@ var/global/BSACooldown = 0
|
||||
|
||||
if(lvl >= 3 )
|
||||
dat += "<A href='?src=\ref[src];create_object=1'>Create Object</A><br>"
|
||||
dat += "<A href='?src=\ref[src];quick_create_object=1'>Quick Create Object</A><br>"
|
||||
dat += "<A href='?src=\ref[src];create_turf=1'>Create Turf</A><br>"
|
||||
if(lvl >= 5)
|
||||
dat += "<A href='?src=\ref[src];create_mob=1'>Create Mob</A><br>"
|
||||
|
||||
Reference in New Issue
Block a user