/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

Remove all bombs currently in existence
Bombing List
Show current traitors and objectives
Show last [length(lastsignalers)] signalers
Show last [length(lawchanges)] law changes
Show AI Laws
Show Game Mode
Show Crew Manifest
List DNA (Blood)
List Fingerprints

Break all lights
Fix all lights
Make all areas powered
Make all areas unpowered
Power all SMES
Toggle Prison Shuttle Status(Use with S/R)
Send Prison Shuttle
Return Prison Shuttle

Launch a shuttle
Force launch a shuttle
Jump a shuttle
Move a shuttle

"} if(check_rights(R_SERVER,0)) dat += "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
Change Security Level

Coder Secrets

Show Job Debug
Admin Log

"} if (1) if(check_rights((R_EVENT|R_SERVER),0)) dat += {" IC Events

Send in a strike team
Send in a syndicate strike team
Send in a HONKsquad

Change Security Level To Green
Change Security Level To Blue
Change Security Level To Red
Change Security Level To Gamma
Change Security Level To Epsilon
Change Security Level To Delta

"} if (2) if(check_rights((R_SERVER|R_EVENT),0)) dat += {" OOC Events

The floor is lava! (DANGEROUS: extremely lame)
Start a Thunderdome match
Reset Thunderdome to default state
Remove 'internal' clothing
Remove ALL clothing
Turn all humans into monkeys
Remove firesuits, grilles, and pods
Warp all Players to Prison
Triple AI mode (needs to be used in the lobby)
Everyone is the traitor
There can only be one!
Dodgeball (TDM)!
Ghost Mode
Make all players retarded
Make all items look like guns
Japanese Animes Mode
Egalitarian Station Mode
Summon Guns
Summon Magic

Roll the Dice

"} dat += "" var/datum/browser/popup = new(usr, "secrets", "
Admin Secrets
", 610, 650) popup.set_content(dat) popup.open(0)