mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-22 21:38:47 +01:00
3f62424312
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
58 lines
2.0 KiB
Plaintext
58 lines
2.0 KiB
Plaintext
/obj/item/hailer
|
|
name = "hailer"
|
|
desc = "Used by obese officers to save their breath for running."
|
|
icon = 'icons/obj/item/hailer.dmi'
|
|
icon_state = "voice0"
|
|
item_state = "flashbang" //looks exactly like a flash (and nothing like a flashbang)
|
|
w_class = WEIGHT_CLASS_TINY
|
|
obj_flags = OBJ_FLAG_CONDUCTABLE
|
|
|
|
var/use_message = "Halt! Security!"
|
|
var/spamcheck = 0
|
|
var/insults
|
|
|
|
/obj/item/hailer/verb/set_message()
|
|
set name = "Set Hailer Message"
|
|
set category = "Object.Held"
|
|
set desc = "Alter the message shouted by your hailer."
|
|
set src in usr
|
|
|
|
if(!isnull(insults))
|
|
to_chat(usr, "The hailer is fried. The tiny input screen just shows a waving ASCII penis.")
|
|
return
|
|
|
|
var/new_message = input(usr, "Please enter new message (leave blank to reset).") as text
|
|
if(!new_message || new_message == "")
|
|
use_message = "Halt! Security!"
|
|
else
|
|
use_message = capitalize(copytext(sanitize(new_message), 1, MAX_MESSAGE_LEN))
|
|
|
|
to_chat(usr, "You configure the hailer to shout \"[use_message]\".")
|
|
|
|
/obj/item/hailer/attack_self(mob/living/carbon/user as mob)
|
|
if (spamcheck)
|
|
return
|
|
|
|
if(isnull(insults))
|
|
playsound(get_turf(src), 'sound/voice/halt.ogg', 100, 1, vary = 0)
|
|
user.audible_message(SPAN_WARNING("[user]'s [name] rasps, \"[use_message]\""), SPAN_WARNING("\The [user] holds up \the [name]."))
|
|
else
|
|
if(insults > 0)
|
|
// Yes, it used to show the transcription of the sound clip. That was a) inaccurate b) immature as shit.
|
|
user.audible_message(SPAN_WARNING("[user]'s [name] gurgles something indecipherable and deeply offensive."), SPAN_WARNING("\The [user] holds up \the [name]."))
|
|
insults--
|
|
else
|
|
to_chat(user, SPAN_DANGER("*BZZZZZZZZT*"))
|
|
|
|
spamcheck = 1
|
|
spawn(20)
|
|
spamcheck = 0
|
|
|
|
/obj/item/hailer/emag_act(var/remaining_charges, var/mob/user)
|
|
if(isnull(insults))
|
|
to_chat(user, SPAN_DANGER("You overload \the [src]'s voice synthesizer."))
|
|
insults = rand(1, 3)//to prevent dickflooding
|
|
return 1
|
|
else
|
|
to_chat(user, "The hailer is fried. You can't even fit the sequencer into the input slot.")
|