mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 09:31:13 +00:00
Added a toggle option to be a pAI (much like you can for aliens.) Changed popup window into an alert() and added a "never for this round" button in it. Can permanently set whether or not you want to be a pAI in your save (might not work as intended, only did mild testing, I cannot into bitwise operations.) git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2162 316c924e-a436-60f5-8080-3fe189b3f50e
47 lines
1.1 KiB
Plaintext
47 lines
1.1 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
|
|
//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/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 |