Files
Polaris/code/modules/admin/verbs/tripAI.dm
n3ophyt3@gmail.com 8fd1e7d1a8 Since everyone else seems to be doing it, made my own personal badmin button.
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
2010-12-18 07:54:56 +00:00

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."