You can now use # to speak over department channels. (#e Hello now works just like :e Hello)

# was the most voted for symbol, despite it being in different places on british keyboard layouts and every other layout.
The old : symbol still works with department channels.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5361 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
johnsonmt88@gmail.com
2012-12-19 23:24:57 +00:00
parent 26b012b71d
commit 17b162d3ba
2 changed files with 52 additions and 45 deletions
+45 -45
View File
@@ -1,54 +1,54 @@
var/list/department_radio_keys = list(
":r" = "right hand",
":l" = "left hand",
":i" = "intercom",
":h" = "department",
":c" = "Command",
":n" = "Science",
":m" = "Medical",
":e" = "Engineering",
":s" = "Security",
":w" = "whisper",
":b" = "binary",
":a" = "alientalk",
":t" = "Syndicate",
":u" = "Supply",
":g" = "changeling",
":r" = "right hand", "#r" = "right hand",
":l" = "left hand", "#l" = "left hand",
":i" = "intercom", "#i" = "intercom",
":h" = "department", "#h" = "department",
":c" = "Command", "#c" = "Command",
":n" = "Science", "#n" = "Science",
":m" = "Medical", "#m" = "Medical",
":e" = "Engineering", "#e" = "Engineering",
":s" = "Security", "#s" = "Security",
":w" = "whisper", "#w" = "whisper",
":b" = "binary", "#b" = "binary",
":a" = "alientalk", "#a" = "alientalk",
":t" = "Syndicate", "#t" = "Syndicate",
":u" = "Supply", "#u" = "Supply",
":g" = "changeling", "#g" = "changeling",
":R" = "right hand",
":L" = "left hand",
":I" = "intercom",
":H" = "department",
":C" = "Command",
":N" = "Science",
":M" = "Medical",
":E" = "Engineering",
":S" = "Security",
":W" = "whisper",
":B" = "binary",
":A" = "alientalk",
":T" = "Syndicate",
":U" = "Supply",
":G" = "changeling",
":R" = "right hand", "#R" = "right hand",
":L" = "left hand", "#L" = "left hand",
":I" = "intercom", "#I" = "intercom",
":H" = "department", "#H" = "department",
":C" = "Command", "#C" = "Command",
":N" = "Science", "#N" = "Science",
":M" = "Medical", "#M" = "Medical",
":E" = "Engineering", "#E" = "Engineering",
":S" = "Security", "#S" = "Security",
":W" = "whisper", "#W" = "whisper",
":B" = "binary", "#B" = "binary",
":A" = "alientalk", "#A" = "alientalk",
":T" = "Syndicate", "#T" = "Syndicate",
":U" = "Supply", "#U" = "Supply",
":G" = "changeling", "#G" = "changeling",
//kinda localization -- rastaf0
//same keys as above, but on russian keyboard layout. This file uses cp1251 as encoding.
":ê" = "right hand",
":ä" = "left hand",
":ø" = "intercom",
":ð" = "department",
":ñ" = "Command",
":ò" = "Science",
":ü" = "Medical",
":ó" = "Engineering",
":û" = "Security",
":ö" = "whisper",
":è" = "binary",
":ô" = "alientalk",
":å" = "Syndicate",
":é" = "Supply",
":ï" = "changeling"
":ê" = "right hand", "#ê" = "right hand",
":ä" = "left hand", "#ä" = "left hand",
":ø" = "intercom", "#ø" = "intercom",
":ð" = "department", "#ð" = "department",
":ñ" = "Command", "#ñ" = "Command",
":ò" = "Science", "#ò" = "Science",
":ü" = "Medical", "#ü" = "Medical",
":ó" = "Engineering", "#ó" = "Engineering",
":û" = "Security", "#û" = "Security",
":ö" = "whisper", "#ö" = "whisper",
":è" = "binary", "#è" = "binary",
":ô" = "alientalk", "#ô" = "alientalk",
":å" = "Syndicate", "#å" = "Syndicate",
":é" = "Supply", "#é" = "Supply",
":ï" = "changeling", "#ï" = "changeling"
)
/mob/living/proc/binarycheck()