ProjectEQ / projecteqquests

Quest scripts for ProjectEQ
http://projecteq.net
44 stars 78 forks source link

WoS Huge Memory Usage / Zone Crash #1401

Closed TheVons closed 3 months ago

TheVons commented 3 months ago

https://github.com/ProjectEQ/projecteqquests/blob/4851d963f8a83b3790849714d95ab7b868dbb1ca/wallofslaughter/player.lua#L7-L12

If a character has say, 20 corpses on the server, and the character has a lot of items, there are countless queries against those corpses looking for the items in the above snippet.

This may be an actual bug with HasItem where it is looking at corpses for some reason but right now when a player enters the zone it can lead to a zone crash.

TheVons commented 3 months ago

Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000256s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [315] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000357s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000227s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000267s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [316] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000343s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000231s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000275s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [317] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000321s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000225s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000270s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [318] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000299s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000241s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000251s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [319] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000373s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000244s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000281s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [320] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000409s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000210s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000197s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [321] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000291s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000202s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000203s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [322] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000306s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000188s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000199s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [323] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000286s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000181s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000192s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [324] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000291s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000189s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000194s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [325] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000292s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000176s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000175s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [326] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000274s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000171s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000180s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [327] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000278s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000200s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000197s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [328] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000310s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000206s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000204s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [329] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000408s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000207s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000226s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [330] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000362s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000257s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000220s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [331] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000330s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000274s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000246s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [332] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000350s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000266s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000251s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [333] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000392s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000211s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000185s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [334] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000387s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000236s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000243s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [335] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000392s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000340s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000327s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [336] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000369s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000230s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000256s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [337] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000332s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000197s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000184s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [338] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000290s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000187s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000177s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [339] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000331s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000188s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000183s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [340] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000383s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000188s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000211s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [341] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000270s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000184s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000177s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [342] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000247s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000161s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000165s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [343] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000269s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000189s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000210s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [344] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000315s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000211s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000181s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [345] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000270s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000202s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000184s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [346] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000272s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000195s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000297s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [347] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000333s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000226s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000266s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [348] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000307s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000206s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000217s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [349] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000295s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000195s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000208s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [350] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000273s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000170s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000214s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [351] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000377s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000296s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000266s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [352] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000380s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000248s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000242s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [353] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000331s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000232s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000239s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [354] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000337s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000248s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000246s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [355] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000315s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000223s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000205s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [356] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000264s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000196s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000208s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [357] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000282s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000176s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000169s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [358] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000247s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000168s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000192s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [359] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000287s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000175s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000202s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | CheckIsOwnerOnline Checking if owner is online for corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | GetCharacterCorpseItemAt corpse_id [487] slot_id [360] -- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT id, charid, charname, zone_id, instance_id, x, y, z, heading, UNIX_TIMESTAMP(time_of_death), guild_consent_id, is_rezzed, is_buried, was_at_graveyard, is_locked, exp, size, level, race, gender, `class`, deity, texture, helm_texture, copper, silver, gold, platinum, hair_color, beard_color, eye_color_1, eye_color_2, hair_style, face, beard, drakkin_heritage, drakkin_tattoo, drakkin_details, wc_1, wc_2, wc_3, wc_4, wc_5, wc_6, wc_7, wc_8, wc_9, rez_time, gm_exp, killed_by, rezzable FROM character_corpses WHERE id = 487 LIMIT 1 -- (1 row returned) (0.000233s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT corpse_id, equip_slot, item_id, charges, aug_1, aug_2, aug_3, aug_4, aug_5, aug_6, attuned, custom_data, ornamenticon, ornamentidfile, ornament_hero_model FROM character_corpse_items WHERE `corpse_id` = 487 -- (0 rows returned) (0.000200s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Query | QueryDatabase SELECT (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(time_of_death)) FROM `character_corpses` WHERE `id` = 487 AND `time_of_death` != 0 -- (1 row returned) (0.000220s)-- [wallofslaughter] (Wall of Slaughter) inst_id [0] Zone | Corpses | SetRezTimer Checking for rezzable corpse [Oops] -- [wallofslaughter] (Wall of Slaughter) inst_id [0]

TheVons commented 3 months ago

This was fixed in quests