From 8de9a63e78ed3a426b8bbf6a34a9284771c7c44d Mon Sep 17 00:00:00 2001 From: Shadowmech88 Date: Tue, 12 Jan 2016 14:46:12 -0600 Subject: [PATCH] Committing these because it seems to be the only way to get rid of them ever. --- tools/Redirector/Configurations.dm | 106 +- tools/Redirector/Redirect_Tgstation.dme | 42 +- tools/Redirector/Redirector.dm | 168 +- tools/Redirector/config.txt | 24 +- tools/Redirector/skin.dmf | 298 +- tools/Redirector/textprocs.dm | 298 +- tools/Runtime Condenser/Input.txt | 8878 +++++++++++------------ tools/Runtime Condenser/Main.cpp | 628 +- tools/Runtime Condenser/Output.txt | 380 +- tools/expand_filedir_paths.py | 180 +- 10 files changed, 5501 insertions(+), 5501 deletions(-) diff --git a/tools/Redirector/Configurations.dm b/tools/Redirector/Configurations.dm index 80d569fd897..7ae462ade2c 100644 --- a/tools/Redirector/Configurations.dm +++ b/tools/Redirector/Configurations.dm @@ -1,54 +1,54 @@ -/* - Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. - (2012) - */ - -var/list/config_stream = list() -var/list/servers = list() -var/list/servernames = list() -var/list/adminfiles = list() -var/list/adminkeys = list() - -proc/gen_configs() - - - config_stream = dd_file2list("config.txt") - - var/server_gen = 0 // if the stream is looking for servers - var/admin_gen = 0 // if the stream is looking for admins - for(var/line in config_stream) - - if(line == "\[SERVERS\]") - server_gen = 1 - if(admin_gen) - admin_gen = 0 - - else if(line == "\[ADMINS\]") - admin_gen = 1 - if(server_gen) - server_gen = 0 - - else - if(findtext(line, ".") && !findtext(line, "##")) - if(server_gen) - var/filterline = replacetext(line, " ", "") - var/serverlink = copytext(filterline, findtext( filterline, ")") + 1) - servers.Add(serverlink) - servernames.Add( copytext(line, findtext(line, "("), findtext(line, ")") + 1)) - - else if(admin_gen) - adminfiles.Add(line) +/* + Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. + (2012) + */ + +var/list/config_stream = list() +var/list/servers = list() +var/list/servernames = list() +var/list/adminfiles = list() +var/list/adminkeys = list() + +proc/gen_configs() + + + config_stream = dd_file2list("config.txt") + + var/server_gen = 0 // if the stream is looking for servers + var/admin_gen = 0 // if the stream is looking for admins + for(var/line in config_stream) + + if(line == "\[SERVERS\]") + server_gen = 1 + if(admin_gen) + admin_gen = 0 + + else if(line == "\[ADMINS\]") + admin_gen = 1 + if(server_gen) + server_gen = 0 + + else + if(findtext(line, ".") && !findtext(line, "##")) + if(server_gen) + var/filterline = replacetext(line, " ", "") + var/serverlink = copytext(filterline, findtext( filterline, ")") + 1) + servers.Add(serverlink) + servernames.Add( copytext(line, findtext(line, "("), findtext(line, ")") + 1)) + + else if(admin_gen) + adminfiles.Add(line) to_chat(world, line) - - - // Generate the list of admins now - - for(var/file in adminfiles) - var/admin_config_stream = dd_file2list(file) - - for(var/line in admin_config_stream) - - var/akey = copytext(line, 1, findtext(line, " ")) - adminkeys.Add(akey) - - + + + // Generate the list of admins now + + for(var/file in adminfiles) + var/admin_config_stream = dd_file2list(file) + + for(var/line in admin_config_stream) + + var/akey = copytext(line, 1, findtext(line, " ")) + adminkeys.Add(akey) + + diff --git a/tools/Redirector/Redirect_Tgstation.dme b/tools/Redirector/Redirect_Tgstation.dme index 5868a234d54..f7d4229bf97 100644 --- a/tools/Redirector/Redirect_Tgstation.dme +++ b/tools/Redirector/Redirect_Tgstation.dme @@ -1,21 +1,21 @@ -// DM Environment file for Redirect_Tgstation.dme. -// All manual changes should be made outside the BEGIN_ and END_ blocks. -// New source code should be placed in .dm files: choose File/New --> Code File. - -// BEGIN_INTERNALS -// END_INTERNALS - -// BEGIN_FILE_DIR -#define FILE_DIR . -// END_FILE_DIR - -// BEGIN_PREFERENCES -// END_PREFERENCES - -// BEGIN_INCLUDE -#include "Configurations.dm" -#include "Redirector.dm" -#include "textprocs.dm" -#include "skin.dmf" -// END_INCLUDE - +// DM Environment file for Redirect_Tgstation.dme. +// All manual changes should be made outside the BEGIN_ and END_ blocks. +// New source code should be placed in .dm files: choose File/New --> Code File. + +// BEGIN_INTERNALS +// END_INTERNALS + +// BEGIN_FILE_DIR +#define FILE_DIR . +// END_FILE_DIR + +// BEGIN_PREFERENCES +// END_PREFERENCES + +// BEGIN_INCLUDE +#include "Configurations.dm" +#include "Redirector.dm" +#include "textprocs.dm" +#include "skin.dmf" +// END_INCLUDE + diff --git a/tools/Redirector/Redirector.dm b/tools/Redirector/Redirector.dm index af311831206..81e95d2f87d 100644 --- a/tools/Redirector/Redirector.dm +++ b/tools/Redirector/Redirector.dm @@ -1,88 +1,88 @@ -/* - Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. - (2012) - */ - -/* TODO: work on server selection for detected admins */ - - -#define ADMINS 1 -#define PLAYERS 0 - -var/player_weight = 1 // players are more likely to join a server with less players -var/admin_weight = 5 // admins are more likely to join a server with less admins - -var/player_substr = "players=" // search for this substring to locate # of players -var/admin_substr = "admins=" // search for this to locate # of admins - -world - name = "TGstation Redirector" - - New() - ..() - gen_configs() - -/datum/server - var/players = 0 - var/admins = 0 - var/weight = 0 // lower weight is good; highet weight is bad - - var/link = "" - -mob/Login() - ..() - - var/list/weights = list() - var/list/servers = list() - for(var/x in global.servers) - +/* + Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. + (2012) + */ + +/* TODO: work on server selection for detected admins */ + + +#define ADMINS 1 +#define PLAYERS 0 + +var/player_weight = 1 // players are more likely to join a server with less players +var/admin_weight = 5 // admins are more likely to join a server with less admins + +var/player_substr = "players=" // search for this substring to locate # of players +var/admin_substr = "admins=" // search for this to locate # of admins + +world + name = "TGstation Redirector" + + New() + ..() + gen_configs() + +/datum/server + var/players = 0 + var/admins = 0 + var/weight = 0 // lower weight is good; highet weight is bad + + var/link = "" + +mob/Login() + ..() + + var/list/weights = list() + var/list/servers = list() + for(var/x in global.servers) + to_chat(world, "[x] [servernames[ global.servers.Find(x) ]]") - - var/info = world.Export("[x]?status") - var/datum/server/S = new() - S.players = extract(info, PLAYERS) - S.admins = extract(info, ADMINS) - - S.weight += player_weight * S.players - S.link = x - + + var/info = world.Export("[x]?status") + var/datum/server/S = new() + S.players = extract(info, PLAYERS) + S.admins = extract(info, ADMINS) + + S.weight += player_weight * S.players + S.link = x + to_chat(world, S.players) to_chat(world, S.admins) - - weights.Add(S.weight) - servers.Add(S) - - var/lowest = min(weights) - var/serverlink - for(var/datum/server/S in servers) - if(S.weight == lowest) - serverlink = S.link - + + weights.Add(S.weight) + servers.Add(S) + + var/lowest = min(weights) + var/serverlink + for(var/datum/server/S in servers) + if(S.weight == lowest) + serverlink = S.link + to_chat(src, link(serverlink)) - -proc/extract(var/data, var/type = PLAYERS) - - - var/nextpos = 0 - - if(type == PLAYERS) - - nextpos = findtextEx(data, player_substr) - nextpos += length(player_substr) - - else - - nextpos = findtextEx(data, admin_substr) - nextpos += length(admin_substr) - - var/returnval = "" - - for(var/i = 1, i <= 10, i++) - - var/interval = copytext(data, nextpos + (i-1), nextpos + i) - if(interval == "&") - break - else - returnval += interval - - return returnval + +proc/extract(var/data, var/type = PLAYERS) + + + var/nextpos = 0 + + if(type == PLAYERS) + + nextpos = findtextEx(data, player_substr) + nextpos += length(player_substr) + + else + + nextpos = findtextEx(data, admin_substr) + nextpos += length(admin_substr) + + var/returnval = "" + + for(var/i = 1, i <= 10, i++) + + var/interval = copytext(data, nextpos + (i-1), nextpos + i) + if(interval == "&") + break + else + returnval += interval + + return returnval diff --git a/tools/Redirector/config.txt b/tools/Redirector/config.txt index 4b409f5036b..4cf2d6bd79f 100644 --- a/tools/Redirector/config.txt +++ b/tools/Redirector/config.txt @@ -1,12 +1,12 @@ -[SERVERS] -## Simply enter a list of servers to poll. Be sure to specify a server name in parentheses. - -(Sibyl #1) byond://game.nanotrasen.com:1337 - -(Sibyl #2) byond://game.nanotrasen.com:2337 - - -[ADMINS] -## Specify some standard Windows filepaths (you may use relative paths) for admin txt lists to poll. - -C:\SS13\config\admins.txt +[SERVERS] +## Simply enter a list of servers to poll. Be sure to specify a server name in parentheses. + +(Sibyl #1) byond://game.nanotrasen.com:1337 + +(Sibyl #2) byond://game.nanotrasen.com:2337 + + +[ADMINS] +## Specify some standard Windows filepaths (you may use relative paths) for admin txt lists to poll. + +C:\SS13\config\admins.txt diff --git a/tools/Redirector/skin.dmf b/tools/Redirector/skin.dmf index ffb7b3ddf3c..2a3e8a734c4 100644 --- a/tools/Redirector/skin.dmf +++ b/tools/Redirector/skin.dmf @@ -1,149 +1,149 @@ -macro "macro" - elem - name = "North+REP" - command = ".north" - is-disabled = false - elem - name = "South+REP" - command = ".south" - is-disabled = false - elem - name = "East+REP" - command = ".east" - is-disabled = false - elem - name = "West+REP" - command = ".west" - is-disabled = false - elem - name = "Northeast+REP" - command = ".northeast" - is-disabled = false - elem - name = "Northwest+REP" - command = ".northwest" - is-disabled = false - elem - name = "Southeast+REP" - command = ".southeast" - is-disabled = false - elem - name = "Southwest+REP" - command = ".southwest" - is-disabled = false - elem - name = "Center+REP" - command = ".center" - is-disabled = false - - -menu "menu" - elem - name = "&Quit" - command = ".quit" - category = "&File" - is-checked = false - can-check = false - group = "" - is-disabled = false - saved-params = "is-checked" - - -window "window" - elem "window" - type = MAIN - pos = 281,0 - size = 594x231 - anchor1 = none - anchor2 = none - font-family = "" - font-size = 0 - font-style = "" - text-color = #000000 - background-color = #000000 - is-visible = false - is-disabled = false - is-transparent = false - is-default = true - border = none - drop-zone = false - right-click = false - saved-params = "pos;size;is-minimized;is-maximized" - on-size = "" - title = "" - titlebar = true - statusbar = false - can-close = true - can-minimize = true - can-resize = true - is-pane = false - is-minimized = false - is-maximized = false - can-scroll = none - icon = "" - image = "" - image-mode = stretch - keep-aspect = false - transparent-color = none - alpha = 255 - macro = "macro" - menu = "" - on-close = "" - elem "servers" - type = GRID - pos = 8,8 - size = 576x152 - anchor1 = none - anchor2 = none - font-family = "" - font-size = 0 - font-style = "" - text-color = #ffffff - background-color = #000000 - is-visible = true - is-disabled = false - is-transparent = false - is-default = false - border = none - drop-zone = true - right-click = false - saved-params = "" - on-size = "" - cells = 1x1 - current-cell = 1,1 - show-lines = none - small-icons = true - show-names = true - enable-http-images = false - link-color = #0000ff - visited-color = #ff00ff - line-color = #c0c0c0 - style = "" - is-list = false - elem "output1" - type = OUTPUT - pos = 8,168 - size = 576x56 - anchor1 = none - anchor2 = none - font-family = "" - font-size = 0 - font-style = "" - text-color = #ffffff - background-color = #000000 - is-visible = true - is-disabled = false - is-transparent = false - is-default = true - border = none - drop-zone = false - right-click = false - saved-params = "max-lines" - on-size = "" - link-color = #0000ff - visited-color = #ff00ff - style = "" - enable-http-images = false - max-lines = 1000 - image = "" - +macro "macro" + elem + name = "North+REP" + command = ".north" + is-disabled = false + elem + name = "South+REP" + command = ".south" + is-disabled = false + elem + name = "East+REP" + command = ".east" + is-disabled = false + elem + name = "West+REP" + command = ".west" + is-disabled = false + elem + name = "Northeast+REP" + command = ".northeast" + is-disabled = false + elem + name = "Northwest+REP" + command = ".northwest" + is-disabled = false + elem + name = "Southeast+REP" + command = ".southeast" + is-disabled = false + elem + name = "Southwest+REP" + command = ".southwest" + is-disabled = false + elem + name = "Center+REP" + command = ".center" + is-disabled = false + + +menu "menu" + elem + name = "&Quit" + command = ".quit" + category = "&File" + is-checked = false + can-check = false + group = "" + is-disabled = false + saved-params = "is-checked" + + +window "window" + elem "window" + type = MAIN + pos = 281,0 + size = 594x231 + anchor1 = none + anchor2 = none + font-family = "" + font-size = 0 + font-style = "" + text-color = #000000 + background-color = #000000 + is-visible = false + is-disabled = false + is-transparent = false + is-default = true + border = none + drop-zone = false + right-click = false + saved-params = "pos;size;is-minimized;is-maximized" + on-size = "" + title = "" + titlebar = true + statusbar = false + can-close = true + can-minimize = true + can-resize = true + is-pane = false + is-minimized = false + is-maximized = false + can-scroll = none + icon = "" + image = "" + image-mode = stretch + keep-aspect = false + transparent-color = none + alpha = 255 + macro = "macro" + menu = "" + on-close = "" + elem "servers" + type = GRID + pos = 8,8 + size = 576x152 + anchor1 = none + anchor2 = none + font-family = "" + font-size = 0 + font-style = "" + text-color = #ffffff + background-color = #000000 + is-visible = true + is-disabled = false + is-transparent = false + is-default = false + border = none + drop-zone = true + right-click = false + saved-params = "" + on-size = "" + cells = 1x1 + current-cell = 1,1 + show-lines = none + small-icons = true + show-names = true + enable-http-images = false + link-color = #0000ff + visited-color = #ff00ff + line-color = #c0c0c0 + style = "" + is-list = false + elem "output1" + type = OUTPUT + pos = 8,168 + size = 576x56 + anchor1 = none + anchor2 = none + font-family = "" + font-size = 0 + font-style = "" + text-color = #ffffff + background-color = #000000 + is-visible = true + is-disabled = false + is-transparent = false + is-default = true + border = none + drop-zone = false + right-click = false + saved-params = "max-lines" + on-size = "" + link-color = #0000ff + visited-color = #ff00ff + style = "" + enable-http-images = false + max-lines = 1000 + image = "" + diff --git a/tools/Redirector/textprocs.dm b/tools/Redirector/textprocs.dm index b8d49ade72f..07440f9f4a7 100644 --- a/tools/Redirector/textprocs.dm +++ b/tools/Redirector/textprocs.dm @@ -1,150 +1,150 @@ -/* - Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. - (2012) - - NOTE: The below functions are part of BYOND user Deadron's "TextHandling" library. - [ http://www.byond.com/developer/Deadron/TextHandling ] - */ - - -proc - /////////////////// - // Reading files // - /////////////////// - dd_file2list(file_path, separator = "\n") - var/file - if (isfile(file_path)) - file = file_path - else - file = file(file_path) - return dd_text2list(file2text(file), separator) - - - //////////////////// - // Replacing text // - //////////////////// - dd_replacetext(text, search_string, replacement_string) - // A nice way to do this is to split the text into an array based on the search_string, - // then put it back together into text using replacement_string as the new separator. - var/list/textList = dd_text2list(text, search_string) - return dd_list2text(textList, replacement_string) - - - dd_replaceText(text, search_string, replacement_string) - var/list/textList = dd_text2List(text, search_string) - return dd_list2text(textList, replacement_string) - - - ///////////////////// - // Prefix checking // - ///////////////////// - dd_hasprefix(text, prefix) - var/start = 1 - var/end = lentext(prefix) + 1 - return findtext(text, prefix, start, end) - - dd_hasPrefix(text, prefix) - var/start = 1 - var/end = lentext(prefix) + 1 - return findtextEx(text, prefix, start, end) - - - ///////////////////// - // Suffix checking // - ///////////////////// - dd_hassuffix(text, suffix) - var/start = length(text) - length(suffix) - if (start) return findtext(text, suffix, start) - - dd_hasSuffix(text, suffix) - var/start = length(text) - length(suffix) - if (start) return findtextEx(text, suffix, start) - - ///////////////////////////// - // Turning text into lists // - ///////////////////////////// - dd_text2list(text, separator) - var/textlength = lentext(text) - var/separatorlength = lentext(separator) - var/list/textList = new /list() - var/searchPosition = 1 - var/findPosition = 1 - var/buggyText - while (1) // Loop forever. - findPosition = findtext(text, separator, searchPosition, 0) - buggyText = copytext(text, searchPosition, findPosition) // Everything from searchPosition to findPosition goes into a list element. - textList += "[buggyText]" // Working around weird problem where "text" != "text" after this copytext(). - - searchPosition = findPosition + separatorlength // Skip over separator. - if (findPosition == 0) // Didn't find anything at end of string so stop here. - return textList - else - if (searchPosition > textlength) // Found separator at very end of string. - textList += "" // So add empty element. - return textList - - dd_text2List(text, separator) - var/textlength = lentext(text) - var/separatorlength = lentext(separator) - var/list/textList = new /list() - var/searchPosition = 1 - var/findPosition = 1 - var/buggyText - while (1) // Loop forever. - findPosition = findtextEx(text, separator, searchPosition, 0) - buggyText = copytext(text, searchPosition, findPosition) // Everything from searchPosition to findPosition goes into a list element. - textList += "[buggyText]" // Working around weird problem where "text" != "text" after this copytext(). - - searchPosition = findPosition + separatorlength // Skip over separator. - if (findPosition == 0) // Didn't find anything at end of string so stop here. - return textList - else - if (searchPosition > textlength) // Found separator at very end of string. - textList += "" // So add empty element. - return textList - - dd_list2text(list/the_list, separator) - var/total = the_list.len - if (total == 0) // Nothing to work with. - return - - var/newText = "[the_list[1]]" // Treats any object/number as text also. - var/count - for (count = 2, count <= total, count++) - if (separator) newText += separator - newText += "[the_list[count]]" - return newText - - dd_centertext(message, length) - var/new_message = message - var/size = length(message) - if (size == length) - return new_message - if (size > length) - return copytext(new_message, 1, length + 1) - - // Need to pad text to center it. - var/delta = length - size - if (delta == 1) - // Add one space after it. - return new_message + " " - - // Is this an odd number? If so, add extra space to front. - if (delta % 2) - new_message = " " + new_message - delta-- - - // Divide delta in 2, add those spaces to both ends. - delta = delta / 2 - var/spaces = "" - for (var/count = 1, count <= delta, count++) - spaces += " " - return spaces + new_message + spaces - - dd_limittext(message, length) - // Truncates text to limit if necessary. - var/size = length(message) - if (size <= length) - return message - else +/* + Written by contributor Doohl for the /tg/station Open Source project, hosted on Google Code. + (2012) + + NOTE: The below functions are part of BYOND user Deadron's "TextHandling" library. + [ http://www.byond.com/developer/Deadron/TextHandling ] + */ + + +proc + /////////////////// + // Reading files // + /////////////////// + dd_file2list(file_path, separator = "\n") + var/file + if (isfile(file_path)) + file = file_path + else + file = file(file_path) + return dd_text2list(file2text(file), separator) + + + //////////////////// + // Replacing text // + //////////////////// + dd_replacetext(text, search_string, replacement_string) + // A nice way to do this is to split the text into an array based on the search_string, + // then put it back together into text using replacement_string as the new separator. + var/list/textList = dd_text2list(text, search_string) + return dd_list2text(textList, replacement_string) + + + dd_replaceText(text, search_string, replacement_string) + var/list/textList = dd_text2List(text, search_string) + return dd_list2text(textList, replacement_string) + + + ///////////////////// + // Prefix checking // + ///////////////////// + dd_hasprefix(text, prefix) + var/start = 1 + var/end = lentext(prefix) + 1 + return findtext(text, prefix, start, end) + + dd_hasPrefix(text, prefix) + var/start = 1 + var/end = lentext(prefix) + 1 + return findtextEx(text, prefix, start, end) + + + ///////////////////// + // Suffix checking // + ///////////////////// + dd_hassuffix(text, suffix) + var/start = length(text) - length(suffix) + if (start) return findtext(text, suffix, start) + + dd_hasSuffix(text, suffix) + var/start = length(text) - length(suffix) + if (start) return findtextEx(text, suffix, start) + + ///////////////////////////// + // Turning text into lists // + ///////////////////////////// + dd_text2list(text, separator) + var/textlength = lentext(text) + var/separatorlength = lentext(separator) + var/list/textList = new /list() + var/searchPosition = 1 + var/findPosition = 1 + var/buggyText + while (1) // Loop forever. + findPosition = findtext(text, separator, searchPosition, 0) + buggyText = copytext(text, searchPosition, findPosition) // Everything from searchPosition to findPosition goes into a list element. + textList += "[buggyText]" // Working around weird problem where "text" != "text" after this copytext(). + + searchPosition = findPosition + separatorlength // Skip over separator. + if (findPosition == 0) // Didn't find anything at end of string so stop here. + return textList + else + if (searchPosition > textlength) // Found separator at very end of string. + textList += "" // So add empty element. + return textList + + dd_text2List(text, separator) + var/textlength = lentext(text) + var/separatorlength = lentext(separator) + var/list/textList = new /list() + var/searchPosition = 1 + var/findPosition = 1 + var/buggyText + while (1) // Loop forever. + findPosition = findtextEx(text, separator, searchPosition, 0) + buggyText = copytext(text, searchPosition, findPosition) // Everything from searchPosition to findPosition goes into a list element. + textList += "[buggyText]" // Working around weird problem where "text" != "text" after this copytext(). + + searchPosition = findPosition + separatorlength // Skip over separator. + if (findPosition == 0) // Didn't find anything at end of string so stop here. + return textList + else + if (searchPosition > textlength) // Found separator at very end of string. + textList += "" // So add empty element. + return textList + + dd_list2text(list/the_list, separator) + var/total = the_list.len + if (total == 0) // Nothing to work with. + return + + var/newText = "[the_list[1]]" // Treats any object/number as text also. + var/count + for (count = 2, count <= total, count++) + if (separator) newText += separator + newText += "[the_list[count]]" + return newText + + dd_centertext(message, length) + var/new_message = message + var/size = length(message) + if (size == length) + return new_message + if (size > length) + return copytext(new_message, 1, length + 1) + + // Need to pad text to center it. + var/delta = length - size + if (delta == 1) + // Add one space after it. + return new_message + " " + + // Is this an odd number? If so, add extra space to front. + if (delta % 2) + new_message = " " + new_message + delta-- + + // Divide delta in 2, add those spaces to both ends. + delta = delta / 2 + var/spaces = "" + for (var/count = 1, count <= delta, count++) + spaces += " " + return spaces + new_message + spaces + + dd_limittext(message, length) + // Truncates text to limit if necessary. + var/size = length(message) + if (size <= length) + return message + else return copytext(message, 1, length + 1) \ No newline at end of file diff --git a/tools/Runtime Condenser/Input.txt b/tools/Runtime Condenser/Input.txt index 1262a8ee633..4d3ca077fed 100644 --- a/tools/Runtime Condenser/Input.txt +++ b/tools/Runtime Condenser/Input.txt @@ -1,4440 +1,4440 @@ -*** Begin Log: Fri Jul 13 17:04:27 2012 *** -Fri Jul 13 17:04:49 2012 -World opened on network port 2337. -Welcome BYOND! (4.0 Public Version 495.1136) -Running TG Revision Number: 4060. -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Puke Chunks (/mob/living/carbon/human) - src: Puke Chunks (/mob/living/carbon/human) - call stack: -Puke Chunks (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Puke Chunks (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1117 - usr: Lord Gwyn (/mob/living/carbon/human) - src: Lord Gwyn (/mob/living/carbon/human) - call stack: -Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) -the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) -the ears (/obj/screen): DblClick(null, null, null) -the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=28;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1117 - usr: Lord Gwyn (/mob/living/carbon/human) - src: Lord Gwyn (/mob/living/carbon/human) - call stack: -Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) -the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) -the ears (/obj/screen): DblClick(null, null, null) -the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1117 - usr: Lord Gwyn (/mob/living/carbon/human) - src: Lord Gwyn (/mob/living/carbon/human) - call stack: -Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) -the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) -the ears (/obj/screen): DblClick(null, null, null) -the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Blake Sable (/mob/living/carbon/human) - src: Blake Sable (/mob/living/carbon/human) - call stack: -Blake Sable (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Blake Sable (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Donald Mckendrick (/mob/living/carbon/human) - src: Donald Mckendrick (/mob/living/carbon/human) - call stack: -Donald Mckendrick (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Donald Mckendrick (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Blake Sable (/mob/living/carbon/human) - src: Blake Sable (/mob/living/carbon/human) - call stack: -Blake Sable (/mob/living/carbon/human): db click("o_clothing", 0) -the o_clothing (/obj/screen): attack hand(Blake Sable (/mob/living/carbon/human), 0) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=15;left=1;scr...") -Fri Jul 13 18:18:09 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Jeanette DeLisle (/mob/living/carbon/human) - src: Jeanette DeLisle (/mob/living/carbon/human) - call stack: -Jeanette DeLisle (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Jeanette DeLisle (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=21;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=21;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=15;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=15;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=19;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 -Fri Jul 13 19:18:20 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 -Denied access to 'Rotcod' connecting from 138.210.6.170 -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Jack Kasshu (/mob/living/carbon/human) - src: Jack Kasshu (/mob/living/carbon/human) - call stack: -Jack Kasshu (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=10;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Slimeria (/mob/living/carbon/human) - src: Slimeria (/mob/living/carbon/human) - call stack: -Slimeria (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Slimeria (/mob/living/carbon/human) - src: Slimeria (/mob/living/carbon/human) - call stack: -Slimeria (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Alberto Ivanov (/mob/living/carbon/human) - src: Alberto Ivanov (/mob/living/carbon/human) - call stack: -Alberto Ivanov (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Alberto Ivanov (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Mr. English (/mob/living/carbon/human) - src: Mr. English (/mob/living/carbon/human) - call stack: -Mr. English (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Mr. English (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=20;left=1;scr...") -runtime error: undefined variable /client/var/loc -proc name: get turf (/proc/get_turf) - source file: helper_procs.dm,38 - usr: the ghost (/mob/dead/observer) - src: null - call stack: -get turf(Nodka (/client)) -the ghost (/mob/dead/observer): New(Nodka (/client), 0) -Nodka (/client): Ghost() -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Captain Fudge (/mob/living/carbon/human) - src: Captain Fudge (/mob/living/carbon/human) - call stack: -Captain Fudge (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Captain Fudge (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Ellen Quinn (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Ellen Quinn (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=21;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=21;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Ellen Quinn (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Ellen Quinn (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") -Fri Jul 13 20:36:29 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Dawson Gibbens (/mob/living/carbon/human) - src: Dawson Gibbens (/mob/living/carbon/human) - call stack: -Dawson Gibbens (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Dawson Gibbens (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Jack Kasshu (/mob/living/carbon/human) - src: Jack Kasshu (/mob/living/carbon/human) - call stack: -Jack Kasshu (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Josh Morris (/mob/living/carbon/human) - src: Josh Morris (/mob/living/carbon/human) - call stack: -Josh Morris (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Josh Morris (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=14;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Josh Morris (/mob/living/carbon/human) - src: Josh Morris (/mob/living/carbon/human) - call stack: -Josh Morris (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Josh Morris (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Simon Bonkers (/mob/living/carbon/human) - src: Simon Bonkers (/mob/living/carbon/human) - call stack: -Simon Bonkers (/mob/living/carbon/human): db click("o_clothing", 0) -the o_clothing (/obj/screen): attack hand(Simon Bonkers (/mob/living/carbon/human), 0) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") -Denied access to 'Deamon_Man16' connecting from 108.200.222.182 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1127 - usr: Dave Oneal (/mob/living/carbon/human) - src: Dave Oneal (/mob/living/carbon/human) - call stack: -Dave Oneal (/mob/living/carbon/human): db click("i_clothing", 1) -the i_clothing (/obj/screen): attack hand(Dave Oneal (/mob/living/carbon/human), 1) -the i_clothing (/obj/screen): DblClick(null, null, null) -the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=13;left=1;scr...") -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Space Retrovirus (/datum/disease/dnaspread) - call stack: -Space Retrovirus (/datum/disease/dnaspread): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Space Retrovirus (/datum/disease/dnaspread) - call stack: -Space Retrovirus (/datum/disease/dnaspread): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Space Retrovirus (/datum/disease/dnaspread) - call stack: -Space Retrovirus (/datum/disease/dnaspread): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Space Retrovirus (/datum/disease/dnaspread) - call stack: -Space Retrovirus (/datum/disease/dnaspread): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). - -proc name: attackby (/mob/attackby) - source file: items.dm,334 -runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). - -proc name: attackby (/mob/attackby) - source file: items.dm,334 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1071 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -Warning: further proc crash messages are being suppressed to prevent overload... -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Reign Boudash (/mob/living/carbon/human) - src: Reign Boudash (/mob/living/carbon/human) - call stack: -Reign Boudash (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Reign Boudash (/mob/living/carbon/human) - src: Reign Boudash (/mob/living/carbon/human) - call stack: -Reign Boudash (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -Fri Jul 13 21:43:15 2012 -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Michigan Slim (/mob/living/carbon/human) - src: Engineering Cyborg -133 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -133 (/mob/living/silicon/robot): Stat() -Borg module reset board (/obj/item/borg/upgrade/reset): action(Engineering Cyborg -133 (/mob/living/silicon/robot)) -Borg module reset board (/obj/item/borg/upgrade/reset): action(Engineering Cyborg -133 (/mob/living/silicon/robot)) -Engineering Cyborg -133 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Michigan Slim (/mob/living/carbon/human)) -Engineering Cyborg -133 (/mob/living/silicon/robot): DblClick(the floor (95,85,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=18;left=1;scr...") -Engineering Cyborg -133 (/mob/living/silicon/robot): Click(the floor (95,85,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=18;left=1;scr...") -runtime error: undefined proc or verb /obj/machinery/portable_atmospherics/canister/toxins/attack(). - -proc name: attackby (/mob/attackby) - source file: items.dm,334 - usr: Watt Malker (/mob/living/carbon/human) - src: Black Dick Bishop (/mob/living/carbon/human) - call stack: -Black Dick Bishop (/mob/living/carbon/human): attackby(Canister \[Toxin (Bio)] (OPEN ... (/obj/machinery/portable_atmospherics/canister/toxins), Watt Malker (/mob/living/carbon/human), "chest") -runtime error: undefined variable /datum/preferences/var/fields -proc name: Topic (/obj/machinery/computer/cloning/Topic) - source file: cloning.dm,370 - usr: Logan Graves (/mob/living/carbon/human) - src: Cloning console (/obj/machinery/computer/cloning) - call stack: -Cloning console (/obj/machinery/computer/cloning): Topic("src=\[0x2005ab9];clone=\[0x210...", /list (/list)) -LordGeneralCastor (/client): Topic("src=\[0x2005ab9];clone=\[0x210...", /list (/list), Cloning console (/obj/machinery/computer/cloning)) -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,214 - usr: Kingston Sommer (/mob/living/carbon/human) - src: Miner Cyborg 133 (/mob/living/silicon/robot) - call stack: -Miner Cyborg 133 (/mob/living/silicon/robot): Stat() -Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg 133 (/mob/living/silicon/robot)) -Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg 133 (/mob/living/silicon/robot)) -Miner Cyborg 133 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Kingston Sommer (/mob/living/carbon/human)) -Miner Cyborg 133 (/mob/living/silicon/robot): DblClick(the floor (97,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=9;left=1;scre...") -Miner Cyborg 133 (/mob/living/silicon/robot): Click(the floor (97,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=9;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Reign Boudash (/mob/living/carbon/human) - src: Reign Boudash (/mob/living/carbon/human) - call stack: -Reign Boudash (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=17;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Zevin Thusar (/mob/living/carbon/human) - src: Zevin Thusar (/mob/living/carbon/human) - call stack: -Zevin Thusar (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Zevin Thusar (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Nick Cave (/mob/living/carbon/human) - src: Nick Cave (/mob/living/carbon/human) - call stack: -Nick Cave (/mob/living/carbon/human): db click("belt", null) -the belt (/obj/screen): attack hand(Nick Cave (/mob/living/carbon/human), null) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Nick Cave (/mob/living/carbon/human) - src: Nick Cave (/mob/living/carbon/human) - call stack: -Nick Cave (/mob/living/carbon/human): db click("belt", null) -the belt (/obj/screen): attack hand(Nick Cave (/mob/living/carbon/human), null) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=14;left=1;scr...") -runtime error: undefined variable /turf/simulated/floor/plating/var/mineral -proc name: attackby (/turf/simulated/wall/attackby) - source file: turf.dm,600 - usr: Monte Smail (/mob/living/carbon/human) - src: the plating (176,172,5) (/turf/simulated/floor/plating) - call stack: -the plating (176,172,5) (/turf/simulated/floor/plating): attackby(Diamond Mining Drill (/obj/item/weapon/pickaxe/diamonddrill), Monte Smail (/mob/living/carbon/human)) -the plating (176,172,5) (/turf/simulated/floor/plating): DblClick(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") -the plating (176,172,5) (/turf/simulated/floor/plating): DblClick(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") -the plating (176,172,5) (/turf/simulated/floor/plating): Click(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") -Rebooted server. -Running TG Revision Number: 4060. -Fri Jul 13 22:48:12 2012 -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Matthew Hoff (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - call stack: -Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x20065fa];build=large_G...", /list (/list)) -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Chip Harshman (/mob/living/carbon/human) - src: Chip Harshman (/mob/living/carbon/human) - call stack: -Chip Harshman (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Chip Harshman (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Chip Harshman (/mob/living/carbon/human) - src: Chip Harshman (/mob/living/carbon/human) - call stack: -Chip Harshman (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Chip Harshman (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=20;left=1;scr...") -runtime error: Cannot read null.blood_DNA -proc name: update inv w uniform (/mob/living/carbon/human/update_inv_w_uniform) - source file: update_icons.dm,372 - usr: null - src: Chip Harshman (/mob/living/carbon/human) - call stack: -Chip Harshman (/mob/living/carbon/human): update inv w uniform(0) -Chip Harshman (/mob/living/carbon/human): handle chemicals in body() -Chip Harshman (/mob/living/carbon/human): Life() -/datum/controller/game_control... (/datum/controller/game_controller): process() -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Sprigg Spooly (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - call stack: -Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x200ca33];build=large_G...", /list (/list)) -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Sprigg Spooly (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - call stack: -Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x200ca94];build=large_G...", /list (/list)) -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1093 - usr: Jack Kasshu (/mob/living/carbon/human) - src: Jack Kasshu (/mob/living/carbon/human) - call stack: -Jack Kasshu (/mob/living/carbon/human): db click("eyes", 0) -the eyes (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) -the eyes (/obj/screen): DblClick(null, null, null) -the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=29;icon-y=1;left=1;scre...") -Fri Jul 13 23:52:26 2012 -### VarEdit by Yinadele: /datum/reagents maximum_volume=20 -### VarEdit by Yinadele: /datum/reagents total_volume=20 -### VarEdit by Yinadele: /obj/effect/decal name=chemicals (Haunter) -### VarEdit by Yinadele: /obj/effect/decal throwforce=20 -### VarEdit by Yinadele: /obj/effect/decal infra_luminosity=1 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Sergei Vladislanikov (/mob/living/carbon/human) - src: Sergei Vladislanikov (/mob/living/carbon/human) - call stack: -Sergei Vladislanikov (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Sergei Vladislanikov (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Sprigg Spooly (/mob/living/carbon/human) - src: Sprigg Spooly (/mob/living/carbon/human) - call stack: -Sprigg Spooly (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Sprigg Spooly (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=14;left=1;scr...") -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Sprigg Spooly as (Matthew Hoff... (/mob/living/carbon/human) - src: Engineering Cyborg -952 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -952 (/mob/living/silicon/robot): Stat() -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg -952 (/mob/living/silicon/robot)) -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg -952 (/mob/living/silicon/robot)) -Engineering Cyborg -952 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Sprigg Spooly as (Matthew Hoff... (/mob/living/carbon/human)) -Engineering Cyborg -952 (/mob/living/silicon/robot): DblClick(the floor (101,86,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") -Engineering Cyborg -952 (/mob/living/silicon/robot): Click(the floor (101,86,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Miku Frost (/mob/living/carbon/human) - src: Miku Frost (/mob/living/carbon/human) - call stack: -Miku Frost (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Miku Frost (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Miku Frost (/mob/living/carbon/human) - src: Miku Frost (/mob/living/carbon/human) - call stack: -Miku Frost (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Miku Frost (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Tood Hoawd (/mob/living/carbon/human) - src: Tood Hoawd (/mob/living/carbon/human) - call stack: -Tood Hoawd (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Tood Hoawd (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") -Sat Jul 14 00:57:29 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Ellen Quinn (/mob/living/carbon/human) - src: Ellen Quinn (/mob/living/carbon/human) - call stack: -Ellen Quinn (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(Ellen Quinn (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=22;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("back", null) -the back (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), null) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=14;left=1;scr...") -### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=commissarzoey -### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=nodrak -### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=dakorok -### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=nickknack -### VarEdit by Yinadele: /mob/living/carbon/metroid/adult ckey=yinadele -### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=emperorofcatkind -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/download/check_completion) - source file: objective.dm,411 - usr: null - src: /datum/objective/download (/datum/objective/download) - call stack: -/datum/objective/download (/datum/objective/download): check completion() -extended (/datum/game_mode/extended): auto declare completion traitor() -/datum/controller/gameticker (/datum/controller/gameticker): declare completion() -/datum/controller/gameticker (/datum/controller/gameticker): process() -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/steal/check_completion) - source file: objective.dm,352 - usr: null - src: /datum/objective/steal (/datum/objective/steal) - call stack: -/datum/objective/steal (/datum/objective/steal): check completion() -extended (/datum/game_mode/extended): auto declare completion traitor() -/datum/controller/gameticker (/datum/controller/gameticker): declare completion() -/datum/controller/gameticker (/datum/controller/gameticker): process() -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/download/check_completion) - source file: objective.dm,411 - usr: null - src: /datum/objective/download (/datum/objective/download) - call stack: -/datum/objective/download (/datum/objective/download): check completion() -extended (/datum/game_mode/extended): auto declare completion traitor() -/datum/controller/gameticker (/datum/controller/gameticker): declare completion() -/datum/controller/gameticker (/datum/controller/gameticker): process() -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/steal/check_completion) - source file: objective.dm,352 - usr: null - src: /datum/objective/steal (/datum/objective/steal) - call stack: -/datum/objective/steal (/datum/objective/steal): check completion() -extended (/datum/game_mode/extended): auto declare completion traitor() -/datum/controller/gameticker (/datum/controller/gameticker): declare completion() -/datum/controller/gameticker (/datum/controller/gameticker): process() -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/download/check_completion) - source file: objective.dm,411 -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/download/check_completion) - source file: objective.dm,411 -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/steal/check_completion) - source file: objective.dm,352 -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Ophelia Braun (/mob/living/carbon/human) - src: Ophelia Braun (/mob/living/carbon/human) - call stack: -Ophelia Braun (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Ophelia Braun (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Helen Lester (/mob/living/carbon/human) - src: Helen Lester (/mob/living/carbon/human) - call stack: -Helen Lester (/mob/living/carbon/human): db click("belt", null) -the belt (/obj/screen): attack hand(Helen Lester (/mob/living/carbon/human), null) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=11;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Dave Oneal (/mob/living/carbon/human) - src: Dave Oneal (/mob/living/carbon/human) - call stack: -Dave Oneal (/mob/living/carbon/human): db click("id", null) -the id (/obj/screen): attack hand(Dave Oneal (/mob/living/carbon/human), null) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") -Sat Jul 14 01:57:46 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1117 - usr: Dat Bass (/mob/living/carbon/human) - src: Dat Bass (/mob/living/carbon/human) - call stack: -Dat Bass (/mob/living/carbon/human): db click("ears", null) -the ears (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), null) -the ears (/obj/screen): DblClick(null, null, null) -the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Helen Lester (/mob/living/carbon/human) - src: Helen Lester (/mob/living/carbon/human) - call stack: -Helen Lester (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Helen Lester (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=12;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Lila Desminto (/mob/living/carbon/human) - src: Lila Desminto (/mob/living/carbon/human) - call stack: -Lila Desminto (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Lila Desminto (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=5;left=1;scre...") -### VarEdit by Doohl: /obj/effect/new_year_tree name=BODA TREE -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Penny Merriweather (/mob/living/carbon/human) - src: Penny Merriweather (/mob/living/carbon/human) - call stack: -Penny Merriweather (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Penny Merriweather (/mob/living/carbon/human) - src: Penny Merriweather (/mob/living/carbon/human) - call stack: -Penny Merriweather (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Penny Merriweather (/mob/living/carbon/human) - src: Penny Merriweather (/mob/living/carbon/human) - call stack: -Penny Merriweather (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Magnitis (/datum/disease/magnitis) - call stack: -Magnitis (/datum/disease/magnitis): cure(0) -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -Warning: further proc crash messages are being suppressed to prevent overload... -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Ashley Taylor (/mob/living/carbon/human) - src: Ashley Taylor (/mob/living/carbon/human) - call stack: -Ashley Taylor (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Ashley Taylor (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=15;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -Sat Jul 14 03:10:48 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1103 - usr: Trisha Galade (/mob/living/carbon/human) - src: Trisha Galade (/mob/living/carbon/human) - call stack: -Trisha Galade (/mob/living/carbon/human): db click("head", 0) -the head (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 0) -the head (/obj/screen): DblClick(null, null, null) -the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=26;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Trisha Galade (/mob/living/carbon/human) - src: Trisha Galade (/mob/living/carbon/human) - call stack: -Trisha Galade (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=14;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Jack Napier (/mob/living/carbon/human) - src: Jack Napier (/mob/living/carbon/human) - call stack: -Jack Napier (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Jack Napier (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=9;left=1;scre...") -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Reese Marcotte (/mob/living/carbon/human) - src: Reese Marcotte (/mob/living/carbon/human) - call stack: -Reese Marcotte (/mob/living/carbon/human): throw at(Asteroid (174,85,5) (/turf/simulated/floor/plating/airless/asteroid), 5, 1) -Delivery chute (/obj/machinery/disposal/deliveryChute): expel(null) -Rebooted server. -Running TG Revision Number: 4060. -Sat Jul 14 04:15:01 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1071 - usr: Flint Steel (/mob/living/carbon/human) - src: Flint Steel (/mob/living/carbon/human) - call stack: -Flint Steel (/mob/living/carbon/human): db click("shoes", 1) -the shoes (/obj/screen): attack hand(Flint Steel (/mob/living/carbon/human), 1) -the shoes (/obj/screen): DblClick(null, null, null) -the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Flint Steel (/mob/living/carbon/human) - src: Flint Steel (/mob/living/carbon/human) - call stack: -Flint Steel (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(Flint Steel (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=12;left=1;scre...") -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: The Flu (/datum/disease/flu) - call stack: -The Flu (/datum/disease/flu): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 -Warning: further proc crash messages are being suppressed to prevent overload... -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Trisha Galade (/mob/living/carbon/human) - src: Trisha Galade (/mob/living/carbon/human) - call stack: -Trisha Galade (/mob/living/carbon/human): db click("mask", 0) -the mask (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 0) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") -Rebooted server. -Sat Jul 14 05:27:37 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Ladybug Honks (/mob/living/carbon/human) - src: Ladybug Honks (/mob/living/carbon/human) - call stack: -Ladybug Honks (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Ladybug Honks (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Ladybug Honks (/mob/living/carbon/human) - src: Ladybug Honks (/mob/living/carbon/human) - call stack: -Ladybug Honks (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Ladybug Honks (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=12;left=1;scr...") -Sat Jul 14 06:59:16 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Malik Graham (/mob/living/carbon/human) - src: Malik Graham (/mob/living/carbon/human) - call stack: -Malik Graham (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(Malik Graham (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=19;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Rocky McDoughboy XIV (/mob/living/carbon/human) - src: Rocky McDoughboy XIV (/mob/living/carbon/human) - call stack: -Rocky McDoughboy XIV (/mob/living/carbon/human): db click("o_clothing", 1) -the o_clothing (/obj/screen): attack hand(Rocky McDoughboy XIV (/mob/living/carbon/human), 1) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=11;left=1;scr...") -Sat Jul 14 08:11:16 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Sly (/mob/living/carbon/human) - src: Sly (/mob/living/carbon/human) - call stack: -Sly (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=5;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Sly (/mob/living/carbon/human) - src: Sly (/mob/living/carbon/human) - call stack: -Sly (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Sly (/mob/living/carbon/human) - src: Sly (/mob/living/carbon/human) - call stack: -Sly (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=14;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Sher Thorun (/mob/living/carbon/human) - src: Sher Thorun (/mob/living/carbon/human) - call stack: -Sher Thorun (/mob/living/carbon/human): db click("storage1", null) -the storage1 (/obj/screen): attack hand(Sher Thorun (/mob/living/carbon/human), null) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=11;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1127 - usr: Jono Lionhurt (/mob/living/carbon/human) - src: Jono Lionhurt (/mob/living/carbon/human) - call stack: -Jono Lionhurt (/mob/living/carbon/human): db click("i_clothing", null) -the i_clothing (/obj/screen): attack hand(Jono Lionhurt (/mob/living/carbon/human), null) -the i_clothing (/obj/screen): DblClick(null, null, null) -the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=14;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=14;left=1;scr...") -Sat Jul 14 09:17:07 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): db click("storage2", 1) -the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1127 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("i_clothing", 1) -the i_clothing (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) -the i_clothing (/obj/screen): DblClick(null, null, null) -the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=31;icon-y=21;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1127 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("i_clothing", 1) -the i_clothing (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) -the i_clothing (/obj/screen): DblClick(null, null, null) -the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=23;left=1;scr...") -Sat Jul 14 10:37:02 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1103 - usr: Lord Jamlamin (/mob/living/carbon/human) - src: Lord Jamlamin (/mob/living/carbon/human) - call stack: -Lord Jamlamin (/mob/living/carbon/human): db click("head", 0) -the head (/obj/screen): attack hand(Lord Jamlamin (/mob/living/carbon/human), 0) -the head (/obj/screen): DblClick(null, null, null) -the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Jennifer Ketavim (/mob/living/carbon/human) - src: Jennifer Ketavim (/mob/living/carbon/human) - call stack: -Jennifer Ketavim (/mob/living/carbon/human): db click("mask", 1) -the mask (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 1) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=10;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", null) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), null) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=18;left=1;scr...") -runtime error: Cannot execute null.dropped(). -proc name: drop l hand (/mob/proc/drop_l_hand) - source file: inventory.dm,104 - usr: Jeb Stone (/mob/living/carbon/human) - src: Jeb Stone (/mob/living/carbon/human) - call stack: -Jeb Stone (/mob/living/carbon/human): drop l hand(null) -Jeb Stone (/mob/living/carbon/human): drop item(null) -Jeb Stone (/mob/living/carbon/human): drop item v() -the drop (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=16;left=1;scre...") -Sat Jul 14 12:01:13 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1093 - usr: Thomas Hereford (/mob/living/carbon/human) - src: Thomas Hereford (/mob/living/carbon/human) - call stack: -Thomas Hereford (/mob/living/carbon/human): db click("eyes", 1) -the eyes (/obj/screen): attack hand(Thomas Hereford (/mob/living/carbon/human), 1) -the eyes (/obj/screen): DblClick(null, null, null) -the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=27;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Hugh Jazz (/mob/living/carbon/human) - src: Hugh Jazz (/mob/living/carbon/human) - call stack: -Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Paul Wolfe (/mob/living/carbon/human) - src: Paul Wolfe (/mob/living/carbon/human) - call stack: -Paul Wolfe (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) - call stack: -Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) - call stack: -Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) - call stack: -Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) - call stack: -Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -Warning: further proc crash messages are being suppressed to prevent overload... -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1071 - usr: Dat Bass (/mob/living/carbon/human) - src: Dat Bass (/mob/living/carbon/human) - call stack: -Dat Bass (/mob/living/carbon/human): db click("shoes", 1) -the shoes (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 1) -the shoes (/obj/screen): DblClick(null, null, null) -the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=17;left=1;scr...") -Sat Jul 14 13:19:34 2012 -runtime error: list index out of bounds -proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) - source file: cable.dm,520 - usr: Josue Sandford (/mob/living/carbon/human) - src: the power cable (/obj/structure/cable) - call stack: -the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() -the cable coil (/obj/item/weapon/cable_coil/orange): turf place(the plating (87,80,1) (/turf/simulated/floor/plating), Josue Sandford (/mob/living/carbon/human)) -the plating (87,80,1) (/turf/simulated/floor/plating): attackby(the cable coil (/obj/item/weapon/cable_coil/orange), Josue Sandford (/mob/living/carbon/human)) -the plating (87,80,1) (/turf/simulated/floor/plating): DblClick(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") -the plating (87,80,1) (/turf/simulated/floor/plating): DblClick(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") -the plating (87,80,1) (/turf/simulated/floor/plating): Click(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") -runtime error: Cannot read null.nodes -proc name: merge powernets (/datum/powernet/proc/merge_powernets) - source file: power.dm,401 - usr: Darin Keppel (/mob/living/carbon/human) - src: /datum/powernet (/datum/powernet) - call stack: -/datum/powernet (/datum/powernet): merge powernets(null) -the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() -the cable piece (/obj/item/weapon/cable_coil): cable join(the power cable (/obj/structure/cable), Darin Keppel (/mob/living/carbon/human)) -the power cable (/obj/structure/cable): attackby(the cable piece (/obj/item/weapon/cable_coil), Darin Keppel (/mob/living/carbon/human)) -the power cable (/obj/structure/cable): DblClick(the floor (105,80,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") -the power cable (/obj/structure/cable): Click(the floor (105,80,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Jace Johnson (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Jace Johnson (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Jace Johnson (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Travis Robinson (/mob/living/carbon/human) - src: Travis Robinson (/mob/living/carbon/human) - call stack: -Travis Robinson (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Travis Robinson (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=12;left=1;scre...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Jace Johnson (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Jace Johnson (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=18;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=18;left=1;scr...") -Sat Jul 14 14:26:55 2012 -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Appendicitis (/datum/disease/appendicitis) - call stack: -Appendicitis (/datum/disease/appendicitis): cure(0) -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Appendicitis (/datum/disease/appendicitis) - call stack: -Appendicitis (/datum/disease/appendicitis): cure(0) -Rebooted server. -Running TG Revision Number: 4060. -Denied access to 'Intigracy' connecting from 76.246.55.198 -Sat Jul 14 15:41:50 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Derrick Cobb (/mob/living/carbon/human) - src: Derrick Cobb (/mob/living/carbon/human) - call stack: -Derrick Cobb (/mob/living/carbon/human): db click("id", null) -the id (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), null) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1103 - usr: Derrick Cobb (/mob/living/carbon/human) - src: Derrick Cobb (/mob/living/carbon/human) - call stack: -Derrick Cobb (/mob/living/carbon/human): db click("head", 1) -the head (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), 1) -the head (/obj/screen): DblClick(null, null, null) -the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=27;icon-y=1;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Aaden Mitchell (/mob/living/carbon/human) - src: Aaden Mitchell (/mob/living/carbon/human) - call stack: -Aaden Mitchell (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Aaden Mitchell (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Cletus Powers (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - call stack: -Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x2006613];build=large_G...", /list (/list)) -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Cletus Powers (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - call stack: -Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x2003615];build=large_G...", /list (/list)) -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Simon Bonkers (/mob/living/carbon/human) - src: Simon Bonkers (/mob/living/carbon/human) - call stack: -Simon Bonkers (/mob/living/carbon/human): db click("o_clothing", 0) -the o_clothing (/obj/screen): attack hand(Simon Bonkers (/mob/living/carbon/human), 0) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=24;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Hreri Bright-Eyed (/mob/living/carbon/human) - src: Hreri Bright-Eyed (/mob/living/carbon/human) - call stack: -Hreri Bright-Eyed (/mob/living/carbon/human): db click("mask", 1) -the mask (/obj/screen): attack hand(Hreri Bright-Eyed (/mob/living/carbon/human), 1) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=20;left=1;scr...") -Rebooted server. -Sat Jul 14 16:52:03 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Micheal Simpson (/mob/living/carbon/human) - src: Micheal Simpson (/mob/living/carbon/human) - call stack: -Micheal Simpson (/mob/living/carbon/human): db click("o_clothing", null) -the o_clothing (/obj/screen): attack hand(Micheal Simpson (/mob/living/carbon/human), null) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Micheal Simpson (/mob/living/carbon/human) - src: Micheal Simpson (/mob/living/carbon/human) - call stack: -Micheal Simpson (/mob/living/carbon/human): db click("o_clothing", null) -the o_clothing (/obj/screen): attack hand(Micheal Simpson (/mob/living/carbon/human), null) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=20;left=1;scr...") -runtime error: undefined variable /client/var/loc -proc name: get turf (/proc/get_turf) - source file: helper_procs.dm,38 - usr: the ghost (/mob/dead/observer) - src: null - call stack: -get turf(Akett (/client)) -the ghost (/mob/dead/observer): New(Akett (/client), 0) -Akett (/client): Ghost() -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Jennifer Ketavim (/mob/living/carbon/human) - src: Jennifer Ketavim (/mob/living/carbon/human) - call stack: -Jennifer Ketavim (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=15;left=1;scr...") -Rebooted server. -Sat Jul 14 17:57:29 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Bubba Bellton (/mob/living/carbon/human) - src: Bubba Bellton (/mob/living/carbon/human) - call stack: -Bubba Bellton (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Bubba Bellton (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=23;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Bubble (/mob/living/carbon/human) - src: Bubble (/mob/living/carbon/human) - call stack: -Bubble (/mob/living/carbon/human): db click("storage1", null) -the storage1 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), null) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Bubble (/mob/living/carbon/human) - src: Bubble (/mob/living/carbon/human) - call stack: -Bubble (/mob/living/carbon/human): db click("storage1", null) -the storage1 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), null) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Bartholomew Williams (/mob/living/carbon/human) - src: Bartholomew Williams (/mob/living/carbon/human) - call stack: -Bartholomew Williams (/mob/living/carbon/human): db click("mask", 0) -the mask (/obj/screen): attack hand(Bartholomew Williams (/mob/living/carbon/human), 0) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Rusty Fraser (/mob/living/carbon/human) - src: Rusty Fraser (/mob/living/carbon/human) - call stack: -Rusty Fraser (/mob/living/carbon/human): db click("back", null) -the back (/obj/screen): attack hand(Rusty Fraser (/mob/living/carbon/human), null) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=5;left=1;scre...") -Rebooted server. -Running TG Revision Number: 4060. -Sat Jul 14 19:13:30 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Derrick Cobb (/mob/living/carbon/human) - src: Derrick Cobb (/mob/living/carbon/human) - call stack: -Derrick Cobb (/mob/living/carbon/human): db click("mask", 1) -the mask (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), 1) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=29;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=4;icon-y=26;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;shif...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;ctrl...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: HoP Man (/mob/living/carbon/human) - src: HoP Man (/mob/living/carbon/human) - call stack: -HoP Man (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=3;icon-y=17;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Earl Swabby (/mob/living/carbon/human) - src: Earl Swabby (/mob/living/carbon/human) - call stack: -Earl Swabby (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Slimeria (/mob/living/carbon/human) - src: Slimeria (/mob/living/carbon/human) - call stack: -Slimeria (/mob/living/carbon/human): db click("o_clothing", 1) -the o_clothing (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=28;icon-y=9;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: River Pavlov (/mob/living/carbon/human) - src: River Pavlov (/mob/living/carbon/human) - call stack: -River Pavlov (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(River Pavlov (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=15;left=1;scr...") -runtime error: list index out of bounds -proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) - source file: cable.dm,501 - usr: Tyrion Lannister (/mob/living/carbon/human) - src: the power cable (/obj/structure/cable) - call stack: -the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() -the cable piece (/obj/item/weapon/cable_coil): cable join(the power cable (/obj/structure/cable), Tyrion Lannister (/mob/living/carbon/human)) -the power cable (/obj/structure/cable): attackby(the cable piece (/obj/item/weapon/cable_coil), Tyrion Lannister (/mob/living/carbon/human)) -the power cable (/obj/structure/cable): DblClick(the floor (174,138,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=17;left=1;scr...") -the power cable (/obj/structure/cable): Click(the floor (174,138,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=17;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Slimeria (/mob/living/carbon/human) - src: Slimeria (/mob/living/carbon/human) - call stack: -Slimeria (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=24;left=1;scr...") -Sat Jul 14 20:29:42 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Urist McAssistant (/mob/living/carbon/human) - src: Urist McAssistant (/mob/living/carbon/human) - call stack: -Urist McAssistant (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Urist McAssistant (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=17;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Jennifer Ketavim (/mob/living/carbon/human) - src: Jennifer Ketavim (/mob/living/carbon/human) - call stack: -Jennifer Ketavim (/mob/living/carbon/human): db click("o_clothing", 0) -the o_clothing (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 0) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=5;left=1;scre...") -Sat Jul 14 21:49:49 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Jennifer Ketavim (/mob/living/carbon/human) - src: Jennifer Ketavim (/mob/living/carbon/human) - call stack: -Jennifer Ketavim (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=30;icon-y=20;left=1;scr...") -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(/list (/list), /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(/list (/list), /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(/list (/list), /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(/list (/list), /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - call stack: -mergeRecordLists(null, /list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -sortRecord(/list (/list), "name", 1) -Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) -Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() -Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list)) -Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - source file: ethereal_jaunt.dm,81 -runtime error: undefined variable /client/var/loc -proc name: get turf (/proc/get_turf) - source file: helper_procs.dm,38 -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 -runtime error: Cannot read null.reagents -proc name: fire syringe (/obj/item/weapon/gun/syringe/proc/fire_syringe) - source file: Chemistry-Tools.dm,462 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Reuben Garratt (/mob/living/carbon/human) - src: Reuben Garratt (/mob/living/carbon/human) - call stack: -Reuben Garratt (/mob/living/carbon/human): db click("id", null) -the id (/obj/screen): attack hand(Reuben Garratt (/mob/living/carbon/human), null) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=15;left=1;scr...") -Sat Jul 14 23:05:19 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Alice Ravensdale (/mob/living/carbon/human) - src: Alice Ravensdale (/mob/living/carbon/human) - call stack: -Alice Ravensdale (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Alice Ravensdale (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Eric Hunter (/mob/living/carbon/human) - src: Eric Hunter (/mob/living/carbon/human) - call stack: -Eric Hunter (/mob/living/carbon/human): db click("o_clothing", 1) -the o_clothing (/obj/screen): attack hand(Eric Hunter (/mob/living/carbon/human), 1) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=14;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Samuel York (/mob/living/carbon/human) - src: Samuel York (/mob/living/carbon/human) - call stack: -Samuel York (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Samuel York (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=15;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1103 - usr: MCEyePop (/mob/living/carbon/human) - src: MCEyePop (/mob/living/carbon/human) - call stack: -MCEyePop (/mob/living/carbon/human): db click("head", 1) -the head (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) -the head (/obj/screen): DblClick(null, null, null) -the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=11;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=21;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=21;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Alexander Delapour (/mob/living/carbon/human) - src: Alexander Delapour (/mob/living/carbon/human) - call stack: -Alexander Delapour (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(Alexander Delapour (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Roman Sheets (/mob/living/carbon/human) - src: Roman Sheets (/mob/living/carbon/human) - call stack: -Roman Sheets (/mob/living/carbon/human): db click("back", null) -the back (/obj/screen): attack hand(Roman Sheets (/mob/living/carbon/human), null) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1127 - usr: Roman Sheets (/mob/living/carbon/human) - src: Roman Sheets (/mob/living/carbon/human) - call stack: -Roman Sheets (/mob/living/carbon/human): db click("i_clothing", 0) -the i_clothing (/obj/screen): attack hand(Roman Sheets (/mob/living/carbon/human), 0) -the i_clothing (/obj/screen): DblClick(null, null, null) -the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=18;left=1;scr...") -Sun Jul 15 00:17:04 2012 -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Iroquois Pliskin (/mob/living/carbon/human) - src: Miner Cyborg -770 (/mob/living/silicon/robot) - call stack: -Miner Cyborg -770 (/mob/living/silicon/robot): Stat() -Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg -770 (/mob/living/silicon/robot)) -Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg -770 (/mob/living/silicon/robot)) -Miner Cyborg -770 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Iroquois Pliskin (/mob/living/carbon/human)) -Miner Cyborg -770 (/mob/living/silicon/robot): DblClick(the floor (98,88,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=10;left=1;scr...") -Miner Cyborg -770 (/mob/living/silicon/robot): Click(the floor (98,88,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=10;left=1;scr...") -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Iroquois Pliskin (/mob/living/carbon/human) - src: Engineering Cyborg 770 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg 770 (/mob/living/silicon/robot): Stat() -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg 770 (/mob/living/silicon/robot)) -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg 770 (/mob/living/silicon/robot)) -Engineering Cyborg 770 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Iroquois Pliskin (/mob/living/carbon/human)) -Engineering Cyborg 770 (/mob/living/silicon/robot): DblClick(the floor (98,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") -Engineering Cyborg 770 (/mob/living/silicon/robot): Click(the floor (98,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: MCEyePop (/mob/living/carbon/human) - src: MCEyePop (/mob/living/carbon/human) - call stack: -MCEyePop (/mob/living/carbon/human): db click("belt", 1) -the belt (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: MCEyePop (/mob/living/carbon/human) - src: MCEyePop (/mob/living/carbon/human) - call stack: -MCEyePop (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human) - src: Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human) - call stack: -Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human): db click("back", 1) -the back (/obj/screen): attack hand(Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human), 1) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Earl Swabby (/mob/living/carbon/human) - src: Earl Swabby (/mob/living/carbon/human) - call stack: -Earl Swabby (/mob/living/carbon/human): db click("storage1", null) -the storage1 (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), null) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=5;icon-y=19;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Smoke Shaw (/mob/living/carbon/human) - src: Smoke Shaw (/mob/living/carbon/human) - call stack: -Smoke Shaw (/mob/living/carbon/human): db click("mask", 0) -the mask (/obj/screen): attack hand(Smoke Shaw (/mob/living/carbon/human), 0) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=13;left=1;scr...") -runtime error: Cannot read null.reagents -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,748 - usr: Dutch Hargrave (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") -runtime error: Cannot read null.reagents -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,748 - usr: Dutch Hargrave (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=6;left=1;scre...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=6;left=1;scre...") -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Dutch Hargrave (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - call stack: -All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) -All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=6;left=1;scre...") -All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=6;left=1;scre...") -Rebooted server. -Running TG Revision Number: 4060. -Sun Jul 15 01:27:07 2012 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Crate (/obj/structure/closet/crate) - call stack: -Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Crate (/obj/structure/closet/crate) - call stack: -Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: the emergency closet (/obj/structure/closet/emcloset) - call stack: -the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: 0 - src: Crate (/obj/structure/closet/crate) - call stack: -Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) -the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 -Warning: further proc crash messages are being suppressed to prevent overload... -Rebooted server. -Sun Jul 15 02:33:41 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Earl Swabby (/mob/living/carbon/human) - src: Earl Swabby (/mob/living/carbon/human) - call stack: -Earl Swabby (/mob/living/carbon/human): db click("storage2", null) -the storage2 (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), null) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=23;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1093 - usr: Lord Gwyn (/mob/living/carbon/human) - src: Lord Gwyn (/mob/living/carbon/human) - call stack: -Lord Gwyn (/mob/living/carbon/human): db click("eyes", 1) -the eyes (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 1) -the eyes (/obj/screen): DblClick(null, null, null) -the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=18;left=1;scre...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Crunk Junksworth (/mob/living/carbon/human) - src: Crunk Junksworth (/mob/living/carbon/human) - call stack: -Crunk Junksworth (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Crunk Junksworth (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Crunk Junksworth (/mob/living/carbon/human) - src: Crunk Junksworth (/mob/living/carbon/human) - call stack: -Crunk Junksworth (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Crunk Junksworth (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=19;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -Denied access to 'StevenRodriguez' connecting from 98.64.162.60 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Coyo (/mob/living/carbon/human) - src: Coyo (/mob/living/carbon/human) - call stack: -Coyo (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Coyo (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Yahn Deir (/mob/living/carbon/human) - src: Yahn Deir (/mob/living/carbon/human) - call stack: -Yahn Deir (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Yahn Deir (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=22;icon-y=10;left=1;scr...") -Sun Jul 15 03:41:55 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1048 - usr: Samuel York (/mob/living/carbon/human) - src: Samuel York (/mob/living/carbon/human) - call stack: -Samuel York (/mob/living/carbon/human): db click("o_clothing", 1) -the o_clothing (/obj/screen): attack hand(Samuel York (/mob/living/carbon/human), 1) -the o_clothing (/obj/screen): DblClick(null, null, null) -the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") -### VarEdit by Doohl: /obj/effect/step_trigger/teleporter affect_ghosts=1 -### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_x=239 -### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_x=239 -### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_y=12 -### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_z=2 -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Bubble (/mob/living/carbon/human) - src: Bubble (/mob/living/carbon/human) - call stack: -Bubble (/mob/living/carbon/human): db click("storage2", 0) -the storage2 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), 0) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=13;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Tyson Roby (/mob/living/carbon/human) - src: Tyson Roby (/mob/living/carbon/human) - call stack: -Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Tyson Roby (/mob/living/carbon/human) - src: Tyson Roby (/mob/living/carbon/human) - call stack: -Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Tyson Roby (/mob/living/carbon/human) - src: Tyson Roby (/mob/living/carbon/human) - call stack: -Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=16;left=1;scr...") -runtime error: Cannot read null.w_class -proc name: attackby (/obj/item/weapon/storage/attackby) - source file: storage.dm,187 - usr: Samuel York (/mob/living/carbon/human) - src: the backpack (/obj/item/weapon/storage/backpack) - call stack: -the backpack (/obj/item/weapon/storage/backpack): attackby(null, Samuel York (/mob/living/carbon/human)) -the backpack (/obj/item/weapon/storage/backpack): attackby(null, Samuel York (/mob/living/carbon/human)) -the backpack (/obj/item/weapon/storage/backpack): DblClick(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") -the backpack (/obj/item/weapon/storage/backpack): Click(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") -Rebooted server. -Sun Jul 15 04:43:18 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=21;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=20;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1035 - usr: Michigan Slim (/mob/living/carbon/human) - src: Michigan Slim (/mob/living/carbon/human) - call stack: -Michigan Slim (/mob/living/carbon/human): db click("back", 0) -the back (/obj/screen): attack hand(Michigan Slim (/mob/living/carbon/human), 0) -the back (/obj/screen): DblClick(null, null, null) -the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=19;left=1;scr...") -Rebooted server. -Sun Jul 15 05:48:07 2012 -Running TG Revision Number: 4060. -### VarEdit by Yinadele: /mob/living/simple_animal/cat/Runtime ckey=bossname -### VarEdit by Yinadele: /mob/living/simple_animal/cat/Runtime universal_speak=0 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Jimz Ruztlfoot (/mob/living/carbon/human) - src: Jimz Ruztlfoot (/mob/living/carbon/human) - call stack: -Jimz Ruztlfoot (/mob/living/carbon/human): db click("belt", 0) -the belt (/obj/screen): attack hand(Jimz Ruztlfoot (/mob/living/carbon/human), 0) -the belt (/obj/screen): DblClick(null, null, null) -the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=10;left=1;scr...") -Rebooted server. -Sun Jul 15 06:57:20 2012 -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1061 - usr: Quinton Bould (/mob/living/carbon/human) - src: Quinton Bould (/mob/living/carbon/human) - call stack: -Quinton Bould (/mob/living/carbon/human): db click("gloves", 1) -the gloves (/obj/screen): attack hand(Quinton Bould (/mob/living/carbon/human), 1) -the gloves (/obj/screen): DblClick(null, null, null) -the gloves (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1023 - usr: Yahn Deir (/mob/living/carbon/human) - src: Yahn Deir (/mob/living/carbon/human) - call stack: -Yahn Deir (/mob/living/carbon/human): db click("mask", 1) -the mask (/obj/screen): attack hand(Yahn Deir (/mob/living/carbon/human), 1) -the mask (/obj/screen): DblClick(null, null, null) -the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=20;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Dutch Hargrave (/mob/living/carbon/human) - src: Dutch Hargrave (/mob/living/carbon/human) - call stack: -Dutch Hargrave (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Dutch Hargrave (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=16;left=1;scr...") -Sun Jul 15 08:26:36 2012 -runtime error: Cannot read null.nodes -proc name: merge powernets (/datum/powernet/proc/merge_powernets) - source file: power.dm,401 - usr: Stephen Cox (/mob/living/carbon/human) - src: /datum/powernet (/datum/powernet) - call stack: -/datum/powernet (/datum/powernet): merge powernets(null) -the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() -the cable coil (/obj/item/weapon/cable_coil): turf place(the floor (87,115,1) (/turf/simulated/floor), Stephen Cox (/mob/living/carbon/human)) -the floor (87,115,1) (/turf/simulated/floor): attackby(the cable coil (/obj/item/weapon/cable_coil), Stephen Cox (/mob/living/carbon/human)) -the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -the floor (87,115,1) (/turf/simulated/floor): Click(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -runtime error: Cannot read null.nodes -proc name: merge powernets (/datum/powernet/proc/merge_powernets) - source file: power.dm,401 - usr: Stephen Cox (/mob/living/carbon/human) - src: /datum/powernet (/datum/powernet) - call stack: -/datum/powernet (/datum/powernet): merge powernets(null) -the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() -the cable coil (/obj/item/weapon/cable_coil): turf place(the floor (87,115,1) (/turf/simulated/floor), Stephen Cox (/mob/living/carbon/human)) -the floor (87,115,1) (/turf/simulated/floor): attackby(the cable coil (/obj/item/weapon/cable_coil), Stephen Cox (/mob/living/carbon/human)) -the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -the floor (87,115,1) (/turf/simulated/floor): Click(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1166 - usr: Clarisse Holderbach (/mob/living/carbon/human) - src: Clarisse Holderbach (/mob/living/carbon/human) - call stack: -Clarisse Holderbach (/mob/living/carbon/human): db click("storage2", null) -the storage2 (/obj/screen): attack hand(Clarisse Holderbach (/mob/living/carbon/human), null) -the storage2 (/obj/screen): DblClick(null, null, null) -the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=15;left=1;scr...") -Sun Jul 15 09:41:02 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1071 - usr: Samantha Kendrick (/mob/living/carbon/human) - src: Samantha Kendrick (/mob/living/carbon/human) - call stack: -Samantha Kendrick (/mob/living/carbon/human): db click("shoes", 1) -the shoes (/obj/screen): attack hand(Samantha Kendrick (/mob/living/carbon/human), 1) -the shoes (/obj/screen): DblClick(null, null, null) -the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -### VarEdit by Scaredofshadows: /mob/living/simple_animal/corgi/Ian ckey=laharlmontgommery -Sun Jul 15 10:43:09 2012 -### VarEdit by Scaredofshadows: /mob/living/simple_animal/cat/Runtime ckey=drlareku -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1093 - usr: Rowdy Randy (/mob/living/carbon/human) - src: Rowdy Randy (/mob/living/carbon/human) - call stack: -Rowdy Randy (/mob/living/carbon/human): db click("eyes", 0) -the eyes (/obj/screen): attack hand(Rowdy Randy (/mob/living/carbon/human), 0) -the eyes (/obj/screen): DblClick(null, null, null) -the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=20;left=1;scr...") -### VarEdit by Scaredofshadows: /mob/living/simple_animal/cat/Runtime canmove=1 -### VarEdit by Scaredofshadows: /mob/living/simple_animal/parrot/DrProfessor ckey=kyora473 -runtime error: Cannot read null.amount -proc name: attackby (/obj/machinery/constructable_frame/machine_frame/attackby) - source file: constructable_frame.dm,27 - usr: Quinton Bould (/mob/living/carbon/human) - src: the machine frame (/obj/machinery/constructable_frame/machine_frame) - call stack: -the machine frame (/obj/machinery/constructable_frame/machine_frame): attackby(null, Quinton Bould (/mob/living/carbon/human)) -the machine frame (/obj/machinery/constructable_frame/machine_frame): DblClick(the floor (98,69,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=23;icon-y=16;left=1;scr...") -the machine frame (/obj/machinery/constructable_frame/machine_frame): Click(the floor (98,69,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=23;icon-y=16;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1103 - usr: Quinton Bould (/mob/living/carbon/human) - src: Quinton Bould (/mob/living/carbon/human) - call stack: -Quinton Bould (/mob/living/carbon/human): db click("head", 1) -the head (/obj/screen): attack hand(Quinton Bould (/mob/living/carbon/human), 1) -the head (/obj/screen): DblClick(null, null, null) -the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=28;left=1;scr...") -runtime error: Cannot read null.loc -proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) - source file: corgi.dm,304 - usr: null - src: Captain Ian (/mob/living/simple_animal/corgi/Ian) - call stack: -Captain Ian (/mob/living/simple_animal/corgi/Ian): Life() -/datum/controller/game_control... (/datum/controller/game_controller): process() -### VarEdit by Scaredofshadows: /mob/living/simple_animal/corgi/Ian real_name=Fluffum-Wuffums -Rebooted server. -Running TG Revision Number: 4060. -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Dat Bass (/mob/living/carbon/human) - src: Dat Bass (/mob/living/carbon/human) - call stack: -Dat Bass (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Dat Bass (/mob/living/carbon/human) - src: Dat Bass (/mob/living/carbon/human) - call stack: -Dat Bass (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=15;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Dat Bass (/mob/living/carbon/human) - src: Dat Bass (/mob/living/carbon/human) - call stack: -Dat Bass (/mob/living/carbon/human): db click("storage1", 0) -the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=15;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=9;left=1;scre...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=9;left=1;scre...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=12;left=1;scr...") -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - call stack: -Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() -the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=11;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1061 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1071 -Sun Jul 15 12:02:37 2012 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 -runtime error: Cannot modify null.status. -proc name: death (/mob/living/silicon/robot/death) - source file: death.dm,51 -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 -Rebooted server. -Running TG Revision Number: 4060. -Denied access to 'Cronzefir' connecting from 79.113.206.100 -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Zeus Geesenheimer (/mob/living/carbon/human) - src: Zeus Geesenheimer (/mob/living/carbon/human) - call stack: -Zeus Geesenheimer (/mob/living/carbon/human): db click("id", 0) -the id (/obj/screen): attack hand(Zeus Geesenheimer (/mob/living/carbon/human), 0) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=13;left=1;scr...") -Rebooted server. -Running TG Revision Number: 4060. -Sun Jul 15 13:06:40 2012 -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Bill Kerman (/mob/living/carbon/human) - src: Miner Cyborg -734 (/mob/living/silicon/robot) - call stack: -Miner Cyborg -734 (/mob/living/silicon/robot): Stat() -Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack): action(Miner Cyborg -734 (/mob/living/silicon/robot)) -Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack): action(Miner Cyborg -734 (/mob/living/silicon/robot)) -Miner Cyborg -734 (/mob/living/silicon/robot): attackby(Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack), Bill Kerman (/mob/living/carbon/human)) -Miner Cyborg -734 (/mob/living/silicon/robot): DblClick(the floor (100,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=16;left=1;scr...") -Miner Cyborg -734 (/mob/living/silicon/robot): Click(the floor (100,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=16;left=1;scr...") -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Bill Kerman (/mob/living/carbon/human) - src: Miner Cyborg -734 (/mob/living/silicon/robot) - call stack: -Miner Cyborg -734 (/mob/living/silicon/robot): Stat() -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Miner Cyborg -734 (/mob/living/silicon/robot)) -Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Miner Cyborg -734 (/mob/living/silicon/robot)) -Miner Cyborg -734 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Bill Kerman (/mob/living/carbon/human)) -Miner Cyborg -734 (/mob/living/silicon/robot): DblClick(the floor (99,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -Miner Cyborg -734 (/mob/living/silicon/robot): Click(the floor (99,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1142 - usr: Unknown (/mob/living/carbon/human) - src: Unknown (/mob/living/carbon/human) - call stack: -Unknown (/mob/living/carbon/human): db click("id", 1) -the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) -the id (/obj/screen): DblClick(null, null, null) -the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=14;left=1;scr...") -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1154 - usr: Rocky McDoughboy XIV (/mob/living/carbon/human) - src: Rocky McDoughboy XIV (/mob/living/carbon/human) - call stack: -Rocky McDoughboy XIV (/mob/living/carbon/human): db click("storage1", 1) -the storage1 (/obj/screen): attack hand(Rocky McDoughboy XIV (/mob/living/carbon/human), 1) -the storage1 (/obj/screen): DblClick(null, null, null) -the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=14;left=1;scr...") -runtime error: Cannot read null.loc -proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) - source file: corgi.dm,304 - usr: null - src: Ian (/mob/living/simple_animal/corgi/Ian) - call stack: -Ian (/mob/living/simple_animal/corgi/Ian): Life() -/datum/controller/game_control... (/datum/controller/game_controller): process() -Rebooted server. -Running TG Revision Number: 4060. -Stopped server. - +*** Begin Log: Fri Jul 13 17:04:27 2012 *** +Fri Jul 13 17:04:49 2012 +World opened on network port 2337. +Welcome BYOND! (4.0 Public Version 495.1136) +Running TG Revision Number: 4060. +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Puke Chunks (/mob/living/carbon/human) + src: Puke Chunks (/mob/living/carbon/human) + call stack: +Puke Chunks (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Puke Chunks (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1117 + usr: Lord Gwyn (/mob/living/carbon/human) + src: Lord Gwyn (/mob/living/carbon/human) + call stack: +Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) +the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) +the ears (/obj/screen): DblClick(null, null, null) +the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=28;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1117 + usr: Lord Gwyn (/mob/living/carbon/human) + src: Lord Gwyn (/mob/living/carbon/human) + call stack: +Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) +the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) +the ears (/obj/screen): DblClick(null, null, null) +the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1117 + usr: Lord Gwyn (/mob/living/carbon/human) + src: Lord Gwyn (/mob/living/carbon/human) + call stack: +Lord Gwyn (/mob/living/carbon/human): db click("ears", 0) +the ears (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 0) +the ears (/obj/screen): DblClick(null, null, null) +the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Blake Sable (/mob/living/carbon/human) + src: Blake Sable (/mob/living/carbon/human) + call stack: +Blake Sable (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Blake Sable (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Donald Mckendrick (/mob/living/carbon/human) + src: Donald Mckendrick (/mob/living/carbon/human) + call stack: +Donald Mckendrick (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Donald Mckendrick (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Blake Sable (/mob/living/carbon/human) + src: Blake Sable (/mob/living/carbon/human) + call stack: +Blake Sable (/mob/living/carbon/human): db click("o_clothing", 0) +the o_clothing (/obj/screen): attack hand(Blake Sable (/mob/living/carbon/human), 0) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=15;left=1;scr...") +Fri Jul 13 18:18:09 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Jeanette DeLisle (/mob/living/carbon/human) + src: Jeanette DeLisle (/mob/living/carbon/human) + call stack: +Jeanette DeLisle (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Jeanette DeLisle (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=21;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=21;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=15;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=15;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=19;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Reese Marcotte (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (169,125,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 +Fri Jul 13 19:18:20 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 +Denied access to 'Rotcod' connecting from 138.210.6.170 +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Jack Kasshu (/mob/living/carbon/human) + src: Jack Kasshu (/mob/living/carbon/human) + call stack: +Jack Kasshu (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=10;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Slimeria (/mob/living/carbon/human) + src: Slimeria (/mob/living/carbon/human) + call stack: +Slimeria (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Slimeria (/mob/living/carbon/human) + src: Slimeria (/mob/living/carbon/human) + call stack: +Slimeria (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Alberto Ivanov (/mob/living/carbon/human) + src: Alberto Ivanov (/mob/living/carbon/human) + call stack: +Alberto Ivanov (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Alberto Ivanov (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Mr. English (/mob/living/carbon/human) + src: Mr. English (/mob/living/carbon/human) + call stack: +Mr. English (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Mr. English (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=20;left=1;scr...") +runtime error: undefined variable /client/var/loc +proc name: get turf (/proc/get_turf) + source file: helper_procs.dm,38 + usr: the ghost (/mob/dead/observer) + src: null + call stack: +get turf(Nodka (/client)) +the ghost (/mob/dead/observer): New(Nodka (/client), 0) +Nodka (/client): Ghost() +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Captain Fudge (/mob/living/carbon/human) + src: Captain Fudge (/mob/living/carbon/human) + call stack: +Captain Fudge (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Captain Fudge (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Ellen Quinn (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Ellen Quinn (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=21;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=21;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Ellen Quinn (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Ellen Quinn (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") +Fri Jul 13 20:36:29 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Dawson Gibbens (/mob/living/carbon/human) + src: Dawson Gibbens (/mob/living/carbon/human) + call stack: +Dawson Gibbens (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Dawson Gibbens (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Jack Kasshu (/mob/living/carbon/human) + src: Jack Kasshu (/mob/living/carbon/human) + call stack: +Jack Kasshu (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Josh Morris (/mob/living/carbon/human) + src: Josh Morris (/mob/living/carbon/human) + call stack: +Josh Morris (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Josh Morris (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=14;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Josh Morris (/mob/living/carbon/human) + src: Josh Morris (/mob/living/carbon/human) + call stack: +Josh Morris (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Josh Morris (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Simon Bonkers (/mob/living/carbon/human) + src: Simon Bonkers (/mob/living/carbon/human) + call stack: +Simon Bonkers (/mob/living/carbon/human): db click("o_clothing", 0) +the o_clothing (/obj/screen): attack hand(Simon Bonkers (/mob/living/carbon/human), 0) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=14;left=1;scr...") +Denied access to 'Deamon_Man16' connecting from 108.200.222.182 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1127 + usr: Dave Oneal (/mob/living/carbon/human) + src: Dave Oneal (/mob/living/carbon/human) + call stack: +Dave Oneal (/mob/living/carbon/human): db click("i_clothing", 1) +the i_clothing (/obj/screen): attack hand(Dave Oneal (/mob/living/carbon/human), 1) +the i_clothing (/obj/screen): DblClick(null, null, null) +the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=13;left=1;scr...") +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Space Retrovirus (/datum/disease/dnaspread) + call stack: +Space Retrovirus (/datum/disease/dnaspread): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Space Retrovirus (/datum/disease/dnaspread) + call stack: +Space Retrovirus (/datum/disease/dnaspread): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Space Retrovirus (/datum/disease/dnaspread) + call stack: +Space Retrovirus (/datum/disease/dnaspread): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Space Retrovirus (/datum/disease/dnaspread) + call stack: +Space Retrovirus (/datum/disease/dnaspread): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). + +proc name: attackby (/mob/attackby) + source file: items.dm,334 +runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). + +proc name: attackby (/mob/attackby) + source file: items.dm,334 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1071 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +Warning: further proc crash messages are being suppressed to prevent overload... +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Reign Boudash (/mob/living/carbon/human) + src: Reign Boudash (/mob/living/carbon/human) + call stack: +Reign Boudash (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Reign Boudash (/mob/living/carbon/human) + src: Reign Boudash (/mob/living/carbon/human) + call stack: +Reign Boudash (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +Fri Jul 13 21:43:15 2012 +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Michigan Slim (/mob/living/carbon/human) + src: Engineering Cyborg -133 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -133 (/mob/living/silicon/robot): Stat() +Borg module reset board (/obj/item/borg/upgrade/reset): action(Engineering Cyborg -133 (/mob/living/silicon/robot)) +Borg module reset board (/obj/item/borg/upgrade/reset): action(Engineering Cyborg -133 (/mob/living/silicon/robot)) +Engineering Cyborg -133 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Michigan Slim (/mob/living/carbon/human)) +Engineering Cyborg -133 (/mob/living/silicon/robot): DblClick(the floor (95,85,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=18;left=1;scr...") +Engineering Cyborg -133 (/mob/living/silicon/robot): Click(the floor (95,85,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=18;left=1;scr...") +runtime error: undefined proc or verb /obj/machinery/portable_atmospherics/canister/toxins/attack(). + +proc name: attackby (/mob/attackby) + source file: items.dm,334 + usr: Watt Malker (/mob/living/carbon/human) + src: Black Dick Bishop (/mob/living/carbon/human) + call stack: +Black Dick Bishop (/mob/living/carbon/human): attackby(Canister \[Toxin (Bio)] (OPEN ... (/obj/machinery/portable_atmospherics/canister/toxins), Watt Malker (/mob/living/carbon/human), "chest") +runtime error: undefined variable /datum/preferences/var/fields +proc name: Topic (/obj/machinery/computer/cloning/Topic) + source file: cloning.dm,370 + usr: Logan Graves (/mob/living/carbon/human) + src: Cloning console (/obj/machinery/computer/cloning) + call stack: +Cloning console (/obj/machinery/computer/cloning): Topic("src=\[0x2005ab9];clone=\[0x210...", /list (/list)) +LordGeneralCastor (/client): Topic("src=\[0x2005ab9];clone=\[0x210...", /list (/list), Cloning console (/obj/machinery/computer/cloning)) +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,214 + usr: Kingston Sommer (/mob/living/carbon/human) + src: Miner Cyborg 133 (/mob/living/silicon/robot) + call stack: +Miner Cyborg 133 (/mob/living/silicon/robot): Stat() +Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg 133 (/mob/living/silicon/robot)) +Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg 133 (/mob/living/silicon/robot)) +Miner Cyborg 133 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Kingston Sommer (/mob/living/carbon/human)) +Miner Cyborg 133 (/mob/living/silicon/robot): DblClick(the floor (97,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=9;left=1;scre...") +Miner Cyborg 133 (/mob/living/silicon/robot): Click(the floor (97,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=14;icon-y=9;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Reign Boudash (/mob/living/carbon/human) + src: Reign Boudash (/mob/living/carbon/human) + call stack: +Reign Boudash (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Reign Boudash (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=17;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Zevin Thusar (/mob/living/carbon/human) + src: Zevin Thusar (/mob/living/carbon/human) + call stack: +Zevin Thusar (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Zevin Thusar (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Nick Cave (/mob/living/carbon/human) + src: Nick Cave (/mob/living/carbon/human) + call stack: +Nick Cave (/mob/living/carbon/human): db click("belt", null) +the belt (/obj/screen): attack hand(Nick Cave (/mob/living/carbon/human), null) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Nick Cave (/mob/living/carbon/human) + src: Nick Cave (/mob/living/carbon/human) + call stack: +Nick Cave (/mob/living/carbon/human): db click("belt", null) +the belt (/obj/screen): attack hand(Nick Cave (/mob/living/carbon/human), null) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=14;left=1;scr...") +runtime error: undefined variable /turf/simulated/floor/plating/var/mineral +proc name: attackby (/turf/simulated/wall/attackby) + source file: turf.dm,600 + usr: Monte Smail (/mob/living/carbon/human) + src: the plating (176,172,5) (/turf/simulated/floor/plating) + call stack: +the plating (176,172,5) (/turf/simulated/floor/plating): attackby(Diamond Mining Drill (/obj/item/weapon/pickaxe/diamonddrill), Monte Smail (/mob/living/carbon/human)) +the plating (176,172,5) (/turf/simulated/floor/plating): DblClick(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") +the plating (176,172,5) (/turf/simulated/floor/plating): DblClick(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") +the plating (176,172,5) (/turf/simulated/floor/plating): Click(the plating (176,172,5) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=15;icon-y=6;left=1;scre...") +Rebooted server. +Running TG Revision Number: 4060. +Fri Jul 13 22:48:12 2012 +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Matthew Hoff (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + call stack: +Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x20065fa];build=large_G...", /list (/list)) +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Chip Harshman (/mob/living/carbon/human) + src: Chip Harshman (/mob/living/carbon/human) + call stack: +Chip Harshman (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Chip Harshman (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Chip Harshman (/mob/living/carbon/human) + src: Chip Harshman (/mob/living/carbon/human) + call stack: +Chip Harshman (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Chip Harshman (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=20;left=1;scr...") +runtime error: Cannot read null.blood_DNA +proc name: update inv w uniform (/mob/living/carbon/human/update_inv_w_uniform) + source file: update_icons.dm,372 + usr: null + src: Chip Harshman (/mob/living/carbon/human) + call stack: +Chip Harshman (/mob/living/carbon/human): update inv w uniform(0) +Chip Harshman (/mob/living/carbon/human): handle chemicals in body() +Chip Harshman (/mob/living/carbon/human): Life() +/datum/controller/game_control... (/datum/controller/game_controller): process() +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Sprigg Spooly (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + call stack: +Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x200ca33];build=large_G...", /list (/list)) +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Sprigg Spooly (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + call stack: +Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x200ca94];build=large_G...", /list (/list)) +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1093 + usr: Jack Kasshu (/mob/living/carbon/human) + src: Jack Kasshu (/mob/living/carbon/human) + call stack: +Jack Kasshu (/mob/living/carbon/human): db click("eyes", 0) +the eyes (/obj/screen): attack hand(Jack Kasshu (/mob/living/carbon/human), 0) +the eyes (/obj/screen): DblClick(null, null, null) +the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=29;icon-y=1;left=1;scre...") +Fri Jul 13 23:52:26 2012 +### VarEdit by Yinadele: /datum/reagents maximum_volume=20 +### VarEdit by Yinadele: /datum/reagents total_volume=20 +### VarEdit by Yinadele: /obj/effect/decal name=chemicals (Haunter) +### VarEdit by Yinadele: /obj/effect/decal throwforce=20 +### VarEdit by Yinadele: /obj/effect/decal infra_luminosity=1 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Sergei Vladislanikov (/mob/living/carbon/human) + src: Sergei Vladislanikov (/mob/living/carbon/human) + call stack: +Sergei Vladislanikov (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Sergei Vladislanikov (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Sprigg Spooly (/mob/living/carbon/human) + src: Sprigg Spooly (/mob/living/carbon/human) + call stack: +Sprigg Spooly (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Sprigg Spooly (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=14;left=1;scr...") +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Sprigg Spooly as (Matthew Hoff... (/mob/living/carbon/human) + src: Engineering Cyborg -952 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -952 (/mob/living/silicon/robot): Stat() +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg -952 (/mob/living/silicon/robot)) +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg -952 (/mob/living/silicon/robot)) +Engineering Cyborg -952 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Sprigg Spooly as (Matthew Hoff... (/mob/living/carbon/human)) +Engineering Cyborg -952 (/mob/living/silicon/robot): DblClick(the floor (101,86,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") +Engineering Cyborg -952 (/mob/living/silicon/robot): Click(the floor (101,86,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Miku Frost (/mob/living/carbon/human) + src: Miku Frost (/mob/living/carbon/human) + call stack: +Miku Frost (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Miku Frost (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Miku Frost (/mob/living/carbon/human) + src: Miku Frost (/mob/living/carbon/human) + call stack: +Miku Frost (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Miku Frost (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Tood Hoawd (/mob/living/carbon/human) + src: Tood Hoawd (/mob/living/carbon/human) + call stack: +Tood Hoawd (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Tood Hoawd (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") +Sat Jul 14 00:57:29 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Ellen Quinn (/mob/living/carbon/human) + src: Ellen Quinn (/mob/living/carbon/human) + call stack: +Ellen Quinn (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(Ellen Quinn (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=22;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("back", null) +the back (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), null) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=14;left=1;scr...") +### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=commissarzoey +### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=nodrak +### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=dakorok +### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=nickknack +### VarEdit by Yinadele: /mob/living/carbon/metroid/adult ckey=yinadele +### VarEdit by Yinadele: /mob/living/carbon/metroid ckey=emperorofcatkind +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/download/check_completion) + source file: objective.dm,411 + usr: null + src: /datum/objective/download (/datum/objective/download) + call stack: +/datum/objective/download (/datum/objective/download): check completion() +extended (/datum/game_mode/extended): auto declare completion traitor() +/datum/controller/gameticker (/datum/controller/gameticker): declare completion() +/datum/controller/gameticker (/datum/controller/gameticker): process() +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/steal/check_completion) + source file: objective.dm,352 + usr: null + src: /datum/objective/steal (/datum/objective/steal) + call stack: +/datum/objective/steal (/datum/objective/steal): check completion() +extended (/datum/game_mode/extended): auto declare completion traitor() +/datum/controller/gameticker (/datum/controller/gameticker): declare completion() +/datum/controller/gameticker (/datum/controller/gameticker): process() +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/download/check_completion) + source file: objective.dm,411 + usr: null + src: /datum/objective/download (/datum/objective/download) + call stack: +/datum/objective/download (/datum/objective/download): check completion() +extended (/datum/game_mode/extended): auto declare completion traitor() +/datum/controller/gameticker (/datum/controller/gameticker): declare completion() +/datum/controller/gameticker (/datum/controller/gameticker): process() +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/steal/check_completion) + source file: objective.dm,352 + usr: null + src: /datum/objective/steal (/datum/objective/steal) + call stack: +/datum/objective/steal (/datum/objective/steal): check completion() +extended (/datum/game_mode/extended): auto declare completion traitor() +/datum/controller/gameticker (/datum/controller/gameticker): declare completion() +/datum/controller/gameticker (/datum/controller/gameticker): process() +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/download/check_completion) + source file: objective.dm,411 +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/download/check_completion) + source file: objective.dm,411 +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/steal/check_completion) + source file: objective.dm,352 +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Ophelia Braun (/mob/living/carbon/human) + src: Ophelia Braun (/mob/living/carbon/human) + call stack: +Ophelia Braun (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Ophelia Braun (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Helen Lester (/mob/living/carbon/human) + src: Helen Lester (/mob/living/carbon/human) + call stack: +Helen Lester (/mob/living/carbon/human): db click("belt", null) +the belt (/obj/screen): attack hand(Helen Lester (/mob/living/carbon/human), null) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=11;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Dave Oneal (/mob/living/carbon/human) + src: Dave Oneal (/mob/living/carbon/human) + call stack: +Dave Oneal (/mob/living/carbon/human): db click("id", null) +the id (/obj/screen): attack hand(Dave Oneal (/mob/living/carbon/human), null) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") +Sat Jul 14 01:57:46 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1117 + usr: Dat Bass (/mob/living/carbon/human) + src: Dat Bass (/mob/living/carbon/human) + call stack: +Dat Bass (/mob/living/carbon/human): db click("ears", null) +the ears (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), null) +the ears (/obj/screen): DblClick(null, null, null) +the ears (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Helen Lester (/mob/living/carbon/human) + src: Helen Lester (/mob/living/carbon/human) + call stack: +Helen Lester (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Helen Lester (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=12;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Lila Desminto (/mob/living/carbon/human) + src: Lila Desminto (/mob/living/carbon/human) + call stack: +Lila Desminto (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Lila Desminto (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=5;left=1;scre...") +### VarEdit by Doohl: /obj/effect/new_year_tree name=BODA TREE +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Penny Merriweather (/mob/living/carbon/human) + src: Penny Merriweather (/mob/living/carbon/human) + call stack: +Penny Merriweather (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Penny Merriweather (/mob/living/carbon/human) + src: Penny Merriweather (/mob/living/carbon/human) + call stack: +Penny Merriweather (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Penny Merriweather (/mob/living/carbon/human) + src: Penny Merriweather (/mob/living/carbon/human) + call stack: +Penny Merriweather (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Penny Merriweather (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Magnitis (/datum/disease/magnitis) + call stack: +Magnitis (/datum/disease/magnitis): cure(0) +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +Warning: further proc crash messages are being suppressed to prevent overload... +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Ashley Taylor (/mob/living/carbon/human) + src: Ashley Taylor (/mob/living/carbon/human) + call stack: +Ashley Taylor (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Ashley Taylor (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=15;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +Sat Jul 14 03:10:48 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1103 + usr: Trisha Galade (/mob/living/carbon/human) + src: Trisha Galade (/mob/living/carbon/human) + call stack: +Trisha Galade (/mob/living/carbon/human): db click("head", 0) +the head (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 0) +the head (/obj/screen): DblClick(null, null, null) +the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=26;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Trisha Galade (/mob/living/carbon/human) + src: Trisha Galade (/mob/living/carbon/human) + call stack: +Trisha Galade (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=14;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Jack Napier (/mob/living/carbon/human) + src: Jack Napier (/mob/living/carbon/human) + call stack: +Jack Napier (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Jack Napier (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=9;left=1;scre...") +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Reese Marcotte (/mob/living/carbon/human) + src: Reese Marcotte (/mob/living/carbon/human) + call stack: +Reese Marcotte (/mob/living/carbon/human): throw at(Asteroid (174,85,5) (/turf/simulated/floor/plating/airless/asteroid), 5, 1) +Delivery chute (/obj/machinery/disposal/deliveryChute): expel(null) +Rebooted server. +Running TG Revision Number: 4060. +Sat Jul 14 04:15:01 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1071 + usr: Flint Steel (/mob/living/carbon/human) + src: Flint Steel (/mob/living/carbon/human) + call stack: +Flint Steel (/mob/living/carbon/human): db click("shoes", 1) +the shoes (/obj/screen): attack hand(Flint Steel (/mob/living/carbon/human), 1) +the shoes (/obj/screen): DblClick(null, null, null) +the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Flint Steel (/mob/living/carbon/human) + src: Flint Steel (/mob/living/carbon/human) + call stack: +Flint Steel (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(Flint Steel (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=12;left=1;scre...") +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: The Flu (/datum/disease/flu) + call stack: +The Flu (/datum/disease/flu): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 +Warning: further proc crash messages are being suppressed to prevent overload... +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Trisha Galade (/mob/living/carbon/human) + src: Trisha Galade (/mob/living/carbon/human) + call stack: +Trisha Galade (/mob/living/carbon/human): db click("mask", 0) +the mask (/obj/screen): attack hand(Trisha Galade (/mob/living/carbon/human), 0) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") +Rebooted server. +Sat Jul 14 05:27:37 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Ladybug Honks (/mob/living/carbon/human) + src: Ladybug Honks (/mob/living/carbon/human) + call stack: +Ladybug Honks (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Ladybug Honks (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Ladybug Honks (/mob/living/carbon/human) + src: Ladybug Honks (/mob/living/carbon/human) + call stack: +Ladybug Honks (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Ladybug Honks (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=12;left=1;scr...") +Sat Jul 14 06:59:16 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Malik Graham (/mob/living/carbon/human) + src: Malik Graham (/mob/living/carbon/human) + call stack: +Malik Graham (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(Malik Graham (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=19;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Rocky McDoughboy XIV (/mob/living/carbon/human) + src: Rocky McDoughboy XIV (/mob/living/carbon/human) + call stack: +Rocky McDoughboy XIV (/mob/living/carbon/human): db click("o_clothing", 1) +the o_clothing (/obj/screen): attack hand(Rocky McDoughboy XIV (/mob/living/carbon/human), 1) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=11;left=1;scr...") +Sat Jul 14 08:11:16 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Sly (/mob/living/carbon/human) + src: Sly (/mob/living/carbon/human) + call stack: +Sly (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=5;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Sly (/mob/living/carbon/human) + src: Sly (/mob/living/carbon/human) + call stack: +Sly (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Sly (/mob/living/carbon/human) + src: Sly (/mob/living/carbon/human) + call stack: +Sly (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Sly (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=14;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Sher Thorun (/mob/living/carbon/human) + src: Sher Thorun (/mob/living/carbon/human) + call stack: +Sher Thorun (/mob/living/carbon/human): db click("storage1", null) +the storage1 (/obj/screen): attack hand(Sher Thorun (/mob/living/carbon/human), null) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=11;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1127 + usr: Jono Lionhurt (/mob/living/carbon/human) + src: Jono Lionhurt (/mob/living/carbon/human) + call stack: +Jono Lionhurt (/mob/living/carbon/human): db click("i_clothing", null) +the i_clothing (/obj/screen): attack hand(Jono Lionhurt (/mob/living/carbon/human), null) +the i_clothing (/obj/screen): DblClick(null, null, null) +the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=14;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=14;left=1;scr...") +Sat Jul 14 09:17:07 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): db click("storage2", 1) +the storage2 (/obj/screen): attack hand(Hugh Jazz (/mob/living/carbon/human), 1) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1127 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("i_clothing", 1) +the i_clothing (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) +the i_clothing (/obj/screen): DblClick(null, null, null) +the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=31;icon-y=21;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1127 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("i_clothing", 1) +the i_clothing (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) +the i_clothing (/obj/screen): DblClick(null, null, null) +the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=23;left=1;scr...") +Sat Jul 14 10:37:02 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1103 + usr: Lord Jamlamin (/mob/living/carbon/human) + src: Lord Jamlamin (/mob/living/carbon/human) + call stack: +Lord Jamlamin (/mob/living/carbon/human): db click("head", 0) +the head (/obj/screen): attack hand(Lord Jamlamin (/mob/living/carbon/human), 0) +the head (/obj/screen): DblClick(null, null, null) +the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Jennifer Ketavim (/mob/living/carbon/human) + src: Jennifer Ketavim (/mob/living/carbon/human) + call stack: +Jennifer Ketavim (/mob/living/carbon/human): db click("mask", 1) +the mask (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 1) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=10;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", null) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), null) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=18;left=1;scr...") +runtime error: Cannot execute null.dropped(). +proc name: drop l hand (/mob/proc/drop_l_hand) + source file: inventory.dm,104 + usr: Jeb Stone (/mob/living/carbon/human) + src: Jeb Stone (/mob/living/carbon/human) + call stack: +Jeb Stone (/mob/living/carbon/human): drop l hand(null) +Jeb Stone (/mob/living/carbon/human): drop item(null) +Jeb Stone (/mob/living/carbon/human): drop item v() +the drop (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=16;left=1;scre...") +Sat Jul 14 12:01:13 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1093 + usr: Thomas Hereford (/mob/living/carbon/human) + src: Thomas Hereford (/mob/living/carbon/human) + call stack: +Thomas Hereford (/mob/living/carbon/human): db click("eyes", 1) +the eyes (/obj/screen): attack hand(Thomas Hereford (/mob/living/carbon/human), 1) +the eyes (/obj/screen): DblClick(null, null, null) +the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=27;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Hugh Jazz (/mob/living/carbon/human) + src: Hugh Jazz (/mob/living/carbon/human) + call stack: +Hugh Jazz (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Paul Wolfe (/mob/living/carbon/human) + src: Paul Wolfe (/mob/living/carbon/human) + call stack: +Paul Wolfe (/mob/living/carbon/human): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) + call stack: +Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) + call stack: +Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen) + call stack: +Canister: \[O2] (/obj/machinery/portable_atmospherics/canister/oxygen): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air) + call stack: +Canister \[Air] (/obj/machinery/portable_atmospherics/canister/air): throw at(the floor (112,99,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (122,99,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +Warning: further proc crash messages are being suppressed to prevent overload... +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1071 + usr: Dat Bass (/mob/living/carbon/human) + src: Dat Bass (/mob/living/carbon/human) + call stack: +Dat Bass (/mob/living/carbon/human): db click("shoes", 1) +the shoes (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 1) +the shoes (/obj/screen): DblClick(null, null, null) +the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=17;left=1;scr...") +Sat Jul 14 13:19:34 2012 +runtime error: list index out of bounds +proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) + source file: cable.dm,520 + usr: Josue Sandford (/mob/living/carbon/human) + src: the power cable (/obj/structure/cable) + call stack: +the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() +the cable coil (/obj/item/weapon/cable_coil/orange): turf place(the plating (87,80,1) (/turf/simulated/floor/plating), Josue Sandford (/mob/living/carbon/human)) +the plating (87,80,1) (/turf/simulated/floor/plating): attackby(the cable coil (/obj/item/weapon/cable_coil/orange), Josue Sandford (/mob/living/carbon/human)) +the plating (87,80,1) (/turf/simulated/floor/plating): DblClick(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") +the plating (87,80,1) (/turf/simulated/floor/plating): DblClick(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") +the plating (87,80,1) (/turf/simulated/floor/plating): Click(the plating (87,80,1) (/turf/simulated/floor/plating), "mapwindow.map", "icon-x=17;icon-y=28;left=1;scr...") +runtime error: Cannot read null.nodes +proc name: merge powernets (/datum/powernet/proc/merge_powernets) + source file: power.dm,401 + usr: Darin Keppel (/mob/living/carbon/human) + src: /datum/powernet (/datum/powernet) + call stack: +/datum/powernet (/datum/powernet): merge powernets(null) +the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() +the cable piece (/obj/item/weapon/cable_coil): cable join(the power cable (/obj/structure/cable), Darin Keppel (/mob/living/carbon/human)) +the power cable (/obj/structure/cable): attackby(the cable piece (/obj/item/weapon/cable_coil), Darin Keppel (/mob/living/carbon/human)) +the power cable (/obj/structure/cable): DblClick(the floor (105,80,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") +the power cable (/obj/structure/cable): Click(the floor (105,80,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Jace Johnson (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Jace Johnson (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=19;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Jace Johnson (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Travis Robinson (/mob/living/carbon/human) + src: Travis Robinson (/mob/living/carbon/human) + call stack: +Travis Robinson (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Travis Robinson (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=12;left=1;scre...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Jace Johnson (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Jace Johnson (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Jace Johnson (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=18;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=18;left=1;scr...") +Sat Jul 14 14:26:55 2012 +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Appendicitis (/datum/disease/appendicitis) + call stack: +Appendicitis (/datum/disease/appendicitis): cure(0) +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Appendicitis (/datum/disease/appendicitis) + call stack: +Appendicitis (/datum/disease/appendicitis): cure(0) +Rebooted server. +Running TG Revision Number: 4060. +Denied access to 'Intigracy' connecting from 76.246.55.198 +Sat Jul 14 15:41:50 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Derrick Cobb (/mob/living/carbon/human) + src: Derrick Cobb (/mob/living/carbon/human) + call stack: +Derrick Cobb (/mob/living/carbon/human): db click("id", null) +the id (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), null) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1103 + usr: Derrick Cobb (/mob/living/carbon/human) + src: Derrick Cobb (/mob/living/carbon/human) + call stack: +Derrick Cobb (/mob/living/carbon/human): db click("head", 1) +the head (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), 1) +the head (/obj/screen): DblClick(null, null, null) +the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=27;icon-y=1;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Aaden Mitchell (/mob/living/carbon/human) + src: Aaden Mitchell (/mob/living/carbon/human) + call stack: +Aaden Mitchell (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Aaden Mitchell (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=17;left=1;scr...") +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Cletus Powers (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + call stack: +Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x2006613];build=large_G...", /list (/list)) +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Cletus Powers (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + call stack: +Core R&D Console (/obj/machinery/computer/rdconsole/core): Topic("src=\[0x2003615];build=large_G...", /list (/list)) +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Simon Bonkers (/mob/living/carbon/human) + src: Simon Bonkers (/mob/living/carbon/human) + call stack: +Simon Bonkers (/mob/living/carbon/human): db click("o_clothing", 0) +the o_clothing (/obj/screen): attack hand(Simon Bonkers (/mob/living/carbon/human), 0) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=24;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Hreri Bright-Eyed (/mob/living/carbon/human) + src: Hreri Bright-Eyed (/mob/living/carbon/human) + call stack: +Hreri Bright-Eyed (/mob/living/carbon/human): db click("mask", 1) +the mask (/obj/screen): attack hand(Hreri Bright-Eyed (/mob/living/carbon/human), 1) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=20;left=1;scr...") +Rebooted server. +Sat Jul 14 16:52:03 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Micheal Simpson (/mob/living/carbon/human) + src: Micheal Simpson (/mob/living/carbon/human) + call stack: +Micheal Simpson (/mob/living/carbon/human): db click("o_clothing", null) +the o_clothing (/obj/screen): attack hand(Micheal Simpson (/mob/living/carbon/human), null) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Micheal Simpson (/mob/living/carbon/human) + src: Micheal Simpson (/mob/living/carbon/human) + call stack: +Micheal Simpson (/mob/living/carbon/human): db click("o_clothing", null) +the o_clothing (/obj/screen): attack hand(Micheal Simpson (/mob/living/carbon/human), null) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=20;left=1;scr...") +runtime error: undefined variable /client/var/loc +proc name: get turf (/proc/get_turf) + source file: helper_procs.dm,38 + usr: the ghost (/mob/dead/observer) + src: null + call stack: +get turf(Akett (/client)) +the ghost (/mob/dead/observer): New(Akett (/client), 0) +Akett (/client): Ghost() +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Jennifer Ketavim (/mob/living/carbon/human) + src: Jennifer Ketavim (/mob/living/carbon/human) + call stack: +Jennifer Ketavim (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=15;left=1;scr...") +Rebooted server. +Sat Jul 14 17:57:29 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Bubba Bellton (/mob/living/carbon/human) + src: Bubba Bellton (/mob/living/carbon/human) + call stack: +Bubba Bellton (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Bubba Bellton (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=23;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Bubble (/mob/living/carbon/human) + src: Bubble (/mob/living/carbon/human) + call stack: +Bubble (/mob/living/carbon/human): db click("storage1", null) +the storage1 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), null) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Bubble (/mob/living/carbon/human) + src: Bubble (/mob/living/carbon/human) + call stack: +Bubble (/mob/living/carbon/human): db click("storage1", null) +the storage1 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), null) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Bartholomew Williams (/mob/living/carbon/human) + src: Bartholomew Williams (/mob/living/carbon/human) + call stack: +Bartholomew Williams (/mob/living/carbon/human): db click("mask", 0) +the mask (/obj/screen): attack hand(Bartholomew Williams (/mob/living/carbon/human), 0) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Rusty Fraser (/mob/living/carbon/human) + src: Rusty Fraser (/mob/living/carbon/human) + call stack: +Rusty Fraser (/mob/living/carbon/human): db click("back", null) +the back (/obj/screen): attack hand(Rusty Fraser (/mob/living/carbon/human), null) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=5;left=1;scre...") +Rebooted server. +Running TG Revision Number: 4060. +Sat Jul 14 19:13:30 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Derrick Cobb (/mob/living/carbon/human) + src: Derrick Cobb (/mob/living/carbon/human) + call stack: +Derrick Cobb (/mob/living/carbon/human): db click("mask", 1) +the mask (/obj/screen): attack hand(Derrick Cobb (/mob/living/carbon/human), 1) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=29;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=4;icon-y=26;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;shif...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=8;icon-y=26;left=1;ctrl...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: HoP Man (/mob/living/carbon/human) + src: HoP Man (/mob/living/carbon/human) + call stack: +HoP Man (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(HoP Man (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=3;icon-y=17;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Earl Swabby (/mob/living/carbon/human) + src: Earl Swabby (/mob/living/carbon/human) + call stack: +Earl Swabby (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=12;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Slimeria (/mob/living/carbon/human) + src: Slimeria (/mob/living/carbon/human) + call stack: +Slimeria (/mob/living/carbon/human): db click("o_clothing", 1) +the o_clothing (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 1) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=28;icon-y=9;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: River Pavlov (/mob/living/carbon/human) + src: River Pavlov (/mob/living/carbon/human) + call stack: +River Pavlov (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(River Pavlov (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=15;left=1;scr...") +runtime error: list index out of bounds +proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) + source file: cable.dm,501 + usr: Tyrion Lannister (/mob/living/carbon/human) + src: the power cable (/obj/structure/cable) + call stack: +the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() +the cable piece (/obj/item/weapon/cable_coil): cable join(the power cable (/obj/structure/cable), Tyrion Lannister (/mob/living/carbon/human)) +the power cable (/obj/structure/cable): attackby(the cable piece (/obj/item/weapon/cable_coil), Tyrion Lannister (/mob/living/carbon/human)) +the power cable (/obj/structure/cable): DblClick(the floor (174,138,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=17;left=1;scr...") +the power cable (/obj/structure/cable): Click(the floor (174,138,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=17;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Slimeria (/mob/living/carbon/human) + src: Slimeria (/mob/living/carbon/human) + call stack: +Slimeria (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Slimeria (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=24;left=1;scr...") +Sat Jul 14 20:29:42 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Urist McAssistant (/mob/living/carbon/human) + src: Urist McAssistant (/mob/living/carbon/human) + call stack: +Urist McAssistant (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Urist McAssistant (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=17;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Jennifer Ketavim (/mob/living/carbon/human) + src: Jennifer Ketavim (/mob/living/carbon/human) + call stack: +Jennifer Ketavim (/mob/living/carbon/human): db click("o_clothing", 0) +the o_clothing (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 0) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=5;left=1;scre...") +Sat Jul 14 21:49:49 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Jennifer Ketavim (/mob/living/carbon/human) + src: Jennifer Ketavim (/mob/living/carbon/human) + call stack: +Jennifer Ketavim (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Jennifer Ketavim (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=30;icon-y=20;left=1;scr...") +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(/list (/list), /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(/list (/list), /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Log%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(/list (/list), /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=Return", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=Return", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(/list (/list), /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + call stack: +mergeRecordLists(null, /list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +sortRecord(/list (/list), "name", 1) +Security Records (/obj/machinery/computer/secure_data): attack hand(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): attack ai(Wintermute (/mob/living/silicon/ai)) +Security Records (/obj/machinery/computer/secure_data): updateUsrDialog() +Security Records (/obj/machinery/computer/secure_data): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list)) +Saar Cavaliers (/client): Topic("src=\[0x2008e1c];choice=New%20...", /list (/list), Security Records (/obj/machinery/computer/secure_data)) +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + source file: ethereal_jaunt.dm,81 +runtime error: undefined variable /client/var/loc +proc name: get turf (/proc/get_turf) + source file: helper_procs.dm,38 +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 +runtime error: Cannot read null.reagents +proc name: fire syringe (/obj/item/weapon/gun/syringe/proc/fire_syringe) + source file: Chemistry-Tools.dm,462 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Reuben Garratt (/mob/living/carbon/human) + src: Reuben Garratt (/mob/living/carbon/human) + call stack: +Reuben Garratt (/mob/living/carbon/human): db click("id", null) +the id (/obj/screen): attack hand(Reuben Garratt (/mob/living/carbon/human), null) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=15;left=1;scr...") +Sat Jul 14 23:05:19 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Alice Ravensdale (/mob/living/carbon/human) + src: Alice Ravensdale (/mob/living/carbon/human) + call stack: +Alice Ravensdale (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Alice Ravensdale (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Eric Hunter (/mob/living/carbon/human) + src: Eric Hunter (/mob/living/carbon/human) + call stack: +Eric Hunter (/mob/living/carbon/human): db click("o_clothing", 1) +the o_clothing (/obj/screen): attack hand(Eric Hunter (/mob/living/carbon/human), 1) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=14;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Samuel York (/mob/living/carbon/human) + src: Samuel York (/mob/living/carbon/human) + call stack: +Samuel York (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Samuel York (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=15;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1103 + usr: MCEyePop (/mob/living/carbon/human) + src: MCEyePop (/mob/living/carbon/human) + call stack: +MCEyePop (/mob/living/carbon/human): db click("head", 1) +the head (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) +the head (/obj/screen): DblClick(null, null, null) +the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=25;icon-y=11;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=29;icon-y=17;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=21;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=21;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Alexander Delapour (/mob/living/carbon/human) + src: Alexander Delapour (/mob/living/carbon/human) + call stack: +Alexander Delapour (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(Alexander Delapour (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=23;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Roman Sheets (/mob/living/carbon/human) + src: Roman Sheets (/mob/living/carbon/human) + call stack: +Roman Sheets (/mob/living/carbon/human): db click("back", null) +the back (/obj/screen): attack hand(Roman Sheets (/mob/living/carbon/human), null) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=10;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1127 + usr: Roman Sheets (/mob/living/carbon/human) + src: Roman Sheets (/mob/living/carbon/human) + call stack: +Roman Sheets (/mob/living/carbon/human): db click("i_clothing", 0) +the i_clothing (/obj/screen): attack hand(Roman Sheets (/mob/living/carbon/human), 0) +the i_clothing (/obj/screen): DblClick(null, null, null) +the i_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=18;left=1;scr...") +Sun Jul 15 00:17:04 2012 +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Iroquois Pliskin (/mob/living/carbon/human) + src: Miner Cyborg -770 (/mob/living/silicon/robot) + call stack: +Miner Cyborg -770 (/mob/living/silicon/robot): Stat() +Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg -770 (/mob/living/silicon/robot)) +Borg module reset board (/obj/item/borg/upgrade/reset): action(Miner Cyborg -770 (/mob/living/silicon/robot)) +Miner Cyborg -770 (/mob/living/silicon/robot): attackby(Borg module reset board (/obj/item/borg/upgrade/reset), Iroquois Pliskin (/mob/living/carbon/human)) +Miner Cyborg -770 (/mob/living/silicon/robot): DblClick(the floor (98,88,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=10;left=1;scr...") +Miner Cyborg -770 (/mob/living/silicon/robot): Click(the floor (98,88,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=10;left=1;scr...") +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Iroquois Pliskin (/mob/living/carbon/human) + src: Engineering Cyborg 770 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg 770 (/mob/living/silicon/robot): Stat() +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg 770 (/mob/living/silicon/robot)) +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Engineering Cyborg 770 (/mob/living/silicon/robot)) +Engineering Cyborg 770 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Iroquois Pliskin (/mob/living/carbon/human)) +Engineering Cyborg 770 (/mob/living/silicon/robot): DblClick(the floor (98,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") +Engineering Cyborg 770 (/mob/living/silicon/robot): Click(the floor (98,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=12;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: MCEyePop (/mob/living/carbon/human) + src: MCEyePop (/mob/living/carbon/human) + call stack: +MCEyePop (/mob/living/carbon/human): db click("belt", 1) +the belt (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: MCEyePop (/mob/living/carbon/human) + src: MCEyePop (/mob/living/carbon/human) + call stack: +MCEyePop (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(MCEyePop (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human) + src: Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human) + call stack: +Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human): db click("back", 1) +the back (/obj/screen): attack hand(Roman Sheets as (Petrov Petrov... (/mob/living/carbon/human), 1) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Earl Swabby (/mob/living/carbon/human) + src: Earl Swabby (/mob/living/carbon/human) + call stack: +Earl Swabby (/mob/living/carbon/human): db click("storage1", null) +the storage1 (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), null) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=5;icon-y=19;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Smoke Shaw (/mob/living/carbon/human) + src: Smoke Shaw (/mob/living/carbon/human) + call stack: +Smoke Shaw (/mob/living/carbon/human): db click("mask", 0) +the mask (/obj/screen): attack hand(Smoke Shaw (/mob/living/carbon/human), 0) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=13;left=1;scr...") +runtime error: Cannot read null.reagents +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,748 + usr: Dutch Hargrave (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=18;icon-y=11;left=1;scr...") +runtime error: Cannot read null.reagents +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,748 + usr: Dutch Hargrave (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=6;left=1;scre...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=17;icon-y=6;left=1;scre...") +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Dutch Hargrave (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + call stack: +All-In-One Grinder (/obj/machinery/reagentgrinder): attackby(Plant Bag (/obj/item/weapon/plantbag), Dutch Hargrave (/mob/living/carbon/human)) +All-In-One Grinder (/obj/machinery/reagentgrinder): DblClick(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=6;left=1;scre...") +All-In-One Grinder (/obj/machinery/reagentgrinder): Click(the floor (154,134,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=20;icon-y=6;left=1;scre...") +Rebooted server. +Running TG Revision Number: 4060. +Sun Jul 15 01:27:07 2012 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Crate (/obj/structure/closet/crate) + call stack: +Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Crate (/obj/structure/closet/crate) + call stack: +Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: the emergency closet (/obj/structure/closet/emcloset) + call stack: +the emergency closet (/obj/structure/closet/emcloset): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: 0 + src: Crate (/obj/structure/closet/crate) + call stack: +Crate (/obj/structure/closet/crate): throw at(the floor (172,138,1) (/turf/simulated/floor), 100, 1) +the disposal pipe (/obj/structure/disposalpipe/trunk): expel(null, the floor (182,138,1) (/turf/simulated/floor), 8) +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 +Warning: further proc crash messages are being suppressed to prevent overload... +Rebooted server. +Sun Jul 15 02:33:41 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Earl Swabby (/mob/living/carbon/human) + src: Earl Swabby (/mob/living/carbon/human) + call stack: +Earl Swabby (/mob/living/carbon/human): db click("storage2", null) +the storage2 (/obj/screen): attack hand(Earl Swabby (/mob/living/carbon/human), null) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=23;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1093 + usr: Lord Gwyn (/mob/living/carbon/human) + src: Lord Gwyn (/mob/living/carbon/human) + call stack: +Lord Gwyn (/mob/living/carbon/human): db click("eyes", 1) +the eyes (/obj/screen): attack hand(Lord Gwyn (/mob/living/carbon/human), 1) +the eyes (/obj/screen): DblClick(null, null, null) +the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=9;icon-y=18;left=1;scre...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Crunk Junksworth (/mob/living/carbon/human) + src: Crunk Junksworth (/mob/living/carbon/human) + call stack: +Crunk Junksworth (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Crunk Junksworth (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Crunk Junksworth (/mob/living/carbon/human) + src: Crunk Junksworth (/mob/living/carbon/human) + call stack: +Crunk Junksworth (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Crunk Junksworth (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=19;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +Denied access to 'StevenRodriguez' connecting from 98.64.162.60 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Coyo (/mob/living/carbon/human) + src: Coyo (/mob/living/carbon/human) + call stack: +Coyo (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Coyo (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=13;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Yahn Deir (/mob/living/carbon/human) + src: Yahn Deir (/mob/living/carbon/human) + call stack: +Yahn Deir (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Yahn Deir (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=22;icon-y=10;left=1;scr...") +Sun Jul 15 03:41:55 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1048 + usr: Samuel York (/mob/living/carbon/human) + src: Samuel York (/mob/living/carbon/human) + call stack: +Samuel York (/mob/living/carbon/human): db click("o_clothing", 1) +the o_clothing (/obj/screen): attack hand(Samuel York (/mob/living/carbon/human), 1) +the o_clothing (/obj/screen): DblClick(null, null, null) +the o_clothing (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") +### VarEdit by Doohl: /obj/effect/step_trigger/teleporter affect_ghosts=1 +### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_x=239 +### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_x=239 +### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_y=12 +### VarEdit by Doohl: /obj/effect/step_trigger/teleporter teleport_z=2 +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Bubble (/mob/living/carbon/human) + src: Bubble (/mob/living/carbon/human) + call stack: +Bubble (/mob/living/carbon/human): db click("storage2", 0) +the storage2 (/obj/screen): attack hand(Bubble (/mob/living/carbon/human), 0) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=13;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Tyson Roby (/mob/living/carbon/human) + src: Tyson Roby (/mob/living/carbon/human) + call stack: +Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=17;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Tyson Roby (/mob/living/carbon/human) + src: Tyson Roby (/mob/living/carbon/human) + call stack: +Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Tyson Roby (/mob/living/carbon/human) + src: Tyson Roby (/mob/living/carbon/human) + call stack: +Tyson Roby (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Tyson Roby (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=16;left=1;scr...") +runtime error: Cannot read null.w_class +proc name: attackby (/obj/item/weapon/storage/attackby) + source file: storage.dm,187 + usr: Samuel York (/mob/living/carbon/human) + src: the backpack (/obj/item/weapon/storage/backpack) + call stack: +the backpack (/obj/item/weapon/storage/backpack): attackby(null, Samuel York (/mob/living/carbon/human)) +the backpack (/obj/item/weapon/storage/backpack): attackby(null, Samuel York (/mob/living/carbon/human)) +the backpack (/obj/item/weapon/storage/backpack): DblClick(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") +the backpack (/obj/item/weapon/storage/backpack): Click(null, "mapwindow.map", "icon-x=17;icon-y=18;left=1;scr...") +Rebooted server. +Sun Jul 15 04:43:18 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=26;icon-y=21;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=20;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1035 + usr: Michigan Slim (/mob/living/carbon/human) + src: Michigan Slim (/mob/living/carbon/human) + call stack: +Michigan Slim (/mob/living/carbon/human): db click("back", 0) +the back (/obj/screen): attack hand(Michigan Slim (/mob/living/carbon/human), 0) +the back (/obj/screen): DblClick(null, null, null) +the back (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=19;left=1;scr...") +Rebooted server. +Sun Jul 15 05:48:07 2012 +Running TG Revision Number: 4060. +### VarEdit by Yinadele: /mob/living/simple_animal/cat/Runtime ckey=bossname +### VarEdit by Yinadele: /mob/living/simple_animal/cat/Runtime universal_speak=0 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Jimz Ruztlfoot (/mob/living/carbon/human) + src: Jimz Ruztlfoot (/mob/living/carbon/human) + call stack: +Jimz Ruztlfoot (/mob/living/carbon/human): db click("belt", 0) +the belt (/obj/screen): attack hand(Jimz Ruztlfoot (/mob/living/carbon/human), 0) +the belt (/obj/screen): DblClick(null, null, null) +the belt (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=10;left=1;scr...") +Rebooted server. +Sun Jul 15 06:57:20 2012 +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1061 + usr: Quinton Bould (/mob/living/carbon/human) + src: Quinton Bould (/mob/living/carbon/human) + call stack: +Quinton Bould (/mob/living/carbon/human): db click("gloves", 1) +the gloves (/obj/screen): attack hand(Quinton Bould (/mob/living/carbon/human), 1) +the gloves (/obj/screen): DblClick(null, null, null) +the gloves (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=19;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1023 + usr: Yahn Deir (/mob/living/carbon/human) + src: Yahn Deir (/mob/living/carbon/human) + call stack: +Yahn Deir (/mob/living/carbon/human): db click("mask", 1) +the mask (/obj/screen): attack hand(Yahn Deir (/mob/living/carbon/human), 1) +the mask (/obj/screen): DblClick(null, null, null) +the mask (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=20;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Dutch Hargrave (/mob/living/carbon/human) + src: Dutch Hargrave (/mob/living/carbon/human) + call stack: +Dutch Hargrave (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Dutch Hargrave (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=16;left=1;scr...") +Sun Jul 15 08:26:36 2012 +runtime error: Cannot read null.nodes +proc name: merge powernets (/datum/powernet/proc/merge_powernets) + source file: power.dm,401 + usr: Stephen Cox (/mob/living/carbon/human) + src: /datum/powernet (/datum/powernet) + call stack: +/datum/powernet (/datum/powernet): merge powernets(null) +the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() +the cable coil (/obj/item/weapon/cable_coil): turf place(the floor (87,115,1) (/turf/simulated/floor), Stephen Cox (/mob/living/carbon/human)) +the floor (87,115,1) (/turf/simulated/floor): attackby(the cable coil (/obj/item/weapon/cable_coil), Stephen Cox (/mob/living/carbon/human)) +the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +the floor (87,115,1) (/turf/simulated/floor): Click(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +runtime error: Cannot read null.nodes +proc name: merge powernets (/datum/powernet/proc/merge_powernets) + source file: power.dm,401 + usr: Stephen Cox (/mob/living/carbon/human) + src: /datum/powernet (/datum/powernet) + call stack: +/datum/powernet (/datum/powernet): merge powernets(null) +the power cable (/obj/structure/cable): mergeConnectedNetworksOnTurf() +the cable coil (/obj/item/weapon/cable_coil): turf place(the floor (87,115,1) (/turf/simulated/floor), Stephen Cox (/mob/living/carbon/human)) +the floor (87,115,1) (/turf/simulated/floor): attackby(the cable coil (/obj/item/weapon/cable_coil), Stephen Cox (/mob/living/carbon/human)) +the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +the floor (87,115,1) (/turf/simulated/floor): DblClick(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +the floor (87,115,1) (/turf/simulated/floor): Click(the floor (87,115,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=26;icon-y=18;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1166 + usr: Clarisse Holderbach (/mob/living/carbon/human) + src: Clarisse Holderbach (/mob/living/carbon/human) + call stack: +Clarisse Holderbach (/mob/living/carbon/human): db click("storage2", null) +the storage2 (/obj/screen): attack hand(Clarisse Holderbach (/mob/living/carbon/human), null) +the storage2 (/obj/screen): DblClick(null, null, null) +the storage2 (/obj/screen): Click(null, "mapwindow.map", "icon-x=17;icon-y=15;left=1;scr...") +Sun Jul 15 09:41:02 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1071 + usr: Samantha Kendrick (/mob/living/carbon/human) + src: Samantha Kendrick (/mob/living/carbon/human) + call stack: +Samantha Kendrick (/mob/living/carbon/human): db click("shoes", 1) +the shoes (/obj/screen): attack hand(Samantha Kendrick (/mob/living/carbon/human), 1) +the shoes (/obj/screen): DblClick(null, null, null) +the shoes (/obj/screen): Click(null, "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +### VarEdit by Scaredofshadows: /mob/living/simple_animal/corgi/Ian ckey=laharlmontgommery +Sun Jul 15 10:43:09 2012 +### VarEdit by Scaredofshadows: /mob/living/simple_animal/cat/Runtime ckey=drlareku +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1093 + usr: Rowdy Randy (/mob/living/carbon/human) + src: Rowdy Randy (/mob/living/carbon/human) + call stack: +Rowdy Randy (/mob/living/carbon/human): db click("eyes", 0) +the eyes (/obj/screen): attack hand(Rowdy Randy (/mob/living/carbon/human), 0) +the eyes (/obj/screen): DblClick(null, null, null) +the eyes (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=20;left=1;scr...") +### VarEdit by Scaredofshadows: /mob/living/simple_animal/cat/Runtime canmove=1 +### VarEdit by Scaredofshadows: /mob/living/simple_animal/parrot/DrProfessor ckey=kyora473 +runtime error: Cannot read null.amount +proc name: attackby (/obj/machinery/constructable_frame/machine_frame/attackby) + source file: constructable_frame.dm,27 + usr: Quinton Bould (/mob/living/carbon/human) + src: the machine frame (/obj/machinery/constructable_frame/machine_frame) + call stack: +the machine frame (/obj/machinery/constructable_frame/machine_frame): attackby(null, Quinton Bould (/mob/living/carbon/human)) +the machine frame (/obj/machinery/constructable_frame/machine_frame): DblClick(the floor (98,69,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=23;icon-y=16;left=1;scr...") +the machine frame (/obj/machinery/constructable_frame/machine_frame): Click(the floor (98,69,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=23;icon-y=16;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1103 + usr: Quinton Bould (/mob/living/carbon/human) + src: Quinton Bould (/mob/living/carbon/human) + call stack: +Quinton Bould (/mob/living/carbon/human): db click("head", 1) +the head (/obj/screen): attack hand(Quinton Bould (/mob/living/carbon/human), 1) +the head (/obj/screen): DblClick(null, null, null) +the head (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=28;left=1;scr...") +runtime error: Cannot read null.loc +proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) + source file: corgi.dm,304 + usr: null + src: Captain Ian (/mob/living/simple_animal/corgi/Ian) + call stack: +Captain Ian (/mob/living/simple_animal/corgi/Ian): Life() +/datum/controller/game_control... (/datum/controller/game_controller): process() +### VarEdit by Scaredofshadows: /mob/living/simple_animal/corgi/Ian real_name=Fluffum-Wuffums +Rebooted server. +Running TG Revision Number: 4060. +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Dat Bass (/mob/living/carbon/human) + src: Dat Bass (/mob/living/carbon/human) + call stack: +Dat Bass (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Dat Bass (/mob/living/carbon/human) + src: Dat Bass (/mob/living/carbon/human) + call stack: +Dat Bass (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=15;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Dat Bass (/mob/living/carbon/human) + src: Dat Bass (/mob/living/carbon/human) + call stack: +Dat Bass (/mob/living/carbon/human): db click("storage1", 0) +the storage1 (/obj/screen): attack hand(Dat Bass (/mob/living/carbon/human), 0) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=14;icon-y=15;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=18;icon-y=13;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=9;left=1;scre...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=9;left=1;scre...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=21;icon-y=11;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=19;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=20;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=15;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=12;left=1;scr...") +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + call stack: +Engineering Cyborg -432 (/mob/living/silicon/robot): radio menu() +the radio (/obj/screen): Click(null, "mapwindow.map", "icon-x=19;icon-y=11;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1061 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1071 +Sun Jul 15 12:02:37 2012 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 +runtime error: Cannot modify null.status. +proc name: death (/mob/living/silicon/robot/death) + source file: death.dm,51 +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 +Rebooted server. +Running TG Revision Number: 4060. +Denied access to 'Cronzefir' connecting from 79.113.206.100 +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Zeus Geesenheimer (/mob/living/carbon/human) + src: Zeus Geesenheimer (/mob/living/carbon/human) + call stack: +Zeus Geesenheimer (/mob/living/carbon/human): db click("id", 0) +the id (/obj/screen): attack hand(Zeus Geesenheimer (/mob/living/carbon/human), 0) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=20;icon-y=13;left=1;scr...") +Rebooted server. +Running TG Revision Number: 4060. +Sun Jul 15 13:06:40 2012 +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Bill Kerman (/mob/living/carbon/human) + src: Miner Cyborg -734 (/mob/living/silicon/robot) + call stack: +Miner Cyborg -734 (/mob/living/silicon/robot): Stat() +Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack): action(Miner Cyborg -734 (/mob/living/silicon/robot)) +Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack): action(Miner Cyborg -734 (/mob/living/silicon/robot)) +Miner Cyborg -734 (/mob/living/silicon/robot): attackby(Mining Borg Jetpack (/obj/item/borg/upgrade/jetpack), Bill Kerman (/mob/living/carbon/human)) +Miner Cyborg -734 (/mob/living/silicon/robot): DblClick(the floor (100,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=16;left=1;scr...") +Miner Cyborg -734 (/mob/living/silicon/robot): Click(the floor (100,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=16;left=1;scr...") +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Bill Kerman (/mob/living/carbon/human) + src: Miner Cyborg -734 (/mob/living/silicon/robot) + call stack: +Miner Cyborg -734 (/mob/living/silicon/robot): Stat() +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Miner Cyborg -734 (/mob/living/silicon/robot)) +Borg VTEC Module (/obj/item/borg/upgrade/vtec): action(Miner Cyborg -734 (/mob/living/silicon/robot)) +Miner Cyborg -734 (/mob/living/silicon/robot): attackby(Borg VTEC Module (/obj/item/borg/upgrade/vtec), Bill Kerman (/mob/living/carbon/human)) +Miner Cyborg -734 (/mob/living/silicon/robot): DblClick(the floor (99,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +Miner Cyborg -734 (/mob/living/silicon/robot): Click(the floor (99,87,1) (/turf/simulated/floor), "mapwindow.map", "icon-x=16;icon-y=19;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1142 + usr: Unknown (/mob/living/carbon/human) + src: Unknown (/mob/living/carbon/human) + call stack: +Unknown (/mob/living/carbon/human): db click("id", 1) +the id (/obj/screen): attack hand(Unknown (/mob/living/carbon/human), 1) +the id (/obj/screen): DblClick(null, null, null) +the id (/obj/screen): Click(null, "mapwindow.map", "icon-x=11;icon-y=14;left=1;scr...") +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1154 + usr: Rocky McDoughboy XIV (/mob/living/carbon/human) + src: Rocky McDoughboy XIV (/mob/living/carbon/human) + call stack: +Rocky McDoughboy XIV (/mob/living/carbon/human): db click("storage1", 1) +the storage1 (/obj/screen): attack hand(Rocky McDoughboy XIV (/mob/living/carbon/human), 1) +the storage1 (/obj/screen): DblClick(null, null, null) +the storage1 (/obj/screen): Click(null, "mapwindow.map", "icon-x=15;icon-y=14;left=1;scr...") +runtime error: Cannot read null.loc +proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) + source file: corgi.dm,304 + usr: null + src: Ian (/mob/living/simple_animal/corgi/Ian) + call stack: +Ian (/mob/living/simple_animal/corgi/Ian): Life() +/datum/controller/game_control... (/datum/controller/game_controller): process() +Rebooted server. +Running TG Revision Number: 4060. +Stopped server. + *** End Log: Sun Jul 15 13:55:08 2012 *** \ No newline at end of file diff --git a/tools/Runtime Condenser/Main.cpp b/tools/Runtime Condenser/Main.cpp index bfae67dbe1e..ae5e66a4849 100644 --- a/tools/Runtime Condenser/Main.cpp +++ b/tools/Runtime Condenser/Main.cpp @@ -1,314 +1,314 @@ -/* Runtime Condenser by Nodrak - * This will sum up identical runtimes into one, giving a total of how many times it occured. The first occurance - * of the runtime will log the proc, source, usr and src, the rest will just add to the total. Infinite loops will - * also be caught and displayed (if any) above the list of runtimes. - * - * How to use: - * 1) Copy and paste your list of runtimes from Dream Daemon into input.exe - * 2) Run RuntimeCondenser.exe - * 3) Open output.txt for a condensed report of the runtimes - */ - -#include -#include -#include -using namespace std; - -//Make all of these global. It's bad yes, but it's a small program so it really doesn't affect anything. - //Because hardcoded numbers are bad :( - const unsigned short maxStorage = 99; //100 - 1 - - //What we use to read input - string currentLine = "Blank"; - string nextLine = "Blank"; - - //Stores lines we want to keep to print out - string storedRuntime[maxStorage+1]; - string storedProc[maxStorage+1]; - string storedSource[maxStorage+1]; - string storedUsr[maxStorage+1]; - string storedSrc[maxStorage+1]; - - //Stat tracking stuff for output - unsigned int totalRuntimes = 0; - unsigned int totalUniqueRuntimes = 0; - unsigned int totalInfiniteLoops = 0; - unsigned int totalUniqueInfiniteLoops = 0; - - //Misc - unsigned int numRuntime[maxStorage+1]; //Number of times a specific runtime has occured - bool checkNextLines = false; //Used in case byond has condensed a large number of similar runtimes - int storedIterator = 0; //Used to remember where we stored the runtime - -bool readFromFile() -{ - //Open file to read - ifstream inputFile("input.txt"); - - if(inputFile.is_open()) - { - while(!inputFile.eof()) //Until end of file - { - //If we've run out of storage - if(storedRuntime[maxStorage] != "Blank") break; - - //Update our lines - currentLine = nextLine; - getline(inputFile, nextLine); - - //After finding a new runtime, check to see if there are extra values to store - if(checkNextLines) - { - //Skip ahead - currentLine = nextLine; - getline(inputFile, nextLine); - - //If we find this, we have new stuff to store - if(nextLine.find("usr:") != std::string::npos) - { - //Store more info - storedSource[storedIterator] = currentLine; - storedUsr[storedIterator] = nextLine; - - //Skip ahead again - currentLine = nextLine; - getline(inputFile, nextLine); - - //Store the last of the info - storedSrc[storedIterator] = nextLine; - } - checkNextLines = false; - } - - //Found an infinite loop! - if(currentLine.find("Infinite loop suspected") != std::string::npos || currentLine.find("Maximum recursion level reached") != std::string::npos) - { - totalInfiniteLoops++; - - for(int i=0; i <= maxStorage; i++) - { - //We've already encountered this - if(currentLine == storedRuntime[i]) - { - numRuntime[i]++; - break; - } - - //We've never encoutnered this - if(storedRuntime[i] == "Blank") - { - storedRuntime[i] = currentLine; - currentLine = nextLine; - getline(inputFile, nextLine); //Skip the "if this is not an infinite loop" line - storedProc[i] = nextLine; - numRuntime[i] = 1; - checkNextLines = true; - storedIterator = i; - totalUniqueInfiniteLoops++; - break; - } - } - } - //Found a runtime! - else if(currentLine.find("runtime error:") != std::string::npos) - { - totalRuntimes++; - for(int i=0; i <= maxStorage; i++) - { - //We've already encountered this - if(currentLine == storedRuntime[i]) - { - numRuntime[i]++; - break; - } - - //We've never encoutnered this - if(storedRuntime[i] == "Blank") - { - storedRuntime[i] = currentLine; - storedProc[i] = nextLine; - numRuntime[i] = 1; - checkNextLines = true; - storedIterator = i; - totalUniqueRuntimes++; - break; - } - } - } - } - } - else - { - return false; - } - return true; -} - -bool writeToFile() -{ - //Open and clear the file - ofstream outputFile("Output.txt", ios::trunc); - - if(outputFile.is_open()) - { - outputFile << "Note: The proc name, source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; - if(totalUniqueInfiniteLoops > 0) - { - outputFile << "Total unique infinite loops: " << totalUniqueInfiniteLoops << endl; - } - if(totalInfiniteLoops > 0) - { - outputFile << "Total infinite loops: " << totalInfiniteLoops << endl; - } - outputFile << "Total unique runtimes: " << totalUniqueRuntimes << endl; - outputFile << "Total runtimes: " << totalRuntimes << endl << endl; - - //Display a warning if we've hit the maximum space we've allocated for storage - if(totalUniqueRuntimes + totalUniqueInfiniteLoops >= maxStorage) - { - outputFile << "Warning: The maximum number of unique runtimes has been hit. If there were more, they have been cropped out.\n\n"; - } - - - //If we have infinite loops, display them first. - if(totalInfiniteLoops > 0) - { - outputFile << "** Infinite loops **"; - for(int i=0; i <= maxStorage; i++) - { - if(storedRuntime[i].find("Infinite loop suspected") != std::string::npos || storedRuntime[i].find("Maximum recursion level reached") != std::string::npos) - { - if(numRuntime[i] != 0) outputFile << endl << endl << "The following infinite loop has occured " << numRuntime[i] << " time(s).\n"; - if(storedRuntime[i] != "Blank") outputFile << storedRuntime[i] << endl; - if(storedProc[i] != "Blank") outputFile << storedProc[i] << endl; - if(storedSource[i] != "Blank") outputFile << storedSource[i] << endl; - if(storedUsr[i] != "Blank") outputFile << storedUsr[i] << endl; - if(storedSrc[i] != "Blank") outputFile << storedSrc[i] << endl; - } - } - outputFile << endl << endl; //For spacing - } - - - //Do runtimes next - outputFile << "** Runtimes **"; - for(int i=0; i <= maxStorage; i++) - { - if(storedRuntime[i].find("Infinite loop suspected") != std::string::npos || storedRuntime[i].find("Maximum recursion level reached") != std::string::npos) continue; - - if(numRuntime[i] != 0) outputFile << endl << endl << "The following runtime has occured " << numRuntime[i] << " time(s).\n"; - if(storedRuntime[i] != "Blank") outputFile << storedRuntime[i] << endl; - if(storedProc[i] != "Blank") outputFile << storedProc[i] << endl; - if(storedSource[i] != "Blank") outputFile << storedSource[i] << endl; - if(storedUsr[i] != "Blank") outputFile << storedUsr[i] << endl; - if(storedSrc[i] != "Blank") outputFile << storedSrc[i] << endl; - } - outputFile.close(); - } - else - { - return false; - } - return true; -} - -void sortRuntimes() -{ - string tempRuntime[maxStorage+1]; - string tempProc[maxStorage+1]; - string tempSource[maxStorage+1]; - string tempUsr[maxStorage+1]; - string tempSrc[maxStorage+1]; - unsigned int tempNumRuntime[maxStorage+1]; - unsigned int highestCount = 0; //Used for descending order -// int keepLooping = 0; - - //Move all of our data into temporary arrays. Also clear the stored data (not necessary but.. just incase) - for(int i=0; i <= maxStorage; i++) - { - //Get the largest occurance of a single runtime - if(highestCount < numRuntime[i]) - { - highestCount = numRuntime[i]; - } - - tempRuntime[i] = storedRuntime[i]; storedRuntime[i] = "Blank"; - tempProc[i] = storedProc[i]; storedProc[i] = "Blank"; - tempSource[i] = storedSource[i]; storedSource[i] = "Blank"; - tempUsr[i] = storedUsr[i]; storedUsr[i] = "Blank"; - tempSrc[i] = storedSrc[i]; storedSrc[i] = "Blank"; - tempNumRuntime[i] = numRuntime[i]; numRuntime[i] = 0; - } - - while(highestCount > 0) - { - for(int i=0; i <= maxStorage; i++) //For every runtime - { - if(tempNumRuntime[i] == highestCount) //If the number of occurances of that runtime is equal to our current highest - { - for(int j=0; j <= maxStorage; j++) //Find the next available slot and store the info - { - if(storedRuntime[j] == "Blank") //Found an empty spot - { - storedRuntime[j] = tempRuntime[i]; - storedProc[j] = tempProc[i]; - storedSource[j] = tempSource[i]; - storedUsr[j] = tempUsr[i]; - storedSrc[j] = tempSrc[i]; - numRuntime[j] = tempNumRuntime[i]; - break; - } - } - } - } - highestCount--; //Lower our 'highest' by one and continue - } -} - - -int main() { - char exit; //Used to stop the program from immediatly exiting - - //Start everything fresh. "Blank" should never occur in the runtime logs on its own. - for(int i=0; i <= maxStorage; i++) - { - storedRuntime[i] = "Blank"; - storedProc[i] = "Blank"; - storedSource[i] = "Blank"; - storedUsr[i] = "Blank"; - storedSrc[i] = "Blank"; - numRuntime[i] = 0; - - } - - if(readFromFile()) - { - cout << "Input read successfully!\n"; - } - else - { - cout << "Input failed to open, shutting down.\n"; - cout << "\nEnter any letter to quit.\n"; - cin >> exit; - return 1; - } - - sortRuntimes(); - - if(writeToFile()) - { - cout << "Output was successful!\n"; - cout << "\nEnter any letter to quit.\n"; - cin >> exit; - return 0; - } - else - { - cout << "The output file could not be opened, shutting down.\n"; - cout << "\nEnter any letter to quit.\n"; - cin >> exit; - return 0; - } - - return 0; -} +/* Runtime Condenser by Nodrak + * This will sum up identical runtimes into one, giving a total of how many times it occured. The first occurance + * of the runtime will log the proc, source, usr and src, the rest will just add to the total. Infinite loops will + * also be caught and displayed (if any) above the list of runtimes. + * + * How to use: + * 1) Copy and paste your list of runtimes from Dream Daemon into input.exe + * 2) Run RuntimeCondenser.exe + * 3) Open output.txt for a condensed report of the runtimes + */ + +#include +#include +#include +using namespace std; + +//Make all of these global. It's bad yes, but it's a small program so it really doesn't affect anything. + //Because hardcoded numbers are bad :( + const unsigned short maxStorage = 99; //100 - 1 + + //What we use to read input + string currentLine = "Blank"; + string nextLine = "Blank"; + + //Stores lines we want to keep to print out + string storedRuntime[maxStorage+1]; + string storedProc[maxStorage+1]; + string storedSource[maxStorage+1]; + string storedUsr[maxStorage+1]; + string storedSrc[maxStorage+1]; + + //Stat tracking stuff for output + unsigned int totalRuntimes = 0; + unsigned int totalUniqueRuntimes = 0; + unsigned int totalInfiniteLoops = 0; + unsigned int totalUniqueInfiniteLoops = 0; + + //Misc + unsigned int numRuntime[maxStorage+1]; //Number of times a specific runtime has occured + bool checkNextLines = false; //Used in case byond has condensed a large number of similar runtimes + int storedIterator = 0; //Used to remember where we stored the runtime + +bool readFromFile() +{ + //Open file to read + ifstream inputFile("input.txt"); + + if(inputFile.is_open()) + { + while(!inputFile.eof()) //Until end of file + { + //If we've run out of storage + if(storedRuntime[maxStorage] != "Blank") break; + + //Update our lines + currentLine = nextLine; + getline(inputFile, nextLine); + + //After finding a new runtime, check to see if there are extra values to store + if(checkNextLines) + { + //Skip ahead + currentLine = nextLine; + getline(inputFile, nextLine); + + //If we find this, we have new stuff to store + if(nextLine.find("usr:") != std::string::npos) + { + //Store more info + storedSource[storedIterator] = currentLine; + storedUsr[storedIterator] = nextLine; + + //Skip ahead again + currentLine = nextLine; + getline(inputFile, nextLine); + + //Store the last of the info + storedSrc[storedIterator] = nextLine; + } + checkNextLines = false; + } + + //Found an infinite loop! + if(currentLine.find("Infinite loop suspected") != std::string::npos || currentLine.find("Maximum recursion level reached") != std::string::npos) + { + totalInfiniteLoops++; + + for(int i=0; i <= maxStorage; i++) + { + //We've already encountered this + if(currentLine == storedRuntime[i]) + { + numRuntime[i]++; + break; + } + + //We've never encoutnered this + if(storedRuntime[i] == "Blank") + { + storedRuntime[i] = currentLine; + currentLine = nextLine; + getline(inputFile, nextLine); //Skip the "if this is not an infinite loop" line + storedProc[i] = nextLine; + numRuntime[i] = 1; + checkNextLines = true; + storedIterator = i; + totalUniqueInfiniteLoops++; + break; + } + } + } + //Found a runtime! + else if(currentLine.find("runtime error:") != std::string::npos) + { + totalRuntimes++; + for(int i=0; i <= maxStorage; i++) + { + //We've already encountered this + if(currentLine == storedRuntime[i]) + { + numRuntime[i]++; + break; + } + + //We've never encoutnered this + if(storedRuntime[i] == "Blank") + { + storedRuntime[i] = currentLine; + storedProc[i] = nextLine; + numRuntime[i] = 1; + checkNextLines = true; + storedIterator = i; + totalUniqueRuntimes++; + break; + } + } + } + } + } + else + { + return false; + } + return true; +} + +bool writeToFile() +{ + //Open and clear the file + ofstream outputFile("Output.txt", ios::trunc); + + if(outputFile.is_open()) + { + outputFile << "Note: The proc name, source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped.\n\n"; + if(totalUniqueInfiniteLoops > 0) + { + outputFile << "Total unique infinite loops: " << totalUniqueInfiniteLoops << endl; + } + if(totalInfiniteLoops > 0) + { + outputFile << "Total infinite loops: " << totalInfiniteLoops << endl; + } + outputFile << "Total unique runtimes: " << totalUniqueRuntimes << endl; + outputFile << "Total runtimes: " << totalRuntimes << endl << endl; + + //Display a warning if we've hit the maximum space we've allocated for storage + if(totalUniqueRuntimes + totalUniqueInfiniteLoops >= maxStorage) + { + outputFile << "Warning: The maximum number of unique runtimes has been hit. If there were more, they have been cropped out.\n\n"; + } + + + //If we have infinite loops, display them first. + if(totalInfiniteLoops > 0) + { + outputFile << "** Infinite loops **"; + for(int i=0; i <= maxStorage; i++) + { + if(storedRuntime[i].find("Infinite loop suspected") != std::string::npos || storedRuntime[i].find("Maximum recursion level reached") != std::string::npos) + { + if(numRuntime[i] != 0) outputFile << endl << endl << "The following infinite loop has occured " << numRuntime[i] << " time(s).\n"; + if(storedRuntime[i] != "Blank") outputFile << storedRuntime[i] << endl; + if(storedProc[i] != "Blank") outputFile << storedProc[i] << endl; + if(storedSource[i] != "Blank") outputFile << storedSource[i] << endl; + if(storedUsr[i] != "Blank") outputFile << storedUsr[i] << endl; + if(storedSrc[i] != "Blank") outputFile << storedSrc[i] << endl; + } + } + outputFile << endl << endl; //For spacing + } + + + //Do runtimes next + outputFile << "** Runtimes **"; + for(int i=0; i <= maxStorage; i++) + { + if(storedRuntime[i].find("Infinite loop suspected") != std::string::npos || storedRuntime[i].find("Maximum recursion level reached") != std::string::npos) continue; + + if(numRuntime[i] != 0) outputFile << endl << endl << "The following runtime has occured " << numRuntime[i] << " time(s).\n"; + if(storedRuntime[i] != "Blank") outputFile << storedRuntime[i] << endl; + if(storedProc[i] != "Blank") outputFile << storedProc[i] << endl; + if(storedSource[i] != "Blank") outputFile << storedSource[i] << endl; + if(storedUsr[i] != "Blank") outputFile << storedUsr[i] << endl; + if(storedSrc[i] != "Blank") outputFile << storedSrc[i] << endl; + } + outputFile.close(); + } + else + { + return false; + } + return true; +} + +void sortRuntimes() +{ + string tempRuntime[maxStorage+1]; + string tempProc[maxStorage+1]; + string tempSource[maxStorage+1]; + string tempUsr[maxStorage+1]; + string tempSrc[maxStorage+1]; + unsigned int tempNumRuntime[maxStorage+1]; + unsigned int highestCount = 0; //Used for descending order +// int keepLooping = 0; + + //Move all of our data into temporary arrays. Also clear the stored data (not necessary but.. just incase) + for(int i=0; i <= maxStorage; i++) + { + //Get the largest occurance of a single runtime + if(highestCount < numRuntime[i]) + { + highestCount = numRuntime[i]; + } + + tempRuntime[i] = storedRuntime[i]; storedRuntime[i] = "Blank"; + tempProc[i] = storedProc[i]; storedProc[i] = "Blank"; + tempSource[i] = storedSource[i]; storedSource[i] = "Blank"; + tempUsr[i] = storedUsr[i]; storedUsr[i] = "Blank"; + tempSrc[i] = storedSrc[i]; storedSrc[i] = "Blank"; + tempNumRuntime[i] = numRuntime[i]; numRuntime[i] = 0; + } + + while(highestCount > 0) + { + for(int i=0; i <= maxStorage; i++) //For every runtime + { + if(tempNumRuntime[i] == highestCount) //If the number of occurances of that runtime is equal to our current highest + { + for(int j=0; j <= maxStorage; j++) //Find the next available slot and store the info + { + if(storedRuntime[j] == "Blank") //Found an empty spot + { + storedRuntime[j] = tempRuntime[i]; + storedProc[j] = tempProc[i]; + storedSource[j] = tempSource[i]; + storedUsr[j] = tempUsr[i]; + storedSrc[j] = tempSrc[i]; + numRuntime[j] = tempNumRuntime[i]; + break; + } + } + } + } + highestCount--; //Lower our 'highest' by one and continue + } +} + + +int main() { + char exit; //Used to stop the program from immediatly exiting + + //Start everything fresh. "Blank" should never occur in the runtime logs on its own. + for(int i=0; i <= maxStorage; i++) + { + storedRuntime[i] = "Blank"; + storedProc[i] = "Blank"; + storedSource[i] = "Blank"; + storedUsr[i] = "Blank"; + storedSrc[i] = "Blank"; + numRuntime[i] = 0; + + } + + if(readFromFile()) + { + cout << "Input read successfully!\n"; + } + else + { + cout << "Input failed to open, shutting down.\n"; + cout << "\nEnter any letter to quit.\n"; + cin >> exit; + return 1; + } + + sortRuntimes(); + + if(writeToFile()) + { + cout << "Output was successful!\n"; + cout << "\nEnter any letter to quit.\n"; + cin >> exit; + return 0; + } + else + { + cout << "The output file could not be opened, shutting down.\n"; + cout << "\nEnter any letter to quit.\n"; + cin >> exit; + return 0; + } + + return 0; +} diff --git a/tools/Runtime Condenser/Output.txt b/tools/Runtime Condenser/Output.txt index 1bb4a90c78f..13749887eba 100644 --- a/tools/Runtime Condenser/Output.txt +++ b/tools/Runtime Condenser/Output.txt @@ -1,190 +1,190 @@ -Note: The proc name, source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped. - -Total unique runtimes: 25 -Total runtimes: 767 - -** Runtimes ** - -The following runtime has occured 269 time(s). -runtime error: Cannot read null.viruses -proc name: cure (/datum/disease/proc/cure) - source file: disease.dm,156 - usr: null - src: Space Retrovirus (/datum/disease/dnaspread) - - -The following runtime has occured 199 time(s). -runtime error: Cannot read null.has_gravity -proc name: throw at (/atom/movable/proc/throw_at) - source file: throwing.dm,194 - usr: Reese Marcotte (/mob/living/carbon/human) - src: Reese Marcotte (/mob/living/carbon/human) - - -The following runtime has occured 165 time(s). -runtime error: Cannot read null.slot_flags -proc name: db click (/mob/living/carbon/human/db_click) - source file: inventory.dm,1083 - usr: Puke Chunks (/mob/living/carbon/human) - src: Puke Chunks (/mob/living/carbon/human) - - -The following runtime has occured 25 time(s). -runtime error: Cannot read null.flags -proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) - - -The following runtime has occured 24 time(s). -runtime error: Cannot read null.len -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,260 - usr: Wintermute (/mob/living/silicon/ai) - src: null - - -The following runtime has occured 20 time(s). -runtime error: Cannot read null.total_volume -proc name: attackby (/obj/machinery/reagentgrinder/attackby) - source file: Chemistry-Machinery.dm,751 - usr: Reese Marcotte (/mob/living/carbon/human) - src: All-In-One Grinder (/obj/machinery/reagentgrinder) - - -The following runtime has occured 16 time(s). -runtime error: Cannot read null.broadcasting -proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) - source file: robot.dm,857 - usr: Engineering Cyborg -432 (/mob/living/silicon/robot) - src: Engineering Cyborg -432 (/mob/living/silicon/robot) - - -The following runtime has occured 7 time(s). -runtime error: unexpected stat -proc name: Stat (/mob/living/silicon/robot/Stat) - source file: robot.dm,227 - usr: Michigan Slim (/mob/living/carbon/human) - src: Engineering Cyborg -133 (/mob/living/silicon/robot) - - -The following runtime has occured 7 time(s). -runtime error: Cannot read null.current -proc name: check completion (/datum/objective/download/check_completion) - source file: objective.dm,411 - usr: null - src: /datum/objective/download (/datum/objective/download) - - -The following runtime has occured 6 time(s). -runtime error: Cannot create objects of type null. -proc name: Topic (/obj/machinery/computer/rdconsole/Topic) - source file: rdconsole.dm,381 - usr: Matthew Hoff (/mob/living/carbon/human) - src: Core R&D Console (/obj/machinery/computer/rdconsole/core) - - -The following runtime has occured 6 time(s). -runtime error: Cannot read null.fields -proc name: mergeRecordLists (/proc/mergeRecordLists) - source file: helpers.dm,263 - usr: Wintermute (/mob/living/silicon/ai) - src: null - - -The following runtime has occured 3 time(s). -runtime error: undefined variable /client/var/loc -proc name: get turf (/proc/get_turf) - source file: helper_procs.dm,38 - usr: the ghost (/mob/dead/observer) - src: null - - -The following runtime has occured 3 time(s). -runtime error: Cannot read null.nodes -proc name: merge powernets (/datum/powernet/proc/merge_powernets) - source file: power.dm,401 - usr: Darin Keppel (/mob/living/carbon/human) - src: /datum/powernet (/datum/powernet) - - -The following runtime has occured 3 time(s). -runtime error: Cannot read null.reagents -proc name: fire syringe (/obj/item/weapon/gun/syringe/proc/fire_syringe) - - -The following runtime has occured 2 time(s). -runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). - - - -The following runtime has occured 2 time(s). -runtime error: list index out of bounds -proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) - source file: cable.dm,520 - usr: Josue Sandford (/mob/living/carbon/human) - src: the power cable (/obj/structure/cable) - - -The following runtime has occured 2 time(s). -runtime error: Cannot read null.loc -proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) - source file: corgi.dm,304 - usr: null - src: Captain Ian (/mob/living/simple_animal/corgi/Ian) - - -The following runtime has occured 1 time(s). -runtime error: undefined proc or verb /obj/machinery/portable_atmospherics/canister/toxins/attack(). - - - -The following runtime has occured 1 time(s). -runtime error: undefined variable /datum/preferences/var/fields -proc name: Topic (/obj/machinery/computer/cloning/Topic) - source file: cloning.dm,370 - usr: Logan Graves (/mob/living/carbon/human) - src: Cloning console (/obj/machinery/computer/cloning) - - -The following runtime has occured 1 time(s). -runtime error: undefined variable /turf/simulated/floor/plating/var/mineral -proc name: attackby (/turf/simulated/wall/attackby) - source file: turf.dm,600 - usr: Monte Smail (/mob/living/carbon/human) - src: the plating (176,172,5) (/turf/simulated/floor/plating) - - -The following runtime has occured 1 time(s). -runtime error: Cannot read null.blood_DNA -proc name: update inv w uniform (/mob/living/carbon/human/update_inv_w_uniform) - source file: update_icons.dm,372 - usr: null - src: Chip Harshman (/mob/living/carbon/human) - - -The following runtime has occured 1 time(s). -runtime error: Cannot execute null.dropped(). -proc name: drop l hand (/mob/proc/drop_l_hand) - source file: inventory.dm,104 - usr: Jeb Stone (/mob/living/carbon/human) - src: Jeb Stone (/mob/living/carbon/human) - - -The following runtime has occured 1 time(s). -runtime error: Cannot read null.w_class -proc name: attackby (/obj/item/weapon/storage/attackby) - source file: storage.dm,187 - usr: Samuel York (/mob/living/carbon/human) - src: the backpack (/obj/item/weapon/storage/backpack) - - -The following runtime has occured 1 time(s). -runtime error: Cannot read null.amount -proc name: attackby (/obj/machinery/constructable_frame/machine_frame/attackby) - source file: constructable_frame.dm,27 - usr: Quinton Bould (/mob/living/carbon/human) - src: the machine frame (/obj/machinery/constructable_frame/machine_frame) - - -The following runtime has occured 1 time(s). -runtime error: Cannot modify null.status. -proc name: death (/mob/living/silicon/robot/death) +Note: The proc name, source file, src and usr are all from the FIRST of the identical runtimes. Everything else is cropped. + +Total unique runtimes: 25 +Total runtimes: 767 + +** Runtimes ** + +The following runtime has occured 269 time(s). +runtime error: Cannot read null.viruses +proc name: cure (/datum/disease/proc/cure) + source file: disease.dm,156 + usr: null + src: Space Retrovirus (/datum/disease/dnaspread) + + +The following runtime has occured 199 time(s). +runtime error: Cannot read null.has_gravity +proc name: throw at (/atom/movable/proc/throw_at) + source file: throwing.dm,194 + usr: Reese Marcotte (/mob/living/carbon/human) + src: Reese Marcotte (/mob/living/carbon/human) + + +The following runtime has occured 165 time(s). +runtime error: Cannot read null.slot_flags +proc name: db click (/mob/living/carbon/human/db_click) + source file: inventory.dm,1083 + usr: Puke Chunks (/mob/living/carbon/human) + src: Puke Chunks (/mob/living/carbon/human) + + +The following runtime has occured 25 time(s). +runtime error: Cannot read null.flags +proc name: relaymove (/obj/effect/dummy/spell_jaunt/relaymove) + + +The following runtime has occured 24 time(s). +runtime error: Cannot read null.len +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,260 + usr: Wintermute (/mob/living/silicon/ai) + src: null + + +The following runtime has occured 20 time(s). +runtime error: Cannot read null.total_volume +proc name: attackby (/obj/machinery/reagentgrinder/attackby) + source file: Chemistry-Machinery.dm,751 + usr: Reese Marcotte (/mob/living/carbon/human) + src: All-In-One Grinder (/obj/machinery/reagentgrinder) + + +The following runtime has occured 16 time(s). +runtime error: Cannot read null.broadcasting +proc name: radio menu (/mob/living/silicon/robot/proc/radio_menu) + source file: robot.dm,857 + usr: Engineering Cyborg -432 (/mob/living/silicon/robot) + src: Engineering Cyborg -432 (/mob/living/silicon/robot) + + +The following runtime has occured 7 time(s). +runtime error: unexpected stat +proc name: Stat (/mob/living/silicon/robot/Stat) + source file: robot.dm,227 + usr: Michigan Slim (/mob/living/carbon/human) + src: Engineering Cyborg -133 (/mob/living/silicon/robot) + + +The following runtime has occured 7 time(s). +runtime error: Cannot read null.current +proc name: check completion (/datum/objective/download/check_completion) + source file: objective.dm,411 + usr: null + src: /datum/objective/download (/datum/objective/download) + + +The following runtime has occured 6 time(s). +runtime error: Cannot create objects of type null. +proc name: Topic (/obj/machinery/computer/rdconsole/Topic) + source file: rdconsole.dm,381 + usr: Matthew Hoff (/mob/living/carbon/human) + src: Core R&D Console (/obj/machinery/computer/rdconsole/core) + + +The following runtime has occured 6 time(s). +runtime error: Cannot read null.fields +proc name: mergeRecordLists (/proc/mergeRecordLists) + source file: helpers.dm,263 + usr: Wintermute (/mob/living/silicon/ai) + src: null + + +The following runtime has occured 3 time(s). +runtime error: undefined variable /client/var/loc +proc name: get turf (/proc/get_turf) + source file: helper_procs.dm,38 + usr: the ghost (/mob/dead/observer) + src: null + + +The following runtime has occured 3 time(s). +runtime error: Cannot read null.nodes +proc name: merge powernets (/datum/powernet/proc/merge_powernets) + source file: power.dm,401 + usr: Darin Keppel (/mob/living/carbon/human) + src: /datum/powernet (/datum/powernet) + + +The following runtime has occured 3 time(s). +runtime error: Cannot read null.reagents +proc name: fire syringe (/obj/item/weapon/gun/syringe/proc/fire_syringe) + + +The following runtime has occured 2 time(s). +runtime error: undefined proc or verb /obj/machinery/space_heater/attack(). + + + +The following runtime has occured 2 time(s). +runtime error: list index out of bounds +proc name: mergeConnectedNetworksOnTurf (/obj/structure/cable/proc/mergeConnectedNetworksOnTurf) + source file: cable.dm,520 + usr: Josue Sandford (/mob/living/carbon/human) + src: the power cable (/obj/structure/cable) + + +The following runtime has occured 2 time(s). +runtime error: Cannot read null.loc +proc name: Life (/mob/living/simple_animal/corgi/Ian/Life) + source file: corgi.dm,304 + usr: null + src: Captain Ian (/mob/living/simple_animal/corgi/Ian) + + +The following runtime has occured 1 time(s). +runtime error: undefined proc or verb /obj/machinery/portable_atmospherics/canister/toxins/attack(). + + + +The following runtime has occured 1 time(s). +runtime error: undefined variable /datum/preferences/var/fields +proc name: Topic (/obj/machinery/computer/cloning/Topic) + source file: cloning.dm,370 + usr: Logan Graves (/mob/living/carbon/human) + src: Cloning console (/obj/machinery/computer/cloning) + + +The following runtime has occured 1 time(s). +runtime error: undefined variable /turf/simulated/floor/plating/var/mineral +proc name: attackby (/turf/simulated/wall/attackby) + source file: turf.dm,600 + usr: Monte Smail (/mob/living/carbon/human) + src: the plating (176,172,5) (/turf/simulated/floor/plating) + + +The following runtime has occured 1 time(s). +runtime error: Cannot read null.blood_DNA +proc name: update inv w uniform (/mob/living/carbon/human/update_inv_w_uniform) + source file: update_icons.dm,372 + usr: null + src: Chip Harshman (/mob/living/carbon/human) + + +The following runtime has occured 1 time(s). +runtime error: Cannot execute null.dropped(). +proc name: drop l hand (/mob/proc/drop_l_hand) + source file: inventory.dm,104 + usr: Jeb Stone (/mob/living/carbon/human) + src: Jeb Stone (/mob/living/carbon/human) + + +The following runtime has occured 1 time(s). +runtime error: Cannot read null.w_class +proc name: attackby (/obj/item/weapon/storage/attackby) + source file: storage.dm,187 + usr: Samuel York (/mob/living/carbon/human) + src: the backpack (/obj/item/weapon/storage/backpack) + + +The following runtime has occured 1 time(s). +runtime error: Cannot read null.amount +proc name: attackby (/obj/machinery/constructable_frame/machine_frame/attackby) + source file: constructable_frame.dm,27 + usr: Quinton Bould (/mob/living/carbon/human) + src: the machine frame (/obj/machinery/constructable_frame/machine_frame) + + +The following runtime has occured 1 time(s). +runtime error: Cannot modify null.status. +proc name: death (/mob/living/silicon/robot/death) diff --git a/tools/expand_filedir_paths.py b/tools/expand_filedir_paths.py index d55786a199c..99851aee5df 100644 --- a/tools/expand_filedir_paths.py +++ b/tools/expand_filedir_paths.py @@ -1,90 +1,90 @@ -#!/usr/bin/env python - -import re, os, sys, fnmatch - - -# Regex pattern to extract the directory path in a #define FILE_DIR -filedir_pattern = re.compile(r'^#define\s*FILE_DIR\s*"(.*?)"') - -# Regex pattern to extract any single quoted piece of text. This can also -# match single quoted strings inside of double quotes, which is part of a -# regular text string and should not be replaced. The replacement function -# however will any match that doesn't appear to be a filename so these -# extra matches should not be a problem. -rename_pattern = re.compile(r"'(.+?)'") - -# Only filenames matching this pattern will have their resources renamed -source_pattern = re.compile(r"^.*?\.(dm|dmm)$") - -# Open the .dme file and return a list of all FILE_DIR paths in it -def read_filedirs(filename): - result = [] - with open(filename, "rt") as dme_file: - # Read each line from the file and check for regex pattern match - for row in dme_file: - match = filedir_pattern.match(row) - if match: - result.append(match.group(1)) - return result - -# Search through a list of directories, and build a dictionary which -# maps every file to its full pathname (relative to the .dme file) -# If the same filename appears in more than one directory, the earlier -# directory in the list takes preference. -def index_files(file_dirs): - result = {} - - # Reverse the directory list so the earlier directories take precedence - # by replacing the previously indexed file of the same name - for directory in reversed(file_dirs): - for name in os.listdir(directory): - # Replace backslash path separators on Windows with forward slash - # Force "name" to lowercase when used as a key since BYOND resource - # names are case insensitive, even on Linux. - if name.find(".") == -1: - continue - result[name.lower()] = directory.replace('\\', '/') + '/' + name - - return result - -# Recursively search for every .dm/.dmm file in the .dme file directory. For -# each file, search it for any resource names in single quotes, and replace -# them with the full path previously found by index_files() -def rewrite_sources(resources): - # Create a closure for the regex replacement function to capture the - # resources dictionary which can't be passed directly to this function - def replace_func(name): - key = name.group(1).lower() - if key in resources: - replacement = resources[key] - else: - replacement = name.group(1) - return "'" + replacement + "'" - - # Search recursively for all .dm and .dmm files - for (dirpath, dirs, files) in os.walk("."): - for name in files: - if source_pattern.match(name): - path = dirpath + '/' + name - source_file = open(path, "rt") - output_file = open(path + ".tmp", "wt") - - # Read file one line at a time and perform replacement of all - # single quoted resource names with the fullpath to that resource - # file. Write the updated text back out to a temporary file. - for row in source_file: - row = rename_pattern.sub(replace_func, row) - output_file.write(row) - - output_file.close() - source_file.close() - - # Delete original source file and replace with the temporary - # output. On Windows, an atomic rename() operation is not - # possible like it is under POSIX. - os.remove(path) - os.rename(path + ".tmp", path) - -dirs = read_filedirs("vgstation13.dme"); -resources = index_files(dirs) -rewrite_sources(resources) +#!/usr/bin/env python + +import re, os, sys, fnmatch + + +# Regex pattern to extract the directory path in a #define FILE_DIR +filedir_pattern = re.compile(r'^#define\s*FILE_DIR\s*"(.*?)"') + +# Regex pattern to extract any single quoted piece of text. This can also +# match single quoted strings inside of double quotes, which is part of a +# regular text string and should not be replaced. The replacement function +# however will any match that doesn't appear to be a filename so these +# extra matches should not be a problem. +rename_pattern = re.compile(r"'(.+?)'") + +# Only filenames matching this pattern will have their resources renamed +source_pattern = re.compile(r"^.*?\.(dm|dmm)$") + +# Open the .dme file and return a list of all FILE_DIR paths in it +def read_filedirs(filename): + result = [] + with open(filename, "rt") as dme_file: + # Read each line from the file and check for regex pattern match + for row in dme_file: + match = filedir_pattern.match(row) + if match: + result.append(match.group(1)) + return result + +# Search through a list of directories, and build a dictionary which +# maps every file to its full pathname (relative to the .dme file) +# If the same filename appears in more than one directory, the earlier +# directory in the list takes preference. +def index_files(file_dirs): + result = {} + + # Reverse the directory list so the earlier directories take precedence + # by replacing the previously indexed file of the same name + for directory in reversed(file_dirs): + for name in os.listdir(directory): + # Replace backslash path separators on Windows with forward slash + # Force "name" to lowercase when used as a key since BYOND resource + # names are case insensitive, even on Linux. + if name.find(".") == -1: + continue + result[name.lower()] = directory.replace('\\', '/') + '/' + name + + return result + +# Recursively search for every .dm/.dmm file in the .dme file directory. For +# each file, search it for any resource names in single quotes, and replace +# them with the full path previously found by index_files() +def rewrite_sources(resources): + # Create a closure for the regex replacement function to capture the + # resources dictionary which can't be passed directly to this function + def replace_func(name): + key = name.group(1).lower() + if key in resources: + replacement = resources[key] + else: + replacement = name.group(1) + return "'" + replacement + "'" + + # Search recursively for all .dm and .dmm files + for (dirpath, dirs, files) in os.walk("."): + for name in files: + if source_pattern.match(name): + path = dirpath + '/' + name + source_file = open(path, "rt") + output_file = open(path + ".tmp", "wt") + + # Read file one line at a time and perform replacement of all + # single quoted resource names with the fullpath to that resource + # file. Write the updated text back out to a temporary file. + for row in source_file: + row = rename_pattern.sub(replace_func, row) + output_file.write(row) + + output_file.close() + source_file.close() + + # Delete original source file and replace with the temporary + # output. On Windows, an atomic rename() operation is not + # possible like it is under POSIX. + os.remove(path) + os.rename(path + ".tmp", path) + +dirs = read_filedirs("vgstation13.dme"); +resources = index_files(dirs) +rewrite_sources(resources)