/datum/admins
var/current_tab =0
/datum/admins/proc/Secrets()
if(!check_rights(0)) return
var/dat = "
"
dat += "Debug"
dat += "IC Events"
dat += "OOC Events"
dat += ""
dat += "
"
switch(current_tab)
if(0) // Debug
if(check_rights(R_ADMIN,0))
dat += {"
Admin Secrets
Game
Show AI Laws
Show Game Mode
Show Crew Manifest
Show current traitors and objectives
Show code phrases and responses
Set Night Shift Mode
Bombs
[check_rights(R_SERVER, 0) ? " Toggle bomb cap
" : "
"]
Lists
Show last [length(GLOB.lastsignalers)] signalers
Show last [length(GLOB.lawchanges)] law changes
List DNA (Blood)
List Fingerprints
Power
Break all lights
Fix all lights
Make all areas powered
Make all areas unpowered
Power all SMES
"}
else if(check_rights(R_SERVER,0)) //only add this if admin secrets are unavailiable; otherwise, it's added inline
dat += "Bomb cap: Toggle bomb cap
"
dat += "
"
if(check_rights(R_DEBUG,0))
dat += {"
Security Level Elevated
Change all maintenance doors to engie/brig access only
Change all maintenance doors to brig access only
Remove cap on security officers
Coder Secrets
Show Job Debug
Admin Log
"}
if(1)
if(check_rights((R_EVENT|R_SERVER),0))
var/security_levels_data = ""
for(var/level_name in SSsecurity_level.available_levels)
var/datum/security_level/this_level = SSsecurity_level.available_levels[level_name]
security_levels_data += "[this_level.name]"
dat += {"
IC Events
Teams
Send SIT - Syndicate Infiltration Team
Send in a Syndie Strike Team
Send in the Deathsquad
Send in a Gimmick Team
Change Security Level
[security_levels_data]
Create Weather
Weather - Ash Storm
Reinforce Station
Move the Gamma Armory
"}
if(2)
if(check_rights((R_SERVER|R_EVENT),0))
dat += {"
OOC Events
Thunderdome
Start a Thunderdome match
Reset Thunderdome to default state
Clothing
Remove 'internal' clothing
Remove ALL clothing
TDM
Everyone is the traitor
There can only be one!
There can only be me!
Dodgeball (TDM)!
Round-enders
The floor is lava! (DANGEROUS: extremely lame)
The floor is fake-lava! (non-harmful)
Turn all humans into monkeys
Make all items look like guns
Warp all Players to Prison
Make all players stupid
Misc
Remove firesuits, grilles, and pods
Triple AI mode (needs to be used in the lobby)
Ghost Mode
Japanese Animes Mode
Egalitarian Station Mode
Summon Guns
Summon Magic
Roll the Dice
Move Ferry
Move Mining Shuttle
Move Labor Shuttle
"}
dat += ""
var/datum/browser/popup = new(usr, "secrets", "Admin Secrets
", 630, 670)
popup.set_content(dat)
popup.open(0)