/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
Bombs
Bombing List
Remove all bombs currently in existence
[check_rights(R_SERVER, 0) ? " Toggle bomb cap
" : "
"]
Lists
Show last [length(lastsignalers)] signalers
Show last [length(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
Shuttle options
Launch a shuttle
Force launch a shuttle
Jump a shuttle
Move a shuttle
"}
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))
dat += {"
IC Events
Teams
Send in a strike team
Send in a syndicate strike team
Send in a HONKsquad
Change Security Level
Security Level - Green
Security Level - Blue
Security Level - Red
Security Level - Gamma
Security Level - Epsilon
Security Level - Delta
Create Weather
Weather - Ash Storm
Weather - Advanced Darkness
"}
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 retarded
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)