This commit is contained in:
PJB3005
2016-03-27 23:45:00 +02:00
parent a237603f98
commit 8eb24bfec0
16 changed files with 23 additions and 21 deletions

View File

@@ -910,7 +910,7 @@ var/list/admin_verbs_mod = list(
for (var/mob/T as mob in mob_list)
to_chat(T, "<br><center><span class='notice'><b><font size=4>Man up.<br> Deal with it.</font></b><br>Move on.</span></center><br>")
to_chat(T, 'sound/voice/ManUp1.ogg')
T << 'sound/voice/ManUp1.ogg'
log_admin("[key_name(usr)] told everyone to man up and deal with it.")
message_admins("<span class='notice'>[key_name_admin(usr)] told everyone to man up and deal with it.</span>", 1)

View File

@@ -96,7 +96,7 @@ var/list/adminhelp_ignored_words = list("unknown","the","a","an","of","monkey","
if(X.is_afk())
admin_number_afk++
if(X.prefs.toggles & SOUND_ADMINHELP)
to_chat(X, 'sound/effects/adminhelp.ogg')
X << 'sound/effects/adminhelp.ogg'
if(X.prefs.special_popup)
X << output(msg, "window1.msay_output")
else

View File

@@ -131,7 +131,7 @@
//play the recieving admin the adminhelp sound (if they have them enabled)
//non-admins shouldn't be able to disable this
if(C.prefs.toggles & SOUND_ADMINHELP)
to_chat(C, 'sound/effects/adminhelp.ogg')
C << 'sound/effects/adminhelp.ogg'
/*
if(C.holder)
@@ -149,7 +149,7 @@
//play the recieving admin the adminhelp sound (if they have them enabled)
if(C.prefs.toggles & SOUND_ADMINHELP)
to_chat(C, 'sound/effects/adminhelp.ogg')
C << 'sound/effects/adminhelp.ogg'
else
if(holder) //sender is an admin but recipient is not. Do BIG RED TEXT
@@ -164,7 +164,7 @@
to_chat(src, "<font color='blue'>Admin PM to-<b>[key_name(C, src, 1)]</b>: [msg]</font>")
//always play non-admin recipients the adminhelp sound
to_chat(C, 'sound/effects/adminhelp.ogg')
C << 'sound/effects/adminhelp.ogg'
//AdminPM popup for ApocStation and anybody else who wants to use it. Set it with POPUP_ADMIN_PM in config.txt ~Carn
if(config.popup_admin_pm)

View File

@@ -74,7 +74,7 @@ client/proc/space_asshole()
for(var/mob/M in world)
if(M.client)
if(M.client.midis)
to_chat(M, 'sound/music/space_asshole.ogg')
M << 'sound/music/space_asshole.ogg'
client/proc/honk_theme()

View File

@@ -28,7 +28,7 @@
C << output(msg, "window1.msay_output")//if i get told to make this a proc imma be fuckin mad
else
to_chat(C, msg)
to_chat(C, 'sound/effects/prayer.ogg')
C << 'sound/effects/prayer.ogg'
if(!stat)
usr.whisper(orig_message)
@@ -40,10 +40,10 @@
var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN)
msg = "<span class='notice'><b><font color=orange>CENTCOMM:</font>[key_name(Sender, 1)] (<A HREF='?_src_=holder;adminplayeropts=\ref[Sender]'>PP</A>) (<A HREF='?_src_=vars;Vars=\ref[Sender]'>VV</A>) (<A HREF='?_src_=holder;subtlemessage=\ref[Sender]'>SM</A>) (<A HREF='?_src_=holder;adminplayerobservejump=\ref[Sender]'>JMP</A>) (<A HREF='?_src_=holder;secretsadmin=check_antagonist'>CA</A>) (<A HREF='?_src_=holder;BlueSpaceArtillery=\ref[Sender]'>BSA</A>) (<A HREF='?_src_=holder;CentcommReply=\ref[Sender]'>RPLY</A>):</b> [msg]</span>"
to_chat(admins, msg)
to_chat(admins, 'sound/effects/msn.ogg')
admins << 'sound/effects/msn.ogg'
/proc/Syndicate_announce(var/text , var/mob/Sender)
var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN)
msg = "<span class='notice'><b><font color=crimson>SYNDICATE:</font>[key_name(Sender, 1)] (<A HREF='?_src_=holder;adminplayeropts=\ref[Sender]'>PP</A>) (<A HREF='?_src_=vars;Vars=\ref[Sender]'>VV</A>) (<A HREF='?_src_=holder;subtlemessage=\ref[Sender]'>SM</A>) (<A HREF='?_src_=holder;adminplayerobservejump=\ref[Sender]'>JMP</A>) (<A HREF='?_src_=holder;secretsadmin=check_antagonist'>CA</A>) (<A HREF='?_src_=holder;BlueSpaceArtillery=\ref[Sender]'>BSA</A>) (<A HREF='?_src_=holder;SyndicateReply=\ref[Sender]'>RPLY</A>):</b> [msg]</span>"
to_chat(admins, msg)
to_chat(admins, 'sound/effects/inception.ogg')
admins << 'sound/effects/inception.ogg'