mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 07:58:57 +01:00
790aeafbdf
As title: grants STs a small selection of admin/mod/fun verbs without needing them to have an admin_rank configured on the back end. I've been extra permissive here on the assumption that Those That Be will veto anything they don't like. The granted verbs: /client/proc/toggle_view_range, /client/proc/jumptozlevel, /client/proc/jumptoshuttle, /client/proc/jumptoship, /client/proc/jumptosector, /client/proc/Getmob, /client/proc/Jump, /client/proc/jumptomob, /client/proc/jumptoturf, /client/proc/check_ai_laws, /client/proc/manage_silicon_laws, /client/proc/odyssey_panel, /client/proc/damage_menu, /client/proc/change_human_appearance_admin, /client/proc/change_security_level, /client/proc/cmd_dev_bst, /datum/admins/proc/create_admin_fax, /client/proc/check_fax_history, /client/proc/clear_toxins, /datum/admins/proc/call_supply_drop, /datum/admins/proc/call_drop_pod, /client/proc/event_manager_panel, /client/proc/toggle_random_events This PR is full of _gross code_ but it _does_ work.
93 lines
3.6 KiB
Plaintext
93 lines
3.6 KiB
Plaintext
/datum/random_map/droppod/supply
|
|
descriptor = "supply drop"
|
|
limit_x = 5
|
|
limit_y = 5
|
|
|
|
placement_explosion_light = 7
|
|
placement_explosion_flash = 5
|
|
|
|
// UNLIKE THE DROP POD, this map deals ENTIRELY with strings and types.
|
|
// Drop type is a string representing a mode rather than an atom or path.
|
|
// supplied_drop_types is a list of types to spawn in the pod.
|
|
/datum/random_map/droppod/supply/get_spawned_drop(var/turf/T)
|
|
|
|
if(!drop_type) drop_type = pick(supply_drop_random_loot_types())
|
|
|
|
if(drop_type == "custom")
|
|
if(supplied_drop_types.len)
|
|
var/obj/structure/largecrate/C = locate() in T
|
|
for(var/drop_type in supplied_drop_types)
|
|
var/atom/movable/A = new drop_type(T)
|
|
if(!istype(A, /mob))
|
|
if(!C) C = new(T)
|
|
C.contents |= A
|
|
return
|
|
else
|
|
drop_type = pick(supply_drop_random_loot_types())
|
|
|
|
if(istype(drop_type, /datum/supply_drop_loot))
|
|
var/datum/supply_drop_loot/SDL = drop_type
|
|
SDL.drop(T)
|
|
else
|
|
log_world("ERROR: Unhandled drop type: [drop_type]")
|
|
|
|
|
|
/datum/admins/proc/call_supply_drop()
|
|
set category = "Fun"
|
|
set desc = "Call an immediate supply drop on your location."
|
|
set name = "Call Supply Drop"
|
|
|
|
if(check_rights(R_FUN) || isstoryteller(usr))
|
|
var/chosen_loot_type
|
|
var/list/chosen_loot_types
|
|
var/choice = alert("Do you wish to supply a custom loot list?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
chosen_loot_types = list()
|
|
|
|
choice = alert("Do you wish to add mobs?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
while(1)
|
|
var/adding_loot_type = input("Select a new loot path. Cancel to finish.", "Loot Selection", null) as null|anything in typesof(/mob/living)
|
|
if(!adding_loot_type)
|
|
break
|
|
chosen_loot_types |= adding_loot_type
|
|
choice = alert("Do you wish to add structures or machines?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
while(1)
|
|
var/adding_loot_type = input("Select a new loot path. Cancel to finish.", "Loot Selection", null) as null|anything in typesof(/obj) - typesof(/obj/item)
|
|
if(!adding_loot_type)
|
|
break
|
|
chosen_loot_types |= adding_loot_type
|
|
choice = alert("Do you wish to add any non-weapon items?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
while(1)
|
|
var/adding_loot_type = input("Select a new loot path. Cancel to finish.", "Loot Selection", null) as null|anything in typesof(/obj/item) - typesof(/obj/item)
|
|
if(!adding_loot_type)
|
|
break
|
|
chosen_loot_types |= adding_loot_type
|
|
|
|
choice = alert("Do you wish to add weapons?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
while(1)
|
|
var/adding_loot_type = input("Select a new loot path. Cancel to finish.", "Loot Selection", null) as null|anything in typesof(/obj/item)
|
|
if(!adding_loot_type)
|
|
break
|
|
chosen_loot_types |= adding_loot_type
|
|
choice = alert("Do you wish to add ABSOLUTELY ANYTHING ELSE? (you really shouldn't need to)",,"No","Yes")
|
|
if(choice == "Yes")
|
|
while(1)
|
|
var/adding_loot_type = input("Select a new loot path. Cancel to finish.", "Loot Selection", null) as null|anything in typesof(/atom/movable)
|
|
if(!adding_loot_type)
|
|
break
|
|
chosen_loot_types |= adding_loot_type
|
|
else
|
|
choice = alert("Do you wish to specify a loot type?",,"No","Yes")
|
|
if(choice == "Yes")
|
|
chosen_loot_type = input("Select a loot type.", "Loot Selection", null) as null|anything in supply_drop_random_loot_types()
|
|
|
|
choice = alert("Are you SURE you wish to deploy this supply drop? It will cause a sizable explosion and gib anyone underneath it.",,"No","Yes")
|
|
if(choice == "No")
|
|
return
|
|
log_admin("[key_name(usr)] dropped supplies at ([usr.x],[usr.y],[usr.z])")
|
|
new /datum/random_map/droppod/supply(null, usr.x-2, usr.y-2, usr.z, supplied_drops = chosen_loot_types, supplied_drop = chosen_loot_type)
|