initial commit - cross reference with 5th port - obviously has compile errors

This commit is contained in:
LetterJay
2016-07-03 02:17:19 -05:00
commit 35a1723e98
4355 changed files with 2221257 additions and 0 deletions
+215
View File
@@ -0,0 +1,215 @@
//Please use mob or src (not usr) in these procs. This way they can be called in the same fashion as procs.
/client/verb/wiki()
set name = "wiki"
set desc = "Visit the wiki."
set hidden = 1
if(config.wikiurl)
if(alert("This will open the wiki in your browser. Are you sure?",,"Yes","No")=="No")
return
src << link(config.wikiurl)
else
src << "<span class='danger'>The wiki URL is not set in the server configuration.</span>"
return
/client/verb/forum()
set name = "forum"
set desc = "Visit the forum."
set hidden = 1
if(config.forumurl)
if(alert("This will open the forum in your browser. Are you sure?",,"Yes","No")=="No")
return
src << link(config.forumurl)
else
src << "<span class='danger'>The forum URL is not set in the server configuration.</span>"
return
/client/verb/rules()
set name = "rules"
set desc = "Show Server Rules."
set hidden = 1
if(config.rulesurl)
if(alert("This will open the rules in your browser. Are you sure?",,"Yes","No")=="No")
return
src << link(config.rulesurl)
else
src << "<span class='danger'>The rules URL is not set in the server configuration.</span>"
return
/client/verb/github()
set name = "github"
set desc = "Visit Github"
set hidden = 1
if(config.githuburl)
if(alert("This will open the Github repository in your browser. Are you sure?",,"Yes","No")=="No")
return
src << link(config.githuburl)
else
src << "<span class='danger'>The Github URL is not set in the server configuration.</span>"
return
/client/verb/reportissue()
set name = "report-issue"
set desc = "Report an issue"
set hidden = 1
if(config.githuburl)
if(alert("This will open the Github issue reporter in your browser. Are you sure?",,"Yes","No")=="No")
return
src << link("[config.githuburl]/issues/new")
else
src << "<span class='danger'>The Github URL is not set in the server configuration.</span>"
return
/client/verb/hotkeys_help()
set name = "hotkeys-help"
set category = "OOC"
var/adminhotkeys = {"<font color='purple'>
Admin:
\tF5 = Aghost (admin-ghost)
\tF6 = player-panel
\tF7 = admin-pm
\tF8 = Invisimin
</font>"}
mob.hotkey_help()
if(holder)
src << adminhotkeys
/client/verb/changelog()
set name = "Changelog"
set category = "OOC"
getFiles(
'html/88x31.png',
'html/bug-minus.png',
'html/cross-circle.png',
'html/hard-hat-exclamation.png',
'html/image-minus.png',
'html/image-plus.png',
'html/music-minus.png',
'html/music-plus.png',
'html/tick-circle.png',
'html/wrench-screwdriver.png',
'html/spell-check.png',
'html/burn-exclamation.png',
'html/chevron.png',
'html/chevron-expand.png',
'html/changelog.css',
'html/changelog.html'
)
src << browse('html/changelog.html', "window=changes;size=675x650")
if(prefs.lastchangelog != changelog_hash)
prefs.lastchangelog = changelog_hash
prefs.save_preferences()
winset(src, "infowindow.changelog", "font-style=;")
/mob/proc/hotkey_help()
var/hotkey_mode = {"<font color='purple'>
Hotkey-Mode: (hotkey-mode must be on)
\tTAB = toggle hotkey-mode
\ta = left
\ts = down
\td = right
\tw = up
\tq = drop
\te = equip
\tr = throw
\tm = me
\tt = say
\to = OOC
\tb = resist
\tx = swap-hand
\tz = activate held object (or y)
\tf = cycle-intents-left
\tg = cycle-intents-right
\t1 = help-intent
\t2 = disarm-intent
\t3 = grab-intent
\t4 = harm-intent
</font>"}
var/other = {"<font color='purple'>
Any-Mode: (hotkey doesn't need to be on)
\tCtrl+a = left
\tCtrl+s = down
\tCtrl+d = right
\tCtrl+w = up
\tCtrl+q = drop
\tCtrl+e = equip
\tCtrl+r = throw
\tCtrl+b = resist
\tCtrl+O = OOC
\tCtrl+x = swap-hand
\tCtrl+z = activate held object (or Ctrl+y)
\tCtrl+f = cycle-intents-left
\tCtrl+g = cycle-intents-right
\tCtrl+1 = help-intent
\tCtrl+2 = disarm-intent
\tCtrl+3 = grab-intent
\tCtrl+4 = harm-intent
\tDEL = pull
\tINS = cycle-intents-right
\tHOME = drop
\tPGUP = swap-hand
\tPGDN = activate held object
\tEND = throw
</font>"}
src << hotkey_mode
src << other
/mob/living/silicon/robot/hotkey_help()
var/hotkey_mode = {"<font color='purple'>
Hotkey-Mode: (hotkey-mode must be on)
\tTAB = toggle hotkey-mode
\ta = left
\ts = down
\td = right
\tw = up
\tq = unequip active module
\tt = say
\to = OOC
\tx = cycle active modules
\tb = resist
\tz = activate held object (or y)
\tf = cycle-intents-left
\tg = cycle-intents-right
\t1 = activate module 1
\t2 = activate module 2
\t3 = activate module 3
\t4 = toggle intents
</font>"}
var/other = {"<font color='purple'>
Any-Mode: (hotkey doesn't need to be on)
\tCtrl+a = left
\tCtrl+s = down
\tCtrl+d = right
\tCtrl+w = up
\tCtrl+q = unequip active module
\tCtrl+x = cycle active modules
\tCtrl+b = resist
\tCtrl+o = OOC
\tCtrl+z = activate held object (or Ctrl+y)
\tCtrl+f = cycle-intents-left
\tCtrl+g = cycle-intents-right
\tCtrl+1 = activate module 1
\tCtrl+2 = activate module 2
\tCtrl+3 = activate module 3
\tCtrl+4 = toggle intents
\tDEL = pull
\tINS = toggle intents
\tPGUP = cycle active modules
\tPGDN = activate held object
</font>"}
src << hotkey_mode
src << other
// Needed to circumvent a bug where .winset does not work when used on the window.on-size event in skins.
// Used by /datum/html_interface/nanotrasen (code/modules/html_interface/nanotrasen/nanotrasen.dm)
/client/verb/_swinset(var/x as text)
set name = ".swinset"
set hidden = 1
winset(src, null, x)
+880
View File
@@ -0,0 +1,880 @@
macro "default"
elem
name = "TAB"
command = ".winset \"mainwindow.macro=hotkeys mapwindow.map.focus=true input.background-color=#e0e0e0\""
elem
name = "CENTER+REP"
command = ".center"
elem
name = "NORTHEAST"
command = ".northeast"
elem
name = "SOUTHEAST"
command = ".southeast"
elem
name = "SOUTHWEST"
command = ".southwest"
elem
name = "NORTHWEST"
command = ".northwest"
elem
name = "CTRL+WEST"
command = "westface"
elem
name = "WEST+REP"
command = ".west"
elem
name = "CTRL+NORTH"
command = "northface"
elem
name = "NORTH+REP"
command = ".north"
elem
name = "CTRL+EAST"
command = "eastface"
elem
name = "EAST+REP"
command = ".east"
elem
name = "CTRL+SOUTH"
command = "southface"
elem
name = "SOUTH+REP"
command = ".south"
elem
name = "INSERT"
command = "a-intent right"
elem
name = "DELETE"
command = "delete-key-pressed"
elem
name = "CTRL+1"
command = "a-intent help"
elem
name = "CTRL+2"
command = "a-intent disarm"
elem
name = "CTRL+3"
command = "a-intent grab"
elem
name = "CTRL+4"
command = "a-intent harm"
elem
name = "CTRL+A+REP"
command = ".west"
elem
name = "CTRL+B"
command = "resist"
elem
name = "CTRL+D+REP"
command = ".east"
elem
name = "CTRL+E"
command = "quick-equip"
elem
name = "CTRL+F"
command = "a-intent left"
elem
name = "CTRL+G"
command = "a-intent right"
elem
name = "CTRL+Q"
command = ".northwest"
elem
name = "CTRL+R"
command = ".southwest"
elem
name = "CTRL+S+REP"
command = ".south"
elem
name = "CTRL+W+REP"
command = ".north"
elem
name = "CTRL+X"
command = ".northeast"
elem
name = "CTRL+Y"
command = "Activate-Held-Object"
elem
name = "CTRL+Z"
command = "Activate-Held-Object"
elem
name = "F1"
command = "adminhelp"
elem
name = "CTRL+SHIFT+F1+REP"
command = ".options"
elem
name = "F2+REP"
command = ".screenshot auto"
elem
name = "SHIFT+F2+REP"
command = ".screenshot"
elem
name = "F5"
command = "Aghost"
elem
name = "CTRL+O"
command = "ooc"
elem
name = "F6"
command = "Player-Panel"
elem
name = "F7"
command = "Admin-PM"
elem
name = "F8"
command = "Invisimin"
elem
name = "F12"
command = "F12"
macro "hotkeys"
elem
name = "TAB"
command = ".winset \"mainwindow.macro=default input.focus=true input.background-color=#d3b5b5\""
elem
name = "CENTER+REP"
command = ".center"
elem
name = "NORTHEAST"
command = ".northeast"
elem
name = "SOUTHEAST"
command = ".southeast"
elem
name = "SOUTHWEST"
command = ".southwest"
elem
name = "NORTHWEST"
command = ".northwest"
elem
name = "CTRL+WEST"
command = "westface"
elem
name = "WEST+REP"
command = ".west"
elem
name = "CTRL+NORTH"
command = "northface"
elem
name = "NORTH+REP"
command = ".north"
elem
name = "CTRL+EAST"
command = "eastface"
elem
name = "EAST+REP"
command = ".east"
elem
name = "CTRL+SOUTH"
command = "southface"
elem
name = "SOUTH+REP"
command = ".south"
elem
name = "INSERT"
command = "a-intent right"
elem
name = "DELETE"
command = "delete-key-pressed"
elem
name = "1"
command = "a-intent help"
elem
name = "CTRL+1"
command = "a-intent help"
elem
name = "2"
command = "a-intent disarm"
elem
name = "CTRL+2"
command = "a-intent disarm"
elem
name = "3"
command = "a-intent grab"
elem
name = "CTRL+3"
command = "a-intent grab"
elem
name = "4"
command = "a-intent harm"
elem
name = "CTRL+4"
command = "a-intent harm"
elem
name = "A+REP"
command = ".west"
elem
name = "CTRL+A+REP"
command = ".west"
elem
name = "B"
command = "resist"
elem
name = "CTRL+B"
command = "resist"
elem
name = "D+REP"
command = ".east"
elem
name = "CTRL+D+REP"
command = ".east"
elem
name = "E"
command = "quick-equip"
elem
name = "CTRL+E"
command = "quick-equip"
elem
name = "F"
command = "a-intent left"
elem
name = "CTRL+F"
command = "a-intent left"
elem
name = "G"
command = "a-intent right"
elem
name = "CTRL+G"
command = "a-intent right"
elem
name = "M"
command = "me"
elem
name = "O"
command = "ooc"
elem
name = "CTRL+O"
command = "ooc"
elem
name = "Q"
command = ".northwest"
elem
name = "CTRL+Q"
command = ".northwest"
elem
name = "R"
command = ".southwest"
elem
name = "CTRL+R"
command = ".southwest"
elem "s_key"
name = "S+REP"
command = ".south"
elem
name = "CTRL+S+REP"
command = ".south"
elem
name = "T"
command = "say"
elem "w_key"
name = "W+REP"
command = ".north"
elem
name = "CTRL+W+REP"
command = ".north"
elem
name = "X"
command = ".northeast"
elem
name = "CTRL+X"
command = ".northeast"
elem
name = "Y"
command = "Activate-Held-Object"
elem
name = "CTRL+Y"
command = "Activate-Held-Object"
elem
name = "Z"
command = "Activate-Held-Object"
elem
name = "CTRL+Z"
command = "Activate-Held-Object"
elem
name = "F1"
command = "adminhelp"
elem
name = "CTRL+SHIFT+F1+REP"
command = ".options"
elem
name = "F2+REP"
command = ".screenshot auto"
elem
name = "SHIFT+F2+REP"
command = ".screenshot"
elem
name = "F5"
command = "Aghost"
elem
name = "F6"
command = "Player-Panel"
elem
name = "F7"
command = "Admin-PM"
elem
name = "F8"
command = "Invisimin"
elem
name = "F12"
command = "F12"
macro "robot-default"
elem
name = "TAB"
command = ".winset \"mainwindow.macro=robot-hotkeys mapwindow.map.focus=true input.background-color=#e0e0e0\""
elem
name = "CENTER+REP"
command = ".center"
elem
name = "NORTHEAST"
command = ".northeast"
elem
name = "SOUTHEAST"
command = ".southeast"
elem
name = "NORTHWEST"
command = "unequip-module"
elem
name = "CTRL+WEST"
command = "westface"
elem
name = "WEST+REP"
command = ".west"
elem
name = "CTRL+NORTH"
command = "northface"
elem
name = "NORTH+REP"
command = ".north"
elem
name = "CTRL+EAST"
command = "eastface"
elem
name = "EAST+REP"
command = ".east"
elem
name = "CTRL+SOUTH"
command = "southface"
elem
name = "SOUTH+REP"
command = ".south"
elem
name = "INSERT"
command = "a-intent right"
elem
name = "DELETE"
command = "delete-key-pressed"
elem
name = "CTRL+1"
command = "toggle-module 1"
elem
name = "CTRL+2"
command = "toggle-module 2"
elem
name = "CTRL+3"
command = "toggle-module 3"
elem
name = "CTRL+4"
command = "a-intent left"
elem
name = "CTRL+A+REP"
command = ".west"
elem
name = "CTRL+B"
command = "resist"
elem
name = "CTRL+O"
command = "ooc"
elem
name = "CTRL+D+REP"
command = ".east"
elem
name = "CTRL+F"
command = "a-intent left"
elem
name = "CTRL+G"
command = "a-intent right"
elem
name = "CTRL+Q"
command = "unequip-module"
elem
name = "CTRL+S+REP"
command = ".south"
elem
name = "CTRL+W+REP"
command = ".north"
elem
name = "CTRL+X"
command = ".northeast"
elem
name = "CTRL+Y"
command = "Activate-Held-Object"
elem
name = "CTRL+Z"
command = "Activate-Held-Object"
elem
name = "F1"
command = "adminhelp"
elem
name = "CTRL+SHIFT+F1+REP"
command = ".options"
elem
name = "F2+REP"
command = ".screenshot auto"
elem
name = "SHIFT+F2+REP"
command = ".screenshot"
elem
name = "F5"
command = "Aghost"
elem
name = "F6"
command = "Player-Panel"
elem
name = "F7"
command = "Admin-PM"
elem
name = "F8"
command = "Invisimin"
elem
name = "F12"
command = "F12"
macro "robot-hotkeys"
elem
name = "TAB"
command = ".winset \"mainwindow.macro=robot-default input.focus=true input.background-color=#d3b5b5\""
elem
name = "CENTER+REP"
command = ".center"
elem
name = "NORTHEAST"
command = ".northeast"
elem
name = "SOUTHEAST"
command = ".southeast"
elem
name = "NORTHWEST"
command = "unequip-module"
elem
name = "CTRL+WEST"
command = "westface"
elem
name = "WEST+REP"
command = ".west"
elem
name = "CTRL+NORTH"
command = "northface"
elem
name = "NORTH+REP"
command = ".north"
elem
name = "CTRL+EAST"
command = "eastface"
elem
name = "EAST+REP"
command = ".east"
elem
name = "CTRL+SOUTH"
command = "southface"
elem
name = "SOUTH+REP"
command = ".south"
elem
name = "INSERT"
command = "a-intent right"
elem
name = "DELETE"
command = "delete-key-pressed"
elem
name = "1"
command = "toggle-module 1"
elem
name = "CTRL+1"
command = "toggle-module 1"
elem
name = "2"
command = "toggle-module 2"
elem
name = "CTRL+2"
command = "toggle-module 2"
elem
name = "3"
command = "toggle-module 3"
elem
name = "CTRL+3"
command = "toggle-module 3"
elem
name = "4"
command = "a-intent left"
elem
name = "CTRL+4"
command = "a-intent left"
elem
name = "A+REP"
command = ".west"
elem
name = "CTRL+A+REP"
command = ".west"
elem
name = "B"
command = "resist"
elem
name = "CTRL+B"
command = "resist"
elem
name = "O"
command = "ooc"
elem
name = "CTRL+O"
command = "ooc"
elem
name = "D+REP"
command = ".east"
elem
name = "CTRL+D+REP"
command = ".east"
elem
name = "F"
command = "a-intent left"
elem
name = "CTRL+F"
command = "a-intent left"
elem
name = "G"
command = "a-intent right"
elem
name = "CTRL+G"
command = "a-intent right"
elem
name = "Q"
command = "unequip-module"
elem
name = "CTRL+Q"
command = "unequip-module"
elem "s_key"
name = "S+REP"
command = ".south"
elem
name = "CTRL+S+REP"
command = ".south"
elem
name = "T"
command = "say"
elem "w_key"
name = "W+REP"
command = ".north"
elem
name = "CTRL+W+REP"
command = ".north"
elem
name = "X"
command = ".northeast"
elem
name = "CTRL+X"
command = ".northeast"
elem
name = "Y"
command = "Activate-Held-Object"
elem
name = "CTRL+Y"
command = "Activate-Held-Object"
elem
name = "Z"
command = "Activate-Held-Object"
elem
name = "CTRL+Z"
command = "Activate-Held-Object"
elem
name = "F1"
command = "adminhelp"
elem
name = "CTRL+SHIFT+F1+REP"
command = ".options"
elem
name = "F2+REP"
command = ".screenshot auto"
elem
name = "SHIFT+F2+REP"
command = ".screenshot"
elem
name = "F5"
command = "Aghost"
elem
name = "F6"
command = "Player-Panel"
elem
name = "F7"
command = "Admin-PM"
elem
name = "F8"
command = "Invisimin"
elem
name = "F12"
command = "F12"
menu "menu"
elem
name = "&File"
elem
name = "&Quick screenshot\tF2"
category = "&File"
command = ".screenshot auto"
elem
name = "&Save screenshot as...\tShift+F2"
category = "&File"
command = ".screenshot"
elem
name = ""
category = "&File"
elem
name = "&Reconnect"
category = "&File"
command = ".reconnect"
elem
name = "&Quit\tAlt-F4"
category = "&File"
command = ".quit"
elem
name = "&Icons"
elem "auto"
name = "&Auto (stretch-to-fit)"
category = "&Icons"
group = "size"
command = ".winset \"mapwindow.map.icon-size=0\""
can-check = true
is-checked = true
saved-params = "is-checked"
elem "icon96"
name = "&96x96 (3x)"
category = "&Icons"
group = "size"
command = ".winset \"mapwindow.map.icon-size=96\""
can-check = true
is-checked = false
saved-params = "is-checked"
elem "icon64"
name = "&64x64 (2x)"
category = "&Icons"
group = "size"
command = ".winset \"mapwindow.map.icon-size=64\""
can-check = true
is-checked = false
saved-params = "is-checked"
elem "icon48"
name = "&48x48 (1.5x)"
category = "&Icons"
group = "size"
command = ".winset \"mapwindow.map.icon-size=48\""
can-check = true
is-checked = false
saved-params = "is-checked"
elem "icon32"
name = "&32x32"
category = "&Icons"
group = "size"
command = ".winset \"mapwindow.map.icon-size=32\""
can-check = true
is-checked = false
saved-params = "is-checked"
elem
name = "&Help"
elem
name = "&Admin Help\tF1"
category = "&Help"
command = "adminhelp"
elem
name = "&Hotkeys"
category = "&Help"
command = "hotkeys-help"
window "mainwindow"
elem "mainwindow"
type = MAIN
size = 640x440
is-default = true
icon = 'icons\\ss13_64.png'
menu = "menu"
macro = "macro"
saved-params = "pos;size;is-minimized;is-maximized"
elem "split"
type = CHILD
pos = 3,0
size = 634x417
anchor1 = 0,0
anchor2 = 100,100
is-vert = true
splitter = 50
show-splitter = true
left = "mapwindow"
right = "infowindow"
saved-params = "splitter"
elem "input"
type = INPUT
pos = 5,420
size = 595x20
anchor1 = 0,100
anchor2 = 100,100
is-default = true
font-family = ""
font-size = 10
font-style = ""
text-color = #000000
background-color = #d3b5b5
saved-params = "command"
elem "say"
type = BUTTON
button-type = pushbox
pos = 600,420
size = 37x20
anchor1 = 100,100
anchor2 = none
is-flat = true
text = "Chat"
command = ".winset \"say.is-checked=true ? input.command=\"!say \\\"\" : input.command=\""
is-checked = false
saved-params = "is-checked"
elem "asset_cache_browser"
type = BROWSER
is-visible = false
elem "tooltip"
type = BROWSER
pos = 0,0
size = 999x999
is-visible = false
window "mapwindow"
elem "mapwindow"
type = MAIN
is-pane = true
saved-params = "pos;size;is-minimized;is-maximized"
elem "map"
type = MAP
is-default = true
size = 640x480
anchor1 = 0,0
anchor2 = 100,100
font-family = "Arial"
font-size = 7
font-style = ""
text-color = none
background-color = none
icon-size = 0
saved-params = "icon-size"
window "infowindow"
elem "infowindow"
type = MAIN
is-pane = true
saved-params = "pos;size;is-minimized;is-maximized"
elem "info"
type = CHILD
pos = 0,30
size = 640x445
anchor1 = 0,0
anchor2 = 100,100
is-vert = false
splitter = 50
show-splitter = true
left = "statwindow"
right = "outputwindow"
saved-params = "splitter"
elem "changelog"
type = BUTTON
button-type = pushbutton
pos = 16,5
size = 104x20
anchor1 = 3,0
anchor2 = 19,0
text = "Changelog"
command = "changelog"
elem "rules"
type = BUTTON
button-type = pushbutton
pos = 120,5
size = 100x20
anchor1 = 19,0
anchor2 = 34,0
text = "Rules"
command = "rules"
elem "wiki"
type = BUTTON
button-type = pushbutton
pos = 220,5
size = 100x20
anchor1 = 34,0
anchor2 = 50,0
text = "Wiki"
command = "wiki"
elem "forum"
type = BUTTON
button-type = pushbutton
pos = 320,5
size = 100x20
anchor1 = 50,0
anchor2 = 66,0
text = "Forum"
command = "forum"
elem "github"
type = BUTTON
button-type = pushbutton
pos = 420,5
size = 100x20
anchor1 = 66,0
anchor2 = 81,0
text = "Github"
command = "github"
elem "report-issue"
type = BUTTON
button-type = pushbutton
pos = 520,5
size = 100x20
anchor1 = 81,0
anchor2 = 97,0
text = "Report Issue"
command = "report-issue"
window "outputwindow"
elem "outputwindow"
type = MAIN
is-pane = true
saved-params = "pos;size;is-minimized;is-maximized"
elem "output"
type = OUTPUT
is-default = true
size = 640x480
anchor1 = 0,0
anchor2 = 100,100
font-family = ""
font-size = 0
font-style = ""
text-color = #000000
background-color = #ffffff
window "statwindow"
elem "statwindow"
type = MAIN
is-pane = true
saved-params = "pos;size;is-minimized;is-maximized"
elem "stat"
type = INFO
is-default = true
size = 640x480
anchor1 = 0,0
anchor2 = 100,100
font-family = ""
font-size = 0
font-style = ""
text-color = #000000
background-color = #ffffff
allow-html = true
multi-line = true
+138
View File
@@ -0,0 +1,138 @@
/client/script = {"<style>
body {font-family: Verdana, sans-serif;}
h1, h2, h3, h4, h5, h6 {color: #0000ff; font-family: Georgia, Verdana, sans-serif;}
em {font-style: normal; font-weight: bold;}
.motd {color: #638500; font-family: Verdana, sans-serif;}
.motd h1, .motd h2, .motd h3, .motd h4, .motd h5, .motd h6
{color: #638500; text-decoration: underline;}
.motd a, .motd a:link, .motd a:visited, .motd a:active, .motd a:hover
{color: #638500;}
.italics { font-style: italic;}
.prefix { font-weight: bold;}
.ooc { font-weight: bold;}
.adminobserverooc {color: #0099cc; font-weight: bold;}
.adminooc {color: #700038; font-weight: bold;}
.adminobserver {color: #996600; font-weight: bold;}
.admin {color: #386aff; font-weight: bold;}
.name { font-weight: bold;}
.say {}
.deadsay {color: #5c00e6;}
.radio {color: #008000;}
.sciradio {color: #993399;}
.comradio {color: #aca82d;}
.secradio {color: #b22222;}
.medradio {color: #337296;}
.engradio {color: #fb5613;}
.suppradio {color: #a8732b;}
.servradio {color: #6eaa2c;}
.syndradio {color: #6d3f40;}
.centcomradio {color: #686868;}
.aiprivradio {color: #ff00ff;}
.yell { font-weight: bold;}
.alert {color: #ff0000;}
h1.alert, h2.alert {color: #000000;}
.emote { font-style: italic;}
.selecteddna {color: #ffffff; background-color: #001B1B}
.attack {color: #ff0000;}
.disarm {color: #990000;}
.passive {color: #660000;}
.userdanger {color: #ff0000; font-weight: bold; font-size: 3;}
.danger {color: #ff0000;}
.warning {color: #ff0000; font-style: italic;}
.boldwarning {color: #ff0000; font-style: italic; font-weight: bold}
.announce {color: #228b22; font-weight: bold;}
.boldannounce {color: #ff0000; font-weight: bold;}
.greenannounce {color: #00ff00; font-weight: bold;}
.rose {color: #ff5050;}
.info {color: #0000CC;}
.notice {color: #000099;}
.boldnotice {color: #000099; font-weight: bold;}
.adminnotice {color: #0000ff;}
.unconscious {color: #0000ff; font-weight: bold;}
.suicide {color: #ff5050; font-style: italic;}
.green {color: #03ff39;}
.shadowling {color: #3b2769;}
.cult {color: #960000;}
.cultitalic {color: #960000; font-style: italic;}
.cultlarge {color: #960000; font-weight: bold; font-size: 3;}
.narsie {color: #960000; font-weight: bold; font-size: 15;}
.purple {color: #5e2d79;}
.holoparasite {color: #35333a;}
.holoparasitebold {color: #35333a; font-weight: bold;}
.revennotice {color: #1d2953;}
.revenboldnotice {color: #1d2953; font-weight: bold;}
.revenbignotice {color: #1d2953; font-weight: bold; font-size: 3;}
.revenminor {color: #823abb}
.revenwarning {color: #760fbb; font-style: italic;}
.revendanger {color: #760fbb; font-weight: bold; font-size: 3;}
.umbra {color: #5000A0;}
.umbra_bold {color: #5000A0; font-weight: bold;}
.umbra_italics {color: #5000A0; font-style: italic;}
.umbra_emphasis {color: #5000A0; font-weight: bold; font-style: italic;}
.umbra_large {color: #5000A0; font-size: 3;}
.brass {color: #BE8700;}
.heavy_brass {color: #BE8700; font-weight: bold; font-style: italic;}
.large_brass {color: #BE8700; font-size: 3;}
.big_brass {color: #BE8700; font-size: 3; font-weight: bold; font-style: italic;}
.alloy {color: #42474D;}
.heavy_alloy {color: #42474D; font-weight: bold; font-style: italic;}
.large_alloy {color: #42474D; font-size: 3;}
.nezbere_large {color: #42474D; font-size: 3; font-weight: bold; font-style: italic;}
.nezbere {color: #42474D; font-weight: bold; font-style: italic;}
.nezbere_small {color: #42474D;}
.sevtug_large {color: #AF0AAF; font-size: 3; font-weight: bold; font-style: italic;}
.sevtug {color: #AF0AAF; font-weight: bold; font-style: italic;}
.sevtug_small {color: #AF0AAF;}
.inathneq_large {color: #1E8CE1; font-size: 3; font-weight: bold; font-style: italic;}
.inathneq {color: #1E8CE1; font-weight: bold; font-style: italic;}
.inathneq_small {color: #1E8CE1;}
.nzcrentr_large {color: #DAAA18; font-size: 3; font-weight: bold; font-style: italic;}
.nzcrentr {color: #DAAA18; font-weight: bold; font-style: italic;}
.nzcrentr_small {color: #DAAA18;}
.neovgre_large {color: #6E001A; font-size: 3; font-weight: bold; font-style: italic;}
.neovgre {color: #6E001A; font-weight: bold; font-style: italic;}
.neovgre_small {color: #6E001A;}
.newscaster {color: #800000;}
.ghostalert {color: #5c00e6; font-style: italic; font-weight: bold;}
.alien {color: #543354;}
.noticealien {color: #00c000;}
.alertalien {color: #00c000; font-weight: bold;}
.interface {color: #330033;}
.sans {font-family: "Comic Sans MS", cursive, sans-serif;}
.papyrus {font-family: "Papyrus", cursive, sans-serif;}
.robot {font-family: "Courier New", cursive, sans-serif;}
.command_headset {font-weight: bold; font-size: 3;}
.big {font-size: 3;}
.reallybig {font-size: 4;}
.greentext {color: #00FF00; font-size: 3;}
.redtext {color: #FF0000; font-size: 3;}
.clown {color: #FF69Bf; font-size: 3; font-family: "Comic Sans MS", cursive, sans-serif; font-weight: bold;}
BIG IMG.icon {width: 32px; height: 32px;}
.memo {color: #638500; text-align: center;}
.memoedit {text-align: center; font-size: 2;}
.abductor {color: #800080; font-style: italic;}
</style>"}