mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-24 09:03:05 +00:00
Currently, all it does is enable a round to start with three AIs instead of just 1.
Must be triggered before round start, obviously.
Related to badmin button, in the event of multiple active AIs on the station, latejoiners are only announced by one AI, picked at random.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@657 316c924e-a436-60f5-8080-3fe189b3f50e
20 lines
695 B
Plaintext
20 lines
695 B
Plaintext
var/global/check_dem_trips = 0
|
|
|
|
/client/proc/triple_ai()
|
|
set category = "Fun"
|
|
set name = "Create AI Triumvirate"
|
|
|
|
|
|
if(ticker.current_state < 2)
|
|
if (check_dem_trips)
|
|
occupations["AI"] -= 2
|
|
usr << "Only one AI will be spawned at round start."
|
|
message_admins("\blue [key_name_admin(usr)] has toggled off triple AIs at round start.", 1)
|
|
else
|
|
occupations["AI"] += 2
|
|
usr << "There will be an AI Triumvirate at round start."
|
|
message_admins("\blue [key_name_admin(usr)] has toggled on triple AIs at round start.", 1)
|
|
check_dem_trips = !check_dem_trips
|
|
return
|
|
|
|
usr << "This option is currently only usable during pregame. This may change at a later date." |