Skip to content

new announcer sounds #8572

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion code/game/gamemodes/events/wallrot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
endWhen = announceWhen + 1

/datum/event/wallrot/announce()
command_announcement.Announce("Harmful fungi detected on ship. ship structures may be contaminated.", "Biohazard Alert", new_sound = pick('sound/AI/fungi.ogg', 'sound/AI/funguy.ogg', 'sound/AI/fun_guy.ogg', 'sound/AI/fun_gi.ogg'))
var/new_sound = pick('sound/AI/fungi.ogg', 'sound/AI/funguy.ogg', 'sound/AI/fun_guy.ogg', 'sound/AI/fun_gi.ogg')
if (prob(50))
new_sound = 'sound/AI/fun_gay.ogg'
command_announcement.Announce("Harmful fungi detected on ship. ship structures may be contaminated.", "Biohazard Alert", new_sound)

/datum/event/wallrot/start()
set waitfor = FALSE
Expand Down
6 changes: 5 additions & 1 deletion code/modules/admin/verbs/randomverbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,11 @@ Contractors and the like can also be revived with the previous role mostly intac
command_announcement.Announce(input, customname, msg_sanitized = 1, use_text_to_speech = TRUE)
if("No")
to_chat(world, "\red New [company_name] Update available at all communication consoles.")
world << sound('sound/AI/commandreport.ogg')
var/cremation = prob(50)
if (cremation)
world << sound('sound/AI/commandreport1.ogg')
else
world << sound('sound/AI/commandreport.ogg')

log_admin("[key_name(src)] has created a command report: [input]")
message_admins("[key_name_admin(src)] has created a command report", 1)
Expand Down
Binary file modified sound/AI/aliens.ogg
Binary file not shown.
Binary file modified sound/AI/commandreport.ogg
Binary file not shown.
Binary file added sound/AI/commandreport1.ogg
Binary file not shown.
Binary file added sound/AI/fun_gay.ogg
Binary file not shown.
Binary file modified sound/AI/fun_gi.ogg
Binary file not shown.
Binary file modified sound/AI/fun_guy.ogg
Binary file not shown.
Binary file modified sound/AI/fungi.ogg
Binary file not shown.
Binary file modified sound/AI/funguy.ogg
Binary file not shown.
Binary file modified sound/AI/granomalies.ogg
Binary file not shown.
Binary file modified sound/AI/intercept.ogg
Binary file not shown.
Binary file modified sound/AI/ionstorm.ogg
Binary file not shown.
Binary file modified sound/AI/meteors.ogg
Binary file not shown.
Binary file modified sound/AI/newAI.ogg
Binary file not shown.
Binary file modified sound/AI/outbreak5.ogg
Binary file not shown.
Binary file modified sound/AI/outbreak7.ogg
Binary file not shown.
Binary file modified sound/AI/poweroff.ogg
Binary file not shown.
Binary file modified sound/AI/poweron.ogg
Binary file not shown.
Binary file modified sound/AI/radiation.ogg
Binary file not shown.
Binary file modified sound/AI/shuttlecalled.ogg
Binary file not shown.
Binary file modified sound/AI/shuttledock.ogg
Binary file not shown.
Binary file modified sound/AI/shuttlerecalled.ogg
Binary file not shown.
Binary file modified sound/AI/spanomalies.ogg
Binary file not shown.
Binary file modified sound/AI/vermin.ogg
Binary file not shown.
Binary file modified sound/AI/welcome.ogg
Binary file not shown.
Loading