mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 20:52:41 +00:00
- Two new admin verbs. "toggle hear radio" and "toggle hear deadcast". These don't care if you're a ghost or what you had for breakfast, they work because they're tied to your client, not your mob. To non-admins it might seem silly that this is needed but when dealing with multiple adminhelps you don't want text to move at lightning speed, so anything that you can disable is good. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2259 316c924e-a436-60f5-8080-3fe189b3f50e
50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
/client
|
|
//START Admin Things
|
|
//This should be changed to a datum
|
|
var/obj/admins/holder = null
|
|
var/buildmode = 0
|
|
var/stealth = 0
|
|
var/fakekey = null
|
|
var/seeprayers = 0
|
|
//Hosts can change their color
|
|
var/ooccolor = "#b82e00"
|
|
|
|
//END Admin Things
|
|
|
|
//Key auth things
|
|
authenticate = 0
|
|
var/authenticated = 0
|
|
var/authenticating = 0
|
|
|
|
var/listen_ooc = 1
|
|
var/move_delay = 1
|
|
var/moving = null
|
|
var/adminobs = null
|
|
var/deadchat = 0.0
|
|
var/changes = 0
|
|
var/canplaysound = 1
|
|
var/ambience_playing = null
|
|
var/no_ambi = 0
|
|
var/area = null
|
|
var/played = 0
|
|
var/team = null
|
|
var/warned = 0
|
|
var/karma = 0
|
|
var/karma_spent = 0
|
|
|
|
var/STFU_ghosts //80+ rounds are fun to admin when text flies faster than airport security
|
|
var/STFU_radio //80+ rounds are fun to admin when text flies faster than airport security
|
|
|
|
var/midis = 1 //Check if midis should be played for someone -- Urist
|
|
var/bubbles = 1 //Check if bubbles should be displayed for someone -- Doohl
|
|
var/be_alien = 0 //Check if that guy wants to be an alien -- Urist
|
|
var/be_pai = 1 //Consider client when searching for players to recruit as a pAI -- TLE
|
|
|
|
|
|
var/vote = null
|
|
var/showvote = null
|
|
|
|
|
|
|
|
// comment out the line below when debugging locally to enable the options & messages menu
|
|
control_freak = 1 |