mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 19:43:16 +00:00
They include such procs as sanitize_integer(num, min, max, default) which will check num is a number, round num to make it an integer, then check if it is between min and max (inclusive). If it fails the bound-checks it will return default. There are others, have a look.
PERSISTENT PREFERENCES: Every ckey which connects to the game gets its own persistent /datum/preferences datum.
It is archived in var/list/preferences_datums = list("ckey" = datum)
At connect it is automatically associated with the client defines.dm (or a new one is created if it can't find an archived prefs datum). This means clients will ALWAYS have a var/datum/preferences/prefs which references this datum. So you can use it without checking if(client.prefs)
This has simplified only a few bits of code. It will however, allow us to make preferences like see_deadchat ghost_ears etc, persistent. So they will not reset when you DC.
SAVEFILES: Changed the player savefile code a lot. Hopefully I've not fucked it up too much. Every single variable loaded from saves is now sanity checked using the new sanity procs. This should help prevent savefiles becomming obsolete by sanitizing input to meet current requirements, without deleting all the ok variables and making you start from scratch >_> NOTE: I still need to sort out the savefile version stuff. I'll probably figure it out before the server updates anyway. It sees to be fine without it.
You can no longer choose your blood type. It is randomised (with each bloodtype having a realistic probability of occuring). This is to make blood analysis (detective/medical) less pointless. It is chosen as soon as you connect. It remains persistent throughout each round so you won't be able to change it by logging in/out over and over.
Replaces some copypasta code with is_afk() (still a fair bit to do)
There are new hyperlink shortcut things. _src_=vars will direct your hyperlink to viewvars. _src_=prefs to your preferences datum. (These are the only way to access those bits of code via links). This means that the overall amount of operations in almost every Topic has pretty much halved and is much prettier.
Replaced and removed adminplayervars from datum/admins/Topic. It was superfluous. They now all point directly to the viewvars code using _src_=vars
Removed the changelog popup at round start. Instead a button on your game-window will glow white if there are new updates. To peruse at your convenience. This will speed up connect times.
Removed the AFK_THRESHOLD define. It is integrated into is_afk() now.
TODO: remove the prefs stuff from mobs and clients and update code to use client.prefs to access that info.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5121 316c924e-a436-60f5-8080-3fe189b3f50e
178 lines
11 KiB
Plaintext
178 lines
11 KiB
Plaintext
//STRIKE TEAMS
|
|
|
|
var/const/commandos_possible = 6 //if more Commandos are needed in the future
|
|
var/global/sent_strike_team = 0
|
|
/client/proc/strike_team()
|
|
if(!ticker)
|
|
usr << "<font color='red'>The game hasn't started yet!</font>"
|
|
return
|
|
if(world.time < 6000)
|
|
usr << "<font color='red'>There are [(6000-world.time)/10] seconds remaining before it may be called.</font>"
|
|
return
|
|
if(sent_strike_team == 1)
|
|
usr << "<font color='red'>CentCom is already sending a team.</font>"
|
|
return
|
|
if(alert("Do you want to send in the CentCom death squad? Once enabled, this is irreversible.",,"Yes","No")!="Yes")
|
|
return
|
|
alert("This 'mode' will go on until everyone is dead or the station is destroyed. You may also admin-call the evac shuttle when appropriate. Spawned commandos have internals cameras which are viewable through a monitor inside the Spec. Ops. Office. Assigning the team's detailed task is recommended from there. While you will be able to manually pick the candidates from active ghosts, their assignment in the squad will be random.")
|
|
|
|
var/input = null
|
|
while(!input)
|
|
input = copytext(sanitize(input(src, "Please specify which mission the death commando squad shall undertake.", "Specify Mission", "")),1,MAX_MESSAGE_LEN)
|
|
if(!input)
|
|
if(alert("Error, no mission set. Do you want to exit the setup process?",,"Yes","No")=="Yes")
|
|
return
|
|
|
|
if(sent_strike_team)
|
|
usr << "Looks like someone beat you to it."
|
|
return
|
|
|
|
sent_strike_team = 1
|
|
|
|
if (emergency_shuttle.direction == 1 && emergency_shuttle.online == 1)
|
|
emergency_shuttle.recall()
|
|
|
|
var/commando_number = commandos_possible //for selecting a leader
|
|
var/leader_selected = 0 //when the leader is chosen. The last person spawned.
|
|
|
|
//Code for spawning a nuke auth code.
|
|
var/nuke_code
|
|
var/temp_code
|
|
for(var/obj/machinery/nuclearbomb/N in world)
|
|
temp_code = text2num(N.r_code)
|
|
if(temp_code)//if it's actually a number. It won't convert any non-numericals.
|
|
nuke_code = N.r_code
|
|
break
|
|
|
|
//Generates a list of commandos from active ghosts. Then the user picks which characters to respawn as the commandos.
|
|
var/list/candidates = list() //candidates for being a commando out of all the active ghosts in world.
|
|
var/list/commandos = list() //actual commando ghosts as picked by the user.
|
|
for(var/mob/dead/observer/G in player_list)
|
|
if(!G.client.holder && !G.client.is_afk()) //Whoever called/has the proc won't be added to the list.
|
|
if(!(G.mind && G.mind.current && G.mind.current.stat != DEAD))
|
|
candidates += G.key
|
|
for(var/i=commandos_possible,(i>0&&candidates.len),i--)//Decrease with every commando selected.
|
|
var/candidate = input("Pick characters to spawn as the commandos. This will go on until there either no more ghosts to pick from or the slots are full.", "Active Players") as null|anything in candidates //It will auto-pick a person when there is only one candidate.
|
|
candidates -= candidate //Subtract from candidates.
|
|
commandos += candidate//Add their ghost to commandos.
|
|
|
|
//Spawns commandos and equips them.
|
|
for(var/obj/effect/landmark/L in landmarks_list)
|
|
if(commando_number<=0) break
|
|
if (L.name == "Commando")
|
|
leader_selected = commando_number == 1?1:0
|
|
|
|
var/mob/living/carbon/human/new_commando = create_death_commando(L, leader_selected)
|
|
|
|
if(commandos.len)
|
|
new_commando.key = pick(commandos)
|
|
commandos -= new_commando.key
|
|
new_commando.internal = new_commando.s_store
|
|
new_commando.internals.icon_state = "internal1"
|
|
|
|
//So they don't forget their code or mission.
|
|
if(nuke_code)
|
|
new_commando.mind.store_memory("<B>Nuke Code:</B> \red [nuke_code].")
|
|
new_commando.mind.store_memory("<B>Mission:</B> \red [input].")
|
|
|
|
new_commando << "\blue You are a Special Ops. [!leader_selected?"commando":"<B>LEADER</B>"] in the service of Central Command. Check the table ahead for detailed instructions.\nYour current mission is: \red<B>[input]</B>"
|
|
|
|
commando_number--
|
|
|
|
//Spawns the rest of the commando gear.
|
|
for (var/obj/effect/landmark/L in landmarks_list)
|
|
if (L.name == "Commando_Manual")
|
|
//new /obj/item/weapon/gun/energy/pulse_rifle(L.loc)
|
|
var/obj/item/weapon/paper/P = new(L.loc)
|
|
P.info = "<p><b>Good morning soldier!</b>. This compact guide will familiarize you with standard operating procedure. There are three basic rules to follow:<br>#1 Work as a team.<br>#2 Accomplish your objective at all costs.<br>#3 Leave no witnesses.<br>You are fully equipped and stocked for your mission--before departing on the Spec. Ops. Shuttle due South, make sure that all operatives are ready. Actual mission objective will be relayed to you by Central Command through your headsets.<br>If deemed appropriate, Central Command will also allow members of your team to equip assault power-armor for the mission. You will find the armor storage due West of your position. Once you are ready to leave, utilize the Special Operations shuttle console and toggle the hull doors via the other console.</p><p>In the event that the team does not accomplish their assigned objective in a timely manner, or finds no other way to do so, attached below are instructions on how to operate a Nanotrasen Nuclear Device. Your operations <b>LEADER</b> is provided with a nuclear authentication disk and a pin-pointer for this reason. You may easily recognize them by their rank: Lieutenant, Captain, or Major. The nuclear device itself will be present somewhere on your destination.</p><p>Hello and thank you for choosing Nanotrasen for your nuclear information needs. Today's crash course will deal with the operation of a Fission Class Nanotrasen made Nuclear Device.<br>First and foremost, <b>DO NOT TOUCH ANYTHING UNTIL THE BOMB IS IN PLACE.</b> Pressing any button on the compacted bomb will cause it to extend and bolt itself into place. If this is done to unbolt it one must completely log in which at this time may not be possible.<br>To make the device functional:<br>#1 Place bomb in designated detonation zone<br> #2 Extend and anchor bomb (attack with hand).<br>#3 Insert Nuclear Auth. Disk into slot.<br>#4 Type numeric code into keypad ([nuke_code]).<br>Note: If you make a mistake press R to reset the device.<br>#5 Press the E button to log onto the device.<br>You now have activated the device. To deactivate the buttons at anytime, for example when you have already prepped the bomb for detonation, remove the authentication disk OR press the R on the keypad. Now the bomb CAN ONLY be detonated using the timer. A manual detonation is not an option.<br>Note: Toggle off the <b>SAFETY</b>.<br>Use the - - and + + to set a detonation time between 5 seconds and 10 minutes. Then press the timer toggle button to start the countdown. Now remove the authentication disk so that the buttons deactivate.<br>Note: <b>THE BOMB IS STILL SET AND WILL DETONATE</b><br>Now before you remove the disk if you need to move the bomb you can: Toggle off the anchor, move it, and re-anchor.</p><p>The nuclear authorization code is: <b>[nuke_code ? nuke_code : "None provided"]</b></p><p><b>Good luck, soldier!</b></p>"
|
|
P.name = "Spec. Ops. Manual"
|
|
|
|
for (var/obj/effect/landmark/L in landmarks_list)
|
|
if (L.name == "Commando-Bomb")
|
|
new /obj/effect/spawner/newbomb/timer/syndicate(L.loc)
|
|
del(L)
|
|
|
|
message_admins("\blue [key_name_admin(usr)] has spawned a CentCom strike squad.", 1)
|
|
log_admin("[key_name(usr)] used Spawn Death Squad.")
|
|
return 1
|
|
|
|
/client/proc/create_death_commando(obj/spawn_location, leader_selected = 0)
|
|
var/mob/living/carbon/human/new_commando = new(spawn_location.loc)
|
|
var/commando_leader_rank = pick("Lieutenant", "Captain", "Major")
|
|
var/commando_rank = pick("Corporal", "Sergeant", "Staff Sergeant", "Sergeant 1st Class", "Master Sergeant", "Sergeant Major")
|
|
var/commando_name = pick(last_names)
|
|
|
|
new_commando.gender = pick(MALE, FEMALE)
|
|
|
|
var/datum/preferences/A = new()//Randomize appearance for the commando.
|
|
A.randomize_appearance_for(new_commando)
|
|
|
|
new_commando.real_name = "[!leader_selected ? commando_rank : commando_leader_rank] [commando_name]"
|
|
new_commando.age = !leader_selected ? rand(23,35) : rand(35,45)
|
|
|
|
new_commando.dna.ready_dna(new_commando)//Creates DNA.
|
|
|
|
//Creates mind stuff.
|
|
new_commando.mind_initialize()
|
|
new_commando.mind.assigned_role = "MODE"
|
|
new_commando.mind.special_role = "Death Commando"
|
|
ticker.mode.traitors |= new_commando.mind//Adds them to current traitor list. Which is really the extra antagonist list.
|
|
new_commando.equip_death_commando(leader_selected)
|
|
return new_commando
|
|
|
|
/mob/living/carbon/human/proc/equip_death_commando(leader_selected = 0)
|
|
var/obj/machinery/camera/camera = new /obj/machinery/camera(src) //Gives all the commandos internals cameras.
|
|
camera.network = "CREED"
|
|
camera.c_tag = real_name
|
|
|
|
var/obj/item/device/radio/R = new /obj/item/device/radio/headset(src)
|
|
R.set_frequency(1441)
|
|
equip_to_slot_or_del(R, slot_ears)
|
|
if (leader_selected == 0)
|
|
equip_to_slot_or_del(new /obj/item/clothing/under/color/green(src), slot_w_uniform)
|
|
else
|
|
equip_to_slot_or_del(new /obj/item/clothing/under/rank/centcom_officer(src), slot_w_uniform)
|
|
equip_to_slot_or_del(new /obj/item/clothing/shoes/swat(src), slot_shoes)
|
|
equip_to_slot_or_del(new /obj/item/clothing/suit/armor/swat(src), slot_wear_suit)
|
|
equip_to_slot_or_del(new /obj/item/clothing/gloves/swat(src), slot_gloves)
|
|
equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/deathsquad(src), slot_head)
|
|
equip_to_slot_or_del(new /obj/item/clothing/mask/gas/swat(src), slot_wear_mask)
|
|
equip_to_slot_or_del(new /obj/item/clothing/glasses/thermal(src), slot_glasses)
|
|
|
|
equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/security(src), slot_back)
|
|
equip_to_slot_or_del(new /obj/item/weapon/storage/box(src), slot_in_backpack)
|
|
|
|
equip_to_slot_or_del(new /obj/item/ammo_magazine/a357(src), slot_in_backpack)
|
|
equip_to_slot_or_del(new /obj/item/weapon/storage/firstaid/regular(src), slot_in_backpack)
|
|
equip_to_slot_or_del(new /obj/item/weapon/storage/flashbang_kit(src), slot_in_backpack)
|
|
equip_to_slot_or_del(new /obj/item/device/flashlight(src), slot_in_backpack)
|
|
if (!leader_selected)
|
|
equip_to_slot_or_del(new /obj/item/weapon/plastique(src), slot_in_backpack)
|
|
else
|
|
equip_to_slot_or_del(new /obj/item/weapon/pinpointer(src), slot_in_backpack)
|
|
equip_to_slot_or_del(new /obj/item/weapon/disk/nuclear(src), slot_in_backpack)
|
|
|
|
equip_to_slot_or_del(new /obj/item/weapon/melee/energy/sword(src), slot_l_store)
|
|
equip_to_slot_or_del(new /obj/item/weapon/grenade/flashbang(src), slot_r_store)
|
|
equip_to_slot_or_del(new /obj/item/weapon/tank/emergency_oxygen(src), slot_s_store)
|
|
equip_to_slot_or_del(new /obj/item/weapon/gun/projectile/mateba(src), slot_belt)
|
|
|
|
equip_to_slot_or_del(new /obj/item/weapon/gun/energy/pulse_rifle(src), slot_r_hand)
|
|
|
|
|
|
var/obj/item/weapon/implant/loyalty/L = new/obj/item/weapon/implant/loyalty(src)//Here you go Deuryn
|
|
L.imp_in = src
|
|
L.implanted = 1
|
|
|
|
|
|
|
|
var/obj/item/weapon/card/id/W = new(src)
|
|
W.name = "[real_name]'s ID Card"
|
|
W.icon_state = "centcom"
|
|
W.access = get_all_accesses()//They get full station access.
|
|
W.access += list(access_cent_general, access_cent_specops, access_cent_living, access_cent_storage)//Let's add their alloted CentCom access.
|
|
W.assignment = "Death Commando"
|
|
W.registered_name = real_name
|
|
equip_to_slot_or_del(W, slot_wear_id)
|
|
|
|
return 1 |