logo logo

 Back to main page

The NWNX Community Forum

 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
Getting started SQL NWNX4

 
Post new topic   Reply to topic    nwnx.org Forum Index -> Database related
View previous topic :: View next topic  
Author Message
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Mon Oct 29, 2007 14:45    Post subject: Getting started SQL NWNX4 Reply with quote

I can run the nwnx4 demo's, am using MySQL 5.0.27 and latest nwnx4 1.08. I am new to hosting but have worked with nwnx2 in the past. Where i started; our host server went down, I had a copy of the mod, I recently recieved our 2da files and a single .sql file. I have the files in the right places now, the mod will load but the database is not functioning. There is not much in the db a few quests, and such, but its not there.
I have loaded up the .sql file in a gui , in the query window and ran it as a batch file, then saved it. That created the database. I can see all the tables, and populated data. The mysql.ini file has correct info class = sql, and the username n such is correct.
other than that u can assume that all my other setting would be defualt, as i know not where to look, all my error logs are fine, I understand any 1 willing to help will require more info from me, I am kinda lost atm, I am all yours...
Back to top
View user's profile Send private message Visit poster's website
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Sat Nov 03, 2007 19:29    Post subject: Reply with quote

Hail all!
I have removed my software, and reinstalled everything... nwn2 updated to latest obsidian patch, newest nwnx4 1.08, and MySQL 5.0.27. I can get all the demos working again, updated our mod with the nwnx4's erfs, and ran the database in the sql query window to create the database. Nwnx4 loads the mod up no problem but there are no saves or calls to the database...

Here are all the log files, anything u see wrong lemme know.




Code:
 NWN Extender 4 V.0.0.8
(c) 2007 by Ingmar Stieger (Papillon)
visit us at http://www.nwnx.org

* Loading plugins...
* Loading plugin xp_mysql.dll: Successfully registered as class: SQL
* Loading plugin xp_sqlite.dll: Successfully registered as class: SQLoff
* Loading plugin xp_time.dll: Successfully registered as class: TIME
* Disabling general protection fault error dialog.
* NWNX4 activated.
 


Code:
 NWNX MySQL Plugin V.0.0.8
(c) 2007 by Ingmar Stieger (Papillon)
visit us at http://www.nwnx.org
(built using mysql-5.0.27 source)

* Log level set to 2 (everything)
* Connecting to server localhost
* Plugin initialized.
* Registering under function class SQL
 


Code:
 NWNX Timer Plugin V.0.0.2
(c) 2007 by Ingmar Stieger (Papillon)
visit us at http://www.nwnx.org

* Plugin initialized.
 


Thanks for any help!
Back to top
View user's profile Send private message Visit poster's website
Papillon
x-man


Joined: 28 Dec 2004
Posts: 1060
Location: Germany

PostPosted: Mon Nov 12, 2007 12:51    Post subject: Reply with quote

This might be a basic question, but did you actually code anything that uses the DB (no calls are beeing made, as you already observed) ? If so, please post an example script where you are calling the database.

The installation itself looks fine !
_________________
Papillon
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Wed Nov 14, 2007 21:04    Post subject: Reply with quote

This is our basic quest system...


Quote:
/*
* Questmaster 2000 (written well after the year 2000)

Modified for RoUM v2.0 by Brian Boyd
1/6/2007
*/

#include "roum_functions"
//#include "hashset_nwnx"
#include "NW_I0_GENERIC"


// do we want to debug? TRUE or FALSE
int DoDebug = FALSE;


void Debug(object oPC, string message);
int CanPCStartQuest(object oPC, int iQuestID);
int CanPCCompleteQuest(object oPC, int iQuestID);
void StartQuest(object PC, int iQuestID);
void CompleteQuest(object oPC, int iQuestID);
void SetPCQuestFlag(object oPC, string sQuestFlagName, int iQuestID);
int IsQuestFlagSet(object oPC, int iQuestID, string sQuestFlagName);
int IsQuestInProgress(object oPC, int iQuestID);
int IsQuestCompleted(object oPC, int iQuestID);
int GetQuestIDFromNPCTag(string sNPCTag);
int IsItemRequirementMetComplete(object oPC, int iQuestID);
int IsStartItemRequirementsMet(object oPC, int iQuestID);
int IsAlignmentRequirementMet(object oPC, int iQuestID);
int IsRacialRequirementMet(object oPC, int iQuestID);
int IsClassRequirementMet(object oPC, int iQuestID);
string GetNPCQuestDialog(object oPC, int iQuestID);
int getDialogSemaphore();
void UnlockDialogSemaphore(int iSempaphore);
void SetQuestFlagCompleteForParty(object oKiller, int questID, string questFlagName);
void LoadPCJournal(object oPC);
int GetFlagSlotNbr(object oPC, string sQuestFlagName, int iQuestID);
int IsQuestCreature(object oPC, object oKilledCreature);
void ShowQuestsInProgress(object oPC);
int GetQtyOfFlagsForQuest(int iQuestID);
int DoesQuestFlagNeedToBeSet(object oPC, int iQuestID, string sQuestFlagName);
string CleanupTag(string sTag);
string GetCreatureQuestIDs(object oPc, object oKilledCreature, string sTagPrefix);
void CompleteAllCreatureQuests(object oPC, object oKiller, object oKilledCreature, string sQuestList, string sTagPrefix);
int GetNextQuestForPC(object oPC, string npcTag);


void Debug(object oPC, string message)
{
if (DoDebug == FALSE) {return;}
string sPCName = GetName(oPC);
PrintString("[" + sPCName + "] " + message);
}

int GetQuestIDFromNPCTag(string sNPCTag) {

// assumes NPCSs are given tags that start with
//Q<QUEST_ID>_<WHATEVEVER>
// For example Q1_CHOREN_TAVERNMASTER
// so we look for the number between string position 1 and the first
// underbar find the first underbar

int iUnderbarLoc = FindSubString(sNPCTag, "_");

if (iUnderbarLoc < 0) {
//not found
return 0;
}

// now get the string between position 1 and underbar
string sQuestID = GetSubString(sNPCTag, 1, iUnderbarLoc - 1);

return StringToInt(sQuestID);

}

int CanPCStartQuest(object oPC, int iQuestID) {

string sQuestName = "";
string sClassRestriction = "F";
string sRaceRestriction = "F";
string sAlignmentRestriction = "F";
int iTotalLevelsRequired = 0;
string sRepeatable = "F";
int iMaxLevel = 0;
int iRewardXP = 0;
int iRewardGold = 0;
string sEnabled = "F";

//get the quest data
SQLExecDirect("SELECT quest_name, total_level_required, repeatable, max_level, reward_xp, reward_gold, quest_enabled_flag FROM quest_ref WHERE quest_id = " + IntToString(iQuestID) + ";");

if (!SQLFetch()) {
Debug(oPC, "quest record not found");
return FALSE;
} else {
//get the data out of the record
sQuestName = SQLGetData(1);
iTotalLevelsRequired = StringToInt(SQLGetData(2));
sRepeatable = SQLGetData(3);
iMaxLevel = StringToInt(SQLGetData(4));
iRewardXP = StringToInt(SQLGetData(5));
iRewardGold = StringToInt(SQLGetData(6));
sEnabled = SQLGetData(7);

Debug(oPC, "quest record found... [" + sQuestName + "]");

//make sure the quest is not disabled
if (sEnabled == "F") {
Debug(oPC, "The quest is disabled in the database");
return FALSE;
}

//get the Players name and characters name
string sPlayerName = SQLEncodeSpecialChars(GetPCPlayerName(oPC));
string sCharacterName = SQLEncodeSpecialChars(GetName(oPC));

//get the PC's quest data (if it's there)
string sSQL = "SELECT started_flag, completed_flag FROM quest_player_status WHERE quest_id = "
+ IntToString(iQuestID)
+ " AND player_name = '"
+ sPlayerName
+ "' AND character_name = '"
+ sCharacterName
+ "';";
//Debug(oPC, sSQL);
SQLExecDirect(sSQL);

if (!SQLFetch()) {
Debug(oPC, "character record not found. The quest is not started");
} else {
if (SQLGetData(1) == "T") {
//the quest is already started
Debug(oPC, "character record found. However the quest is already started");
return FALSE;
}
if (SQLGetData(2) == "T") {
//the quest has already been completed

//TODO : see if it's repeatable, if it is, skip sending
// back false here
Debug(oPC, "character record found. However the quest is already finished");
return FALSE;
}

} //if PC record found

//make sure max total level not exceeded
if (GetCharacterLevel(oPC) > iMaxLevel && iMaxLevel > 0) {
Debug(oPC, "Cannot start quest. Character Max Level Exceeded. Character Level : "
+ IntToString(GetCharacterLevel(oPC))
+ " Max Quest Level : "
+ IntToString(iMaxLevel));
return FALSE;
}

//TODO: check class restrictions, check for level in class for
// each restriction as well

if (IsClassRequirementMet(oPC, iQuestID) == FALSE) {
Debug(oPC, "Class Requirements not Met.");
return FALSE;
}


DMFI is installed and functioning, and we are generating 3 files in mydocs\neverwinternights 2\database. along side the 3 dmfi files.
Back to top
View user's profile Send private message Visit poster's website
Squatting Monk



Joined: 28 Jun 2007
Posts: 76

PostPosted: Thu Nov 15, 2007 3:19    Post subject: Reply with quote

Hmm... again, a basic question, but have you initialized the database in your module using the SQLInit() function? (I dunno if this still applies in NWNX4 as I use NWNX2.) Did you set MySQL to run as a Windows service in the background? It took me the longest time to realize this was why my database wasn't working; MySQL wasn't running. Embarassed
Back to top
View user's profile Send private message
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Sat Nov 17, 2007 21:00    Post subject: Reply with quote

Thanks it seems I need some basics :p Mysql is running as a service in background now, I poured thru most of the start up scripts but didn't see a SQLInit() function being used.

Finally generated an error log it was for a memory issue, tho anytime after that I haven't got an errorlog with server startups.

Quote:
Error occurred at 11/15/2007 07:29:36.
E:\Neverwinter Nights 2\nwn2server.exe, run by Bo Beaul.
E:\Neverwinter Nights 2\nwn2server.exe caused an Access Violation exception in module nwn2server.exe at 001b:005b7ea8.
Read from location 00000000 caused an access violation.

System Info:
2 processor(s), type 586.
1 % Memory Load.
2048 MBytes physical memory.
1412 MBytes available memory.
2048 MBytes total virtual memory.
1208 MBytes available virtual memory
3864 MBytes total page file.
3354 MBytes available page file

Application debug messages:
Version: 1.010 (1116) (Final) Oct 2 2007 - 14:57:58
Application Stage: Application Shutting Down
Command Line: -module roum_v04

Registers:
EAX=294a7dc0 CS=001b EIP=005b7ea8 EFLGS=00010246
EBX=3129a830 SS=0023 ESP=0012fd9c EBP=31085b58
ECX=00000000 DS=0023 ESI=ffffffff FS=003b
EDX=10011620 ES=0023 EDI=31085b5c GS=0000

Bytes at CS:EIP:
8b 11 50 8b 82 8c 00 00 00 ff d0 c3 cc cc cc cc cc cc cc cc cc cc cc cc 8b c1 8b 0d 80 9f 84 00
Back to top
View user's profile Send private message Visit poster's website
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Wed Nov 21, 2007 20:25    Post subject: Reply with quote

Just to make sure everyone is understanding me Smile we are the ruins of undermountain, established way back in nwn1. for the past year our host/scripter was maintaining the server, it is up to me now. I have the latest copy of the mod, and a few files needed to run the server.... this is a partial copy of the database file sent to us, i show this to you so u can understand where this project is sitting.....



250 lines of our database

Quote:
/*
SQLyog Community Edition- MySQL GUI v5.21
Host - 5.0.27-community-nt : Database - nwn2
*********************************************************************
Server version : 5.0.27-community-nt
*/


SET NAMES utf8;

SET SQL_MODE='';

create database if not exists `nwn2`;

USE `nwn2`;

SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO';

/*Table structure for table `pwdata` */

DROP TABLE IF EXISTS `pwdata`;

CREATE TABLE `pwdata` (
`player` varchar(256) NOT NULL default ' ',
`tag` varchar(256) NOT NULL default ' ',
`name` varchar(256) NOT NULL default ' ',
`val` varchar(256) default NULL,
`expire` smallint(5) unsigned default NULL,
`last` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`player`,`tag`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `pwdata` */

insert into `pwdata`(`player`,`tag`,`name`,`val`,`expire`,`last`) values ('\"~','roum_bookcase_1','NumItems','0',0,'2007-02-20 15:58:56'),('\"~','roum_bookcase_2','NumItems','0',0,'2007-02-20 15:58:56'),('\"~','roum_junkmerch_store','NumItems','0',0,'2007-05-04 20:03:35'),('\"~','roum_junkmerch_store','Persistent','1',0,'2007-03-18 09:26:57'),('\"~','roum_loot_bag_small_1','NumItems','0',0,'2007-02-20 15:58:56'),('\"~','roum_loot_bag_small_2','NumItems','0',0,'2007-02-20 15:58:56'),('\"~','roum_loot_chest_epic_1','NumItems','0',0,'2007-01-13 03:18:25'),('\"~','roum_loot_chest_epic_2','NumItems','0',0,'2007-01-13 04:11:14'),('\"~','roum_loot_chest_high_1','NumItems','0',0,'2007-01-13 03:18:25'),('\"~','roum_loot_chest_high_2','NumItems','0',0,'2007-01-13 04:11:14'),('\"~','roum_loot_chest_low_1','NumItems','30',0,'2007-04-23 17:47:24'),('\"~','roum_loot_chest_low_2','NumItems','0',0,'2007-04-03 14:17:07'),('\"~','roum_loot_chest_low_3','NumItems','0',0,'2007-04-03 14:17:07'),('\"~','roum_loot_chest_med_1','NumItems','0',0,'2007-01-13 03:18:22'),('\"~','roum_loot_chest_med_2','NumItems','0',0,'2007-01-13 03:18:21'),('\"~','roum_percon_1','NumItems','0',0,'2007-04-26 23:04:24'),('\"~','roum_percon_1','Persistent','1',0,'2006-12-23 23:08:43'),('\"~','roum_percon_1','Threshold','50',0,'2007-03-18 14:55:02'),('\"~','roum_permerch_1','NumItems','0',0,'2007-03-14 23:04:10'),('\"~','roum_permerch_1','Persistent','1',0,'2007-01-05 12:21:18'),('\"~','roum_permerch_1','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_2','NumItems','0',0,'2007-03-05 20:43:16'),('\"~','roum_permerch_2','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_2','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_3','NumItems','0',0,'2007-03-18 09:41:56'),('\"~','roum_permerch_3','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_3','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_4','NumItems','0',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_4','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_4','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_5','NumItems','0',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_5','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_5','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_6','NumItems','0',0,'2007-03-11 17:34:52'),('\"~','roum_permerch_6','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_6','Threshold','100',0,'2007-03-18 12:56:59'),('\"~','roum_permerch_7','NumItems','0',0,'2007-02-26 16:53:27'),('\"~','roum_permerch_7','Persistent','1',0,'2007-01-25 20:09:23'),('\"~','roum_permerch_7','Threshold','100',0,'2007-03-18 12:56:59'),('--Vlad--','Kala','Bleeding','1',0,'2007-05-28 10:00:07'),('--Vlad--','Kala','BrazierCharges','1',0,'2007-05-28 09:33:46'),('--Vlad--','Kala','BrazierType','0',0,'2007-05-28 09:33:46'),('--Vlad--','Kala','LastDiedLoc','#A#rouml1a3#X# 146.931198120#Y# 23.065942764#Z# -0.000000000#O# 93.580642700#END#',0,'2007-05-28 09:58:19'),('--Vlad--','Kala','roum_journal','HiveMotherQuest >1 |',0,'2007-05-28 09:41:20'),('12adder12','Arto Milley','BrazierCharges','1',0,'2007-07-04 14:00:50'),('12adder12','Arto Milley','BrazierType','0',0,'2007-07-04 14:00:50'),('ahjim','Tomar','Bleeding','0',0,'2007-09-08 22:38:33'),('ahjim','Tomar','BrazierCharges','1',0,'2007-08-29 03:11:04'),('ahjim','Tomar','BrazierType','0',0,'2007-08-29 03:11:04'),('ahjim','Tomar','Dead','1',0,'2007-09-08 22:38:27'),('ahjim','Tomar','LastDiedLoc','#A#rouml1a6s1#X# 21.513702393#Y# 44.050777435#Z# 0.000000098#O# 217.350250244#END#',0,'2007-09-08 22:38:27'),('Aiko Ishin','Lucifuge Rofocale','BrazierCharges','1',0,'2007-09-15 18:57:36'),('Aiko Ishin','Lucifuge Rofocale','BrazierType','0',0,'2007-09-15 18:57:36'),('alain123','Gaath','BrazierCharges','1',0,'2007-05-14 09:44:49'),('alain123','Gaath','BrazierType','0',0,'2007-05-14 09:44:49'),('alain123','Gaath','Dead','1',0,'2007-05-14 09:54:03'),('alain123','Gaath','LastDiedLoc','#A#rouml1a3#X# 32.746967316#Y# 59.575634003#Z# 0.000000000#O# 185.375946045#END#',0,'2007-05-14 09:54:03'),('alain123','Gaath','roum_journal','HiveMotherQuest >1 |',0,'2007-05-14 09:48:10'),('alex1337','Delinar','BrazierCharges','1',0,'2007-05-19 19:39:04'),('alex1337','Delinar','BrazierType','0',0,'2007-05-19 19:39:04'),('Alexanderum2','Darathen Erelesste','BrazierCharges','1',0,'2007-07-03 20:06:58'),('Alexanderum2','Darathen Erelesste','BrazierType','0',0,'2007-07-03 20:06:58'),('Alexanderum2','Darathen Erelesste','roum_journal','HiveMotherQuest >1 |',0,'2007-07-03 20:16:15'),('amanitamuscaria','Arashi','BrazierCharges','1',0,'2007-09-18 17:16:15'),('amanitamuscaria','Arashi','BrazierType','0',0,'2007-09-18 17:16:15'),('amanitamuscaria','Aylar','BrazierCharges','0',0,'2007-09-18 19:24:41'),('amanitamuscaria','Aylar','BrazierType','0',0,'2007-09-16 15:49:41'),('amanitamuscaria','Aylar','LastDiedLoc','#A#rouml1a30#X# 63.900684357#Y# 158.962905884#Z# -0.000000000#O# 160.670776367#END#',0,'2007-09-18 18:47:05'),('amanitamuscaria','Aylar','LastLoc','#A#rouml1a31#X# 166.489334106#Y# 125.532257080#Z# 0.000000102#O# 93.475593567#END#',0,'2007-09-18 19:21:13'),('amanitamuscaria','Aylar','roum_journal','HiveMotherQuest >2 |',0,'2007-09-16 16:43:31'),('amanitamuscaria','Marine Klensbane','BrazierCharges','1',0,'2007-09-05 13:31:24'),('amanitamuscaria','Marine Klensbane','BrazierType','0',0,'2007-09-05 13:31:24'),('amanitamuscaria','Marine Klensbane','LastDiedLoc','#A#rouml1a12#X# 247.782714844#Y# 24.285564423#Z# 0.000000021#O# 188.843215942#END#',0,'2007-09-05 13:48:08'),('amanitamuscaria','Marine Klensbane','roum_journal','HiveMotherQuest >1 |',0,'2007-09-05 13:40:17'),('Andrew922','Drizz\'t','BrazierCharges','1',0,'2007-07-02 14:26:45'),('Andrew922','Drizz\'t','BrazierType','0',0,'2007-07-02 14:26:45'),('Andrew922','Drizz\'t','roum_journal','HiveMotherQuest >1 |',0,'2007-07-02 14:29:49'),('Andrew922','Oompa Loompa','BrazierCharges','1',0,'2007-07-02 03:32:46'),('Andrew922','Oompa Loompa','BrazierType','0',0,'2007-07-02 03:32:46'),('Andrew922','Oompa Loompa','LastLoc','#A#rouml1a31#X# 91.703483582#Y# 30.812261581#Z# -0.000000000#O# 281.482910156#END#',0,'2007-07-02 03:43:02'),('Andrew922','Oompa Loompa','roum_journal','HiveMotherQuest >1 |',0,'2007-07-02 03:40:00'),('anito galeta','Tutù','BrazierCharges','1',0,'2007-09-01 01:04:05'),('anito galeta','Tutù','BrazierType','0',0,'2007-09-01 01:04:05'),('anito galeta','Tutù','roum_journal','HiveMotherQuest >1 |',0,'2007-09-01 01:16:10'),('Anjelic','Anjel Heart','Bleeding','1',0,'2007-06-29 11:36:51'),('Anjelic','Anjel Heart','BrazierCharges','0',0,'2007-06-11 12:47:03'),('Anjelic','Anjel Heart','BrazierType','0',0,'2007-06-10 17:15:27'),('Anjelic','Anjel Heart','LastDiedLoc','#A#rouml1a31#X# 112.425155640#Y# 177.841049194#Z# -0.000000000#O# 296.296569824#END#',0,'2007-06-29 11:16:55'),('Anjelic','Anjel Heart','LastLoc','#A#rouml1a31#X# 157.616638184#Y# 14.531394958#Z# -0.000000000#O# 211.508163452#END#',0,'2007-06-29 11:33:19'),('Anjelic','Anjel Heart','roum_journal','HiveMotherQuest >1 |',0,'2007-06-10 17:21:45'),('Anjelic','Anjelic Dreams','BrazierCharges','0',0,'2007-06-11 19:59:25'),('Anjelic','Anjelic Dreams','BrazierType','0',0,'2007-06-11 10:57:09'),('Anjelic','Anjelic Dreams','LastDiedLoc','#A#rouml1a3#X# 104.905639648#Y# 130.949127197#Z# -0.000000000#O# 142.437377930#END#',0,'2007-06-11 19:57:30'),('Anjelic','Anjelic Dreams','roum_journal','HiveMotherQuest >1 |',0,'2007-06-11 10:59:38'),('Archmage2k','Caldor','Bleeding','1',0,'2007-08-07 18:01:19'),('Archmage2k','Caldor','BrazierCharges','0',0,'2007-08-06 19:41:01'),('Archmage2k','Caldor','BrazierType','0',0,'2007-07-28 12:23:02'),('Archmage2k','Caldor','LastDiedLoc','#A#rouml1a6s1#X# 43.445972443#Y# 24.885459900#Z# 0.000000021#O# 121.386238098#END#',0,'2007-08-07 17:38:06'),('Archmage2k','Caldor','LastLoc','#A#rouml1a19s3#X# 62.991485596#Y# 117.426429749#Z# -0.000000000#O# 250.049026489#END#',0,'2007-08-06 19:22:43'),('Archmage2k','Celith','BrazierCharges','0',0,'2007-07-29 18:16:49'),('Archmage2k','Celith','BrazierType','0',0,'2007-07-17 19:44:16'),('Archmage2k','Celith','LastDiedLoc','#A#rouml1a8s2#X# 205.278930664#Y# 211.409027100#Z# -0.000000000#O# 3.131203890#END#',0,'2007-07-29 18:19:47'),('Archmage2k','Celith','LastLoc','#A#rouml1a33#X# 39.828090668#Y# 46.972888947#Z# -0.000000000#O# 349.045928955#END#',0,'2007-07-27 23:04:50'),('Archmage2k','Kashan','BrazierCharges','0',0,'2007-07-17 19:17:37'),('Archmage2k','Kashan','BrazierType','0',0,'2007-07-16 17:30:33'),('Archmage2k','Kashan','LastDiedLoc','#A#rouml1a3#X# 21.029953003#Y# 74.868705750#Z# -0.000000000#O# 73.570831299#END#',0,'2007-07-31 20:28:43'),('Archmage2k','Kashan','LastLoc','#A#rouml1a3#X# 118.875457764#Y# 29.928026199#Z# 0.000000040#O# 292.013488770#END#',0,'2007-07-17 19:17:48'),('Archmage2k','Kashan','roum_journal','HiveMotherQuest >1 |',0,'2007-07-16 17:40:03'),('Archmage2k','Mard','BrazierCharges','0',0,'2007-08-19 09:50:22'),('Archmage2k','Mard','BrazierType','0',0,'2007-07-29 00:30:52'),('Archmage2k','Mard','LastDiedLoc','#A#rouml1a30#X# 104.842597961#Y# 33.116775513#Z# -0.000000000#O# 308.793090820#END#',0,'2007-07-30 19:30:57'),('Archmage2k','Mard','LastLoc','#A#rouml1a3#X# 148.450576782#Y# 22.177389145#Z# -0.000000000#O# 0.000000000#END#',0,'2007-07-31 21:41:40'),('Archmage2k','Mard','roum_journal','HiveMotherQuest >1 |',0,'2007-07-29 12:24:03'),('Archmage2k','Timo Fenthur','BrazierCharges','1',0,'2007-07-15 19:30:47'),('Archmage2k','Timo Fenthur','BrazierType','0',0,'2007-07-15 19:30:46'),('Archmage2k','Timo Fenthur','LastDiedLoc','#A#rouml1a3#X# 113.026123047#Y# 86.639846802#Z# -0.000000000#O# 109.400123596#END#',0,'2007-07-16 16:57:56'),('Archmage2k','Timo Fenthur','roum_journal','HiveMotherQuest >1 |',0,'2007-07-15 19:45:45'),('AuraoftheFlame','Allie','BrazierCharges','1',0,'2007-07-11 20:36:26'),('AuraoftheFlame','Allie','BrazierType','0',0,'2007-07-11 20:36:26'),('AuraoftheFlame','Allie','LastLoc','#A#rouml1a31#X# 161.630371094#Y# 16.991800308#Z# -0.000000000#O# 179.999984741#END#',0,'2007-07-11 23:08:02'),('AuraoftheFlame','Allie','roum_journal','HiveMotherQuest >1 |',0,'2007-07-11 20:39:07'),('AuraoftheFlame','Alric','Bleeding','0',0,'2007-06-04 21:33:53'),('AuraoftheFlame','Alric','BrazierCharges','0',0,'2007-06-02 09:32:19'),('AuraoftheFlame','Alric','BrazierType','0',0,'2007-06-01 22:24:40'),('AuraoftheFlame','Alric','Dead','1',0,'2007-06-04 21:33:47'),('AuraoftheFlame','Alric','LastDiedLoc','#A#roumstara1#X# 130.230545044#Y# 158.636718750#Z# 6.000000000#O# 315.000000000#END#',0,'2007-06-04 21:33:47'),('AuraoftheFlame','Alric','LastLoc','#A#rouml1a22#X# 147.569824219#Y# 127.577117920#Z# -0.000000000#O# 244.278274536#END#',0,'2007-06-02 09:32:31'),('AuraoftheFlame','Alric','roum_journal','HiveMotherQuest >2 |',0,'2007-06-02 00:11:02'),('AuraoftheFlame','Anelad','BrazierCharges','1',0,'2007-08-08 13:18:31'),('AuraoftheFlame','Anelad','BrazierType','0',0,'2007-08-08 13:18:31'),('AuraoftheFlame','Anelad','LastDiedLoc','#A#roumstara1#X# 130.230545044#Y# 158.636718750#Z# 6.000000000#O# 315.000000000#END#',0,'2007-08-10 20:58:02'),('AuraoftheFlame','Anelad','roum_journal','HiveMotherQuest >1 |',0,'2007-08-10 20:59:30'),('AuraoftheFlame','Asham Briin','BrazierCharges','1',0,'2007-07-25 12:48:54'),('AuraoftheFlame','Asham Briin','BrazierType','0',0,'2007-07-25 12:48:54'),('AuraoftheFlame','Gloili','BrazierCharges','1',0,'2007-07-29 17:11:57'),('AuraoftheFlame','Gloili','BrazierType','0',0,'2007-07-29 17:11:57'),('AuraoftheFlame','Gloili','LastDiedLoc','#A#rouml1a30#X# 102.186286926#Y# 130.582412720#Z# -0.000000000#O# 326.808563232#END#',0,'2007-07-30 09:11:09'),('AuraoftheFlame','Gloili','LastLoc','#A#rouml1a30#X# 104.759948730#Y# 139.140640259#Z# -0.000000000#O# 76.582710266#END#',0,'2007-07-30 09:13:33'),('AuraoftheFlame','Haley','BrazierCharges','0',0,'2007-07-27 21:25:45'),('AuraoftheFlame','Haley','BrazierType','0',0,'2007-07-16 20:36:24'),('AuraoftheFlame','Haley','LastDiedLoc','#A#rouml1a10s2#X# 145.067123413#Y# 9.733043671#Z# -0.000000000#O# 345.966308594#END#',0,'2007-07-27 18:04:09'),('AuraoftheFlame','Haley','LastLoc','#A#rouml1a11s1#X# 24.710987091#Y# 52.468948364#Z# 0.000000000#O# 117.716178894#END#',0,'2007-07-27 20:55:25'),('AuraoftheFlame','Haley','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-07-18 11:46:57'),('AuraoftheFlame','Halie','BrazierCharges','0',0,'2007-07-16 11:17:28'),('AuraoftheFlame','Halie','BrazierType','0',0,'2007-07-15 14:28:12'),('AuraoftheFlame','Halie','LastDiedLoc','#A#rouml1a11s1#X# 51.038509369#Y# 218.090164185#Z# -0.000000000#O# 177.361160278#END#',0,'2007-07-16 11:47:12'),('AuraoftheFlame','Halie','LastLoc','#A#rouml1a11s1#X# 30.206726074#Y# 53.771194458#Z# 0.000000118#O# 306.853942871#END#',0,'2007-07-16 11:52:47'),('AuraoftheFlame','Ishilner','Bleeding','0',0,'2007-06-11 16:41:33'),('AuraoftheFlame','Ishilner','BrazierCharges','1',0,'2007-07-15 10:00:42'),('AuraoftheFlame','Ishilner','BrazierType','0',0,'2007-06-04 21:31:49'),('AuraoftheFlame','Ishilner','Dead','1',0,'2007-06-11 16:41:29'),('AuraoftheFlame','Ishilner','LastDiedLoc','#A#roumstara1#X# 130.230545044#Y# 158.636718750#Z# 6.000000000#O# 315.000000000#END#',0,'2007-06-11 16:41:29'),('AuraoftheFlame','Ishilner','LastLoc','#A#rouml1a27#X# 175.228332520#Y# 25.179376602#Z# 0.000000000#O# 11.039762497#END#',0,'2007-06-06 12:09:17'),('AuraoftheFlame','Ishilner','roum_journal','HiveMotherQuest >2 |',0,'2007-06-05 10:28:21'),('AuraoftheFlame','Ishmael','Bleeding','0',0,'2007-06-04 21:19:28'),('AuraoftheFlame','Ishmael','BrazierCharges','1',0,'2007-06-04 15:57:18'),('AuraoftheFlame','Ishmael','BrazierType','0',0,'2007-06-04 15:57:18'),('AuraoftheFlame','Ishmael','Dead','1',0,'2007-06-04 21:19:22'),('AuraoftheFlame','Ishmael','LastDiedLoc','#A#rouml1a32#X# 93.807113647#Y# 31.557926178#Z# -0.000000000#O# 290.350189209#END#',0,'2007-06-04 21:19:22'),('AuraoftheFlame','Kaitie','BrazierCharges','1',0,'2007-08-07 09:36:49'),('AuraoftheFlame','Kaitie','BrazierType','0',0,'2007-08-07 09:36:49'),('AuraoftheFlame','Merry Lear','BrazierCharges','1',0,'2007-07-25 19:35:04'),('AuraoftheFlame','Merry Lear','BrazierType','0',0,'2007-07-25 19:35:04'),('AuraoftheFlame','Narishma','BrazierCharges','0',0,'2007-07-17 18:20:47'),('AuraoftheFlame','Narishma','LastDiedLoc','#A#rouml1a31#X# 66.245826721#Y# 173.832260132#Z# -0.000000000#O# 102.039115906#END#',0,'2007-07-11 15:37:08'),('AuraoftheFlame','Narishma','LastLoc','#A#rouml1a32#X# 178.829666138#Y# 136.681243896#Z# -0.000000000#O# 54.179676056#END#',0,'2007-07-17 18:18:13'),('AuraoftheFlame','Narishma','roum_journal','DargothQuest >1 |',0,'2007-07-17 18:22:00'),('B T K','Renbas Darkbeard','BrazierCharges','1',0,'2007-05-09 11:38:42'),('B T K','Renbas Darkbeard','BrazierType','0',0,'2007-05-09 11:38:42'),('B T K','Renbas Darkbeard','roum_journal','HiveMotherQuest >1 |',0,'2007-05-09 11:43:34'),('Balguurd Stormstone','Balguurd Stormstone','BrazierCharges','1',0,'2007-05-28 22:56:34'),('Balguurd Stormstone','Balguurd Stormstone','BrazierType','0',0,'2007-05-28 22:56:34'),('Balguurd Stormstone','Balguurd Stormstone','Dead','1',0,'2007-05-28 23:24:13'),('Balguurd Stormstone','Balguurd Stormstone','LastDiedLoc','#A#rouml1a3#X# 143.296676636#Y# 47.274856567#Z# -0.000000000#O# 165.049163818#END#',0,'2007-05-28 23:29:36'),('Balinor Lyonsbane','Leanna Dykstra','BrazierCharges','0',0,'2007-05-27 17:22:25'),('Balinor Lyonsbane','Leanna Dykstra','BrazierType','0',0,'2007-05-09 17:35:14'),('Balinor Lyonsbane','Leanna Dykstra','LastDiedLoc','#A#rouml1a28#X# 124.218635559#Y# 26.762594223#Z# 0.000000042#O# 358.382141113#END#',0,'2007-05-27 17:38:24'),('Balinor Lyonsbane','Leanna Dykstra','LastLoc','#A#rouml1a30#X# 187.207946777#Y# 166.070983887#Z# -0.000000000#O# 22.009393692#END#',0,'2007-06-03 15:35:36'),('Balinor Lyonsbane','Leanna Dykstra','roum_journal','HiveMotherQuest >2 |',0,'2007-05-20 12:30:30'),('BrikZ','Aesmith','BrazierCharges','1',0,'2007-06-09 15:36:52'),('BrikZ','Aesmith','BrazierType','0',0,'2007-06-09 15:36:52'),('BrikZ','Aesmith','Dead','1',0,'2007-06-09 16:05:32'),('BrikZ','Aesmith','LastDiedLoc','#A#rouml1a31#X# 63.312553406#Y# 65.443428040#Z# 0.000000114#O# 140.225158691#END#',0,'2007-06-09 16:05:32'),('BrikZ','Aesmith','roum_journal','HiveMotherQuest >1 |',0,'2007-06-09 15:43:25'),('buaasunny','kaka xyz','BrazierCharges','1',0,'2007-07-13 15:57:09'),('buaasunny','kaka xyz','BrazierType','0',0,'2007-07-13 15:57:09'),('buaasunny','kaka xyz','roum_journal','HiveMotherQuest >1 |',0,'2007-07-13 16:03:30'),('buaasunny','showtime','BrazierCharges','0',0,'2007-07-15 12:17:23'),('buaasunny','showtime','BrazierType','0',0,'2007-07-15 11:35:11'),('buaasunny','showtime','LastDiedLoc','#A#rouml1a30s1#X# 156.542434692#Y# 56.390335083#Z# -0.000000000#O# 108.173034668#END#',0,'2007-07-15 13:35:13'),('buaasunny','showtime','LastLoc','#A#rouml1a31#X# 54.508888245#Y# 148.719284058#Z# 0.000000097#O# 254.895141602#END#',0,'2007-07-15 12:17:31'),('buaasunny','spideman','BrazierCharges','0',0,'2007-07-17 06:03:19'),('buaasunny','spideman','BrazierType','0',0,'2007-07-17 03:33:30'),('buaasunny','spideman','LastDiedLoc','#A#roumstara1#X# 130.230545044#Y# 158.636718750#Z# 6.000000000#O# 315.000000000#END#',0,'2007-07-17 08:24:17'),('buaasunny','spideman','LastLoc','#A#rouml1a31#X# 134.425170898#Y# 13.062054634#Z# 0.000000090#O# 185.688644409#END#',0,'2007-07-17 05:59:52'),('Cashalli','Regriam Steede','BrazierCharges','1',0,'2007-09-17 00:56:57'),('Cashalli','Regriam Steede','BrazierType','0',0,'2007-09-17 00:56:57'),('cnix313','Kence Aylomein','BrazierCharges','1',0,'2007-05-24 13:34:30'),('cnix313','Kence Aylomein','BrazierType','0',0,'2007-05-24 13:34:30'),('cnix313','Kence Aylomein','Dead','1',0,'2007-05-24 13:48:32'),('cnix313','Kence Aylomein','LastDiedLoc','#A#rouml1a31#X# 116.262947083#Y# 13.022746086#Z# 0.000000072#O# 101.251579285#END#',0,'2007-05-24 13:54:19'),('cnix313','Kence Aylomein','roum_journal','HiveMotherQuest >1 |',0,'2007-05-24 13:41:32'),('cnix313','Pard','BrazierCharges','0',0,'2007-05-29 19:43:46'),('cnix313','Pard','BrazierType','0',0,'2007-05-29 19:10:16'),('cnix313','Pard','LastDiedLoc','#A#rouml1a3#X# 145.268447876#Y# 48.942882538#Z# 0.000000057#O# 110.029457092#END#',0,'2007-05-30 11:18:41'),('cnix313','Pard','roum_journal','HiveMotherQuest >1 |',0,'2007-05-29 19:21:15'),('cnix313','Pard Marshby','Bleeding','1',0,'2007-05-28 18:41:11'),('cnix313','Pard Marshby','BrazierCharges','0',0,'2007-05-28 18:35:43'),('cnix313','Pard Marshby','BrazierType','0',0,'2007-05-28 17:50:15'),('cnix313','Pard Marshby','LastDiedLoc','#A#rouml1a31s1#X# 85.079177856#Y# 125.688407898#Z# 0.000000119#O# 140.651290894#END#',0,'2007-05-28 18:19:19'),('cnix313','Pard Marshby','LastLoc','#A#rouml1a31s1#X# 121.983009338#Y# 147.332824707#Z# -0.000000000#O# 173.643432617#END#',0,'2007-05-28 18:28:15'),('cnix313','Pard Marshby','roum_journal','HiveMotherQuest >1 |',0,'2007-05-28 17:54:42'),('coreythinks','Rodor','BrazierCharges','1',0,'2007-09-12 22:08:51'),('coreythinks','Rodor','BrazierType','0',0,'2007-09-12 22:08:51'),('coreythinks','Rodor','roum_journal','HiveMotherQuest >1 |',0,'2007-09-12 22:15:33'),('Crestlin_S','Terinn Y\'Oazz','BrazierCharges','1',0,'2007-09-12 21:51:43'),('Crestlin_S','Terinn Y\'Oazz','BrazierType','0',0,'2007-09-12 21:51:43'),('Crestlin_S','Terinn Y\'Oazz','roum_journal','HiveMotherQuest >1 |',0,'2007-09-12 22:07:35'),('D-VRiP','Valen','Bleeding','0',0,'2007-05-18 13:42:20'),('D-VRiP','Valen','BrazierCharges','0',0,'2007-05-18 01:21:49'),('D-VRiP','Valen','BrazierType','0',0,'2007-05-17 19:47:46'),('D-VRiP','Valen','Dead','1',0,'2007-05-18 13:42:12'),('D-VRiP','Valen','LastDiedLoc','#A#rouml1a12#X# 258.901092529#Y# 42.018108368#Z# 0.000000034#O# 210.172058105#END#',0,'2007-05-18 13:42:12'),('D-VRiP','Valen','LastLoc','#A#rouml1a27#X# 181.382644653#Y# 35.985542297#Z# -0.000000000#O# 187.221252441#END#',0,'2007-05-18 01:21:56'),('D-VRiP','Valen','roum_journal','HiveMotherQuest >2 |',0,'2007-05-17 23:50:15'),('Dane Bramage','Tengol Oakenshield','BrazierCharges','0',0,'2007-05-15 21:04:17'),('Dane Bramage','Tengol Oakenshield','BrazierType','0',0,'2007-05-09 17:44:11'),('Dane Bramage','Tengol Oakenshield','LastDiedLoc','#A#rouml1a31#X# 95.779335022#Y# 44.953186035#Z# 0.000000147#O# 81.130767822#END#',0,'2007-05-16 17:36:28'),('Dane Bramage','Tengol Oakenshield','LastLoc','#A#rouml1a31#X# 155.989425659#Y# 66.991943359#Z# -0.000000000#O# 97.418022156#END#',0,'2007-05-15 21:04:40'),('Dane Bramage','Tengol Oakenshield','roum_journal','HiveMotherQuest >1 |',0,'2007-05-15 20:25:02'),('darius018','Darius','BrazierCharges','1',0,'2007-05-28 10:46:29'),('darius018','Darius','BrazierType','0',0,'2007-05-28 10:46:29'),('DarkraiderX','Boppi Rusten','BrazierCharges','1',0,'2007-06-02 23:09:01'),('DarkraiderX','Boppi Rusten','BrazierType','0',0,'2007-06-02 23:09:01'),('DarkraiderX','Boppi Rusten','LastDiedLoc','#A#rouml1a6s1#X# 22.600309372#Y# 61.474998474#Z# 0.000000060#O# 261.129974365#END#',0,'2007-06-02 23:39:34'),('DarkraiderX','Boppi Rusten','roum_journal','HiveMotherQuest >1 |',0,'2007-06-02 23:11:38'),('DarkraiderX','Mert Notten','Bleeding','1',0,'2007-06-02 23:31:27'),('DarkraiderX','Mert Notten','BrazierCharges','1',0,'2007-06-02 23:19:19'),('DarkraiderX','Mert Notten','BrazierType','0',0,'2007-06-02 23:19:19'),('DarkraiderX','Mert Notten','roum_journal','HiveMotherQuest >1 |',0,'2007-06-02 23:20:46'),('DarkStar27909','Franz Addams','BrazierCharges','1',0,'2007-05-13 17:59:58'),('DarkStar27909','Franz Addams','BrazierType','0',0,'2007-05-13 17:59:58'),('DarkStar27909','Franz Addams','roum_journal','HiveMotherQuest >1 |',0,'2007-05-13 18:09:55'),('DeadWarlock','Grimmstone','BrazierCharges','0',0,'2007-07-14 16:11:53'),('DeadWarlock','Grimmstone','BrazierType','0',0,'2007-05-09 22:41:43'),('DeadWarlock','Grimmstone','LastDiedLoc','#A#rouml1a8s1#X# 23.529924393#Y# 75.108764648#Z# -0.000000000#O# 272.561279297#END#',0,'2007-07-14 09:52:20'),('DeadWarlock','Grimmstone','LastLoc','#A#rouml1a24#X# 165.602172852#Y# 103.998168945#Z# -0.000000000#O# 179.538208008#END#',0,'2007-07-14 16:12:00'),('DeadWarlock','Grimmstone','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-07-05 22:41:30'),('DeadWarlock','Sly','BrazierCharges','0',0,'2007-06-10 10:32:55'),('DeadWarlock','Sly','BrazierType','0',0,'2007-06-10 09:21:27'),('DeadWarlock','Sly','LastDiedLoc','#A#rouml1a31s1#X# 56.180942535#Y# 41.554058075#Z# -0.000000000#O# 122.864280701#END#',0,'2007-06-10 10:38:44'),('DeadWarlock','Sly','LastLoc','#A#rouml1a31s1#X# 40.269630432#Y# 10.201885223#Z# 0.000000022#O# 88.037399292#END#',0,'2007-06-10 10:32:53'),('DeadWarlock','Sly','roum_journal','HiveMotherQuest >1 |',0,'2007-06-10 10:09:57'),('DeadWarlock','WARPIG','BrazierCharges','1',0,'2007-07-11 21:52:52'),('DeadWarlock','WARPIG','BrazierType','0',0,'2007-07-11 21:52:52'),('DeanMichael','Loki','BrazierCharges','1',0,'2007-07-14 22:05:52'),('DeanMichael','Loki','BrazierType','0',0,'2007-07-14 22:05:52'),('DeanMichael','Loki','roum_journal','HiveMotherQuest >1 |',0,'2007-07-14 22:12:30'),('DeputyDoggz','Loki Thorvald','BrazierCharges','1',0,'2007-09-12 21:09:10'),('DeputyDoggz','Loki Thorvald','BrazierType','0',0,'2007-09-12 21:09:10'),('DeputyDoggz','Loki Thorvald','roum_journal','HiveMotherQuest >1 |',0,'2007-09-12 22:07:43'),('DeputyDoggz','Zeroxaenna Wytchona','BrazierCharges','0',0,'2007-07-02 22:33:15'),('DeputyDoggz','Zeroxaenna Wytchona','BrazierType','0',0,'2007-07-01 03:13:46'),('DeputyDoggz','Zeroxaenna Wytchona','LastDiedLoc','#A#rouml1a31#X# 170.778961182#Y# 86.823249817#Z# 0.000000128#O# 4.454026222#END#',0,'2007-07-02 22:54:54'),('DeputyDoggz','Zeroxaenna Wytchona','LastLoc','#A#rouml1a31#X# 161.068984985#Y# 19.324115753#Z# -0.000000000#O# 275.518981934#END#',0,'2007-07-02 22:33:30'),('DeputyDoggz','Zeroxaenna Wytchona','roum_journal','HiveMotherQuest >1 |',0,'2007-07-01 03:18:41'),('dhrunzels','Kirth Morvannor','BrazierCharges','1',0,'2007-05-27 09:59:14'),('dhrunzels','Kirth Morvannor','BrazierType','0',0,'2007-05-27 09:59:14'),('DivineHonor','Valeron Brightblade','BrazierCharges','1',0,'2007-09-05 12:27:07'),('DivineHonor','Valeron Brightblade','BrazierType','0',0,'2007-09-05 12:27:07'),('DivineHonor','Valeron Brightblade','Dead','1',0,'2007-09-05 12:34:19'),('DivineHonor','Valeron Brightblade','LastDiedLoc','#A#rouml1a3#X# 146.527343750#Y# 47.883399963#Z# 0.000000014#O# 283.728729248#END#',0,'2007-09-05 12:48:29'),('DivineHonor','Valeron Brightblade','roum_journal','HiveMotherQuest >1 |',0,'2007-09-05 12:32:49'),('Dlareh','Glarin Nubin','BrazierCharges','0',0,'2007-06-30 06:57:12'),('Dlareh','Glarin Nubin','BrazierType','0',0,'2007-06-30 06:06:22'),('Dlareh','Glarin Nubin','LastDiedLoc','#A#rouml1a31#X# 95.377990723#Y# 136.482681274#Z# -0.000000000#O# 252.216308594#END#',0,'2007-06-30 06:44:54'),('Dlareh','Glarin Nubin','LastLoc','#A#rouml1a31#X# 204.164077759#Y# 240.178497314#Z# -0.000000000#O# 105.795349121#END#',0,'2007-06-30 06:58:04'),('Dlareh','Glarin Nubin','roum_journal','HiveMotherQuest >1 |',0,'2007-06-30 06:22:49'),('Donteric','Nif the Maker','BrazierCharges','0',0,'2007-05-15 21:45:30'),('Donteric','Nif the Maker','BrazierType','0',0,'2007-05-15 21:00:46'),('Donteric','Nif the Maker','LastDiedLoc','#A#rouml1a31#X# 189.564636230#Y# 245.534362793#Z# 0.000000091#O# 142.781143188#END#',0,'2007-05-15 21:53:25'),('Donteric','Nif the Maker','LastLoc','#A#rouml1a32#X# 6.214714050#Y# 130.700942993#Z# -0.000000000#O# 90.539886475#END#',0,'2007-05-15 21:45:37'),('Donteric','Retch','BrazierCharges','0',0,'2007-06-26 21:10:40'),('Donteric','Retch','BrazierType','0',0,'2007-05-09 17:40:36'),('Donteric','Retch','LastDiedLoc','#A#rouml1a8s1#X# 38.686531067#Y# 5.987860203#Z# -0.000000000#O# 276.905212402#END#',0,'2007-06-17 19:33:38'),('Donteric','Retch','LastLoc','#A#rouml1a28#X# 175.308761597#Y# 37.255714417#Z# 0.000000016#O# 85.395309448#END#',0,'2007-06-26 21:10:31'),('Donteric','Retch','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-05-21 21:54:40'),('Donteric','Smith','BrazierCharges','0',0,'2007-07-02 21:10:06'),('Donteric','Smith','BrazierType','0',0,'2007-05-20 17:59:21'),('Donteric','Smith','LastDiedLoc','#A#rouml1a13s1#X# 177.247772217#Y# 24.856487274#Z# -0.000000000#O# 342.191223145#END#',0,'2007-06-22 22:56:25'),('Donteric','Smith','LastLoc','#A#rouml1a29#X# 33.202880859#Y# 120.379669189#Z# -0.000000000#O# 176.183944702#END#',0,'2007-07-02 21:10:16'),('Donteric','Smith','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-06-14 21:08:00'),('doomfetus','Bonk','Bleeding','1',0,'2007-08-26 04:47:36'),('doomfetus','Bonk','BrazierCharges','1',0,'2007-08-26 04:23:48'),('doomfetus','Bonk','BrazierType','0',0,'2007-08-26 04:23:48'),('doomfetus','Bonk','LastDiedLoc','#A#rouml1a3#X# 147.013488770#Y# 48.112487793#Z# 0.000000004#O# 283.948211670#END#',0,'2007-08-26 04:43:58'),('doomfetus','Bonk','roum_journal','HiveMotherQuest >1 |',0,'2007-08-26 04:29:20'),('DragonsBane','Dragonsbane','BrazierCharges','0',0,'2007-06-09 17:23:52'),('DragonsBane','Dragonsbane','BrazierType','0',0,'2007-06-09 17:07:48'),('DragonsBane','Dragonsbane','LastDiedLoc','#A#rouml1a12#X# 258.105102539#Y# 53.222648621#Z# -0.000000000#O# 270.623901367#END#',0,'2007-06-09 17:13:46'),('DragonsBane','Dragonsbane','LastLoc','#A#rouml1a12#X# 162.138793945#Y# 40.051437378#Z# 0.000001158#O# 48.372089386#END#',0,'2007-06-09 17:23:59'),('DragonsBane','Dragonsbane','roum_journal','HiveMotherQuest >1 |',0,'2007-06-09 17:09:36'),('DragonsBane','Drake','Bleeding','0',0,'2007-06-29 19:19:29'),('DragonsBane','Drake','BrazierCharges','0',0,'2007-06-09 11:00:58'),('DragonsBane','Drake','BrazierType','0',0,'2007-06-08 14:50:07'),('DragonsBane','Drake','Dead','1',0,'2007-06-29 19:19:24'),('DragonsBane','Drake','LastDiedLoc','#A#rouml1a10s2#X# 54.239162445#Y# 66.010414124#Z# 0.000000077#O# 305.947937012#END#',0,'2007-06-29 19:19:24'),('DragonsBane','Drake','LastLoc','#A#rouml1a29s1#X# 5.756503582#Y# 50.587257385#Z# -0.000000000#O# 322.143341064#END#',0,'2007-06-09 11:01:06'),('DragonsBane','Drake','roum_journal','HiveMotherQuest >2 |',0,'2007-06-09 08:06:16'),('DragonsBane','Kebur Bane','BrazierCharges','0',0,'2007-06-18 18:44:44'),('DragonsBane','Kebur Bane','BrazierType','0',0,'2007-06-16 14:00:39'),('DragonsBane','Kebur Bane','LastDiedLoc','#A#rouml1a26#X# 239.704467773#Y# 190.926361084#Z# -0.000000000#O# 198.406097412#END#',0,'2007-06-18 18:25:55'),('DragonsBane','Kebur Bane','LastLoc','#A#rouml1a3#X# 35.514720917#Y# 149.420288086#Z# 0.000000121#O# 26.325141907#END#',0,'2007-06-30 08:01:01'),('DragonsBane','Kebur Bane','roum_journal','HiveMotherQuest >1 |',0,'2007-06-16 14:02:41'),('DragonsBane','Lolipop','BrazierCharges','0',0,'2007-06-20 16:04:32'),('DragonsBane','Lolipop','BrazierType','0',0,'2007-06-11 18:21:18'),('DragonsBane','Lolipop','LastDiedLoc','#A#rouml1a30s1#X# 154.517852783#Y# 74.351760864#Z# -0.000000000#O# 278.192382813#END#',0,'2007-06-19 21:05:55'),('DragonsBane','Lolipop','LastLoc','#A#rouml1a29#X# 106.519096375#Y# 116.919059753#Z# -0.000000000#O# 268.196289063#END#',0,'2007-06-20 15:42:34'),('DragonsBane','Lolipop','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-06-14 20:57:29'),('DragonsBane','Lollipop Bane','BrazierCharges','0',0,'2007-07-07 05:41:07'),('DragonsBane','Lollipop Bane','BrazierType','0',0,'2007-06-30 08:12:25'),('DragonsBane','Lollipop Bane','LastDiedLoc','#A#rouml1a11s1#X# 42.475048065#Y# 238.815658569#Z# -0.000000000#O# 207.789916992#END#',0,'2007-07-03 20:48:04'),('DragonsBane','Lollipop Bane','LastLoc','#A#rouml1a29s1#X# 24.904809952#Y# 100.975997925#Z# -0.000000000#O# 260.427429199#END#',0,'2007-07-06 22:17:08'),('drathius4evr','Delnor Meine','BrazierCharges','0',0,'2007-05-31 05:09:29'),('drathius4evr','Delnor Meine','BrazierType','0',0,'2007-05-26 16:06:44'),('drathius4evr','Delnor Meine','LastDiedLoc','#A#rouml1a13#X# 57.515670776#Y# 121.414276123#Z# -0.000000000#O# 155.620910645#END#',0,'2007-05-30 20:38:00'),('drathius4evr','Delnor Meine','LastLoc','#A#rouml1a17s1#X# 5.520271301#Y# 44.369056702#Z# 0.000000079#O# 91.776336670#END#',0,'2007-05-30 20:06:09'),('drathius4evr','Delnor Meine','roum_journal','HiveMotherQuest >2 |',0,'2007-05-27 09:48:03'),('drathius4evr','Martera Varathar','Bleeding','0',0,'2007-06-02 18:40:48'),('drathius4evr','Martera Varathar','BrazierCharges','1',0,'2007-06-02 11:53:05'),('drathius4evr','Martera Varathar','BrazierType','0',0,'2007-06-02 11:53:05'),('drathius4evr','Martera Varathar','Dead','1',0,'2007-06-02 18:37:43'),('drathius4evr','Martera Varathar','LastDiedLoc','#A#rouml1a31#X# 93.296821594#Y# 44.549430847#Z# 0.000000103#O# 228.039718628#END#',0,'2007-06-02 18:40:43'),('drathius4evr','Martera Varathar','LastLoc','#A#rouml1a31#X# 91.438438416#Y# 37.927200317#Z# -0.000000000#O# 197.885223389#END#',0,'2007-06-02 12:25:56'),('drathius4evr','Martera Varathar','roum_journal','HiveMotherQuest >1 |',0,'2007-06-02 11:58:37'),('Dumascain','Armonde Andraste','BrazierCharges','1',0,'2007-06-09 15:33:18'),('Dumascain','Armonde Andraste','BrazierType','0',0,'2007-06-09 15:33:18'),('Dumascain','Armonde Andraste','LastDiedLoc','#A#rouml1a12#X# 268.138763428#Y# 59.487537384#Z# 0.000000052#O# 213.854324341#END#',0,'2007-06-09 15:52:50'),('Dumascain','Armonde Andraste','roum_journal','HiveMotherQuest >1 |',0,'2007-06-09 15:43:20'),('Elw00d','Erag','BrazierCharges','0',0,'2007-05-12 15:54:48'),('Elw00d','Erag','BrazierType','0',0,'2007-05-08 22:10:50'),('Elw00d','Erag','LastDiedLoc','#A#rouml1a32#X# 36.391414642#Y# 109.114204407#Z# -0.000000000#O# 271.496795654#END#',0,'2007-05-12 15:46:31'),('Elw00d','Erag','LastLoc','#A#rouml1a32#X# 21.791366577#Y# 127.688690186#Z# -0.000000000#O# 59.526550293#END#',0,'2007-05-12 15:51:10'),('Elw00d','Erag','roum_journal','HiveMotherQuest >1 |',0,'2007-05-09 00:34:14'),('Elw00d','Erag Steinfist','Bleeding','0',0,'2007-07-01 13:08:53'),('Elw00d','Erag Steinfist','BrazierCharges','0',0,'2007-07-01 12:41:49'),('Elw00d','Erag Steinfist','Dead','1',0,'2007-07-01 13:08:48'),('Elw00d','Erag Steinfist','LastDiedLoc','#A#rouml1a30#X# 27.402690887#Y# 169.012115479#Z# -0.000000000#O# 188.124267578#END#',0,'2007-07-01 13:07:06'),('Elw00d','Erag Steinfist','LastLoc','#A#rouml1a30#X# 149.045684814#Y# 168.095901489#Z# -0.000000000#O# 144.957626343#END#',0,'2007-07-01 12:46:41'),('Elw00d','Erag Steinfist','roum_journal','DargothQuest >2 |',0,'2007-06-14 20:57:38'),('Elw00d','Erag Steinfist Ceiling Inspector','BrazierCharges','0',0,'2007-07-18 17:28:29'),('Elw00d','Erag Steinfist Ceiling Inspector','LastDiedLoc','#A#rouml1a30#X# 93.094902039#Y# 126.444831848#Z# -0.000000000#O# 215.230270386#END#',0,'2007-09-16 22:01:16'),('Elw00d','Erag Steinfist Ceiling Inspector','LastLoc','#A#rouml1a30#X# 139.890762329#Y# 115.230361938#Z# -0.000000000#O# 165.614486694#END#',0,'2007-07-18 17:22:31'),('Elw00d','Erag Steinfist Ceiling Inspector','roum_journal','DargothQuest >2 |',0,'2007-07-04 13:39:51'),('Elw00d','Erag the Bar Room Brawler','BrazierCharges','0',0,'2007-05-11 16:05:29'),('Elw00d','Erag the Bar Room Brawler','LastDiedLoc','#A#rouml1a31s1#X# 33.177024841#Y# 96.532890320#Z# -0.000000000#O# 62.483417511#END#',0,'2007-05-11 15:57:09'),('Elw00d','Erag the Bar Room Brawler','LastLoc','#A#rouml1a31s1#X# 23.734361649#Y# 29.338439941#Z# -0.000000000#O# 182.375457764#END#',0,'2007-05-11 15:32:26'),('Elw00d','Erag the Bar Room Brawler','roum_journal','HiveMotherQuest >1 |',0,'2007-05-10 19:49:16'),('Elw00d','Erag the Steiner','BrazierCharges','0',0,'2007-06-10 12:00:35'),('Elw00d','Erag the Steiner','LastDiedLoc','#A#rouml1a30s1#X# 43.836681366#Y# 84.646118164#Z# 0.000000034#O# 353.218627930#END#',0,'2007-06-10 11:49:21'),('Elw00d','Erag the Steiner','LastLoc','#A#rouml1a30s1#X# 74.766342163#Y# 110.036560059#Z# -0.000000000#O# 242.062774658#END#',0,'2007-06-10 12:00:42'),('Elw00d','Erag the Steiner','roum_journal','HiveMotherQuest >2 |',0,'2007-06-09 19:02:31'),('Elw00d','Rek','BrazierCharges','0',0,'2007-06-27 18:55:02'),('Elw00d','Rek','BrazierType','0',0,'2007-06-20 19:48:47'),('Elw00d','Rek','LastDiedLoc','#A#rouml1a31s1#X# 149.747970581#Y# 97.792228699#Z# 0.000000021#O# 86.990783691#END#',0,'2007-06-27 18:40:56'),('Elw00d','Rek','LastLoc','#A#rouml1a32#X# 39.356388092#Y# 104.993499756#Z# -0.000000000#O# 7.501200199#END#',0,'2007-06-27 18:55:09'),('Elw00d','Rek','roum_journal','HiveMotherQuest >2 |',0,'2007-06-20 20:52:37'),('Elw00d','Suppi','BrazierCharges','0',0,'2007-06-09 23:34:57'),('Elw00d','Suppi','BrazierType','0',0,'2007-05-16 18:22:05'),('Elw00d','Suppi','LastDiedLoc','#A#rouml1a27#X# 186.957778931#Y# 39.845123291#Z# -0.000000000#O# 109.663040161#END#',0,'2007-05-18 01:18:41'),('Elw00d','Suppi','LastLoc','#A#rouml1a32#X# 94.081451416#Y# 147.384887695#Z# -0.000000000#O# 346.501251221#END#',0,'2007-06-09 23:29:04'),('Elw00d','Suppi','roum_journal','HiveMotherQuest >2 |',0,'2007-05-17 18:19:18'),('Elw00d','Suppi but some call me tim','Bleeding','0',0,'2007-05-16 18:47:30'),('Elw00d','Suppi but some call me tim','Dead','1',0,'2007-05-16 18:43:59'),('Elw00d','Suppi but some call me tim','LastDiedLoc','#A#roumgaunta1#X# 38.818721771#Y# 158.692840576#Z# -0.000000000#O# 89.999992371#END#',0,'2007-05-16 18:47:21'),('Elw00d','Teli','BrazierCharges','0',0,'2007-08-24 20:10:52'),('Elw00d','Teli','BrazierType','0',0,'2007-05-18 13:10:22'),('Elw00d','Teli','LastDiedLoc','#A#rouml1a4#X# 190.605789185#Y# 258.494293213#Z# -0.000000000#O# 5.027344704#END#',0,'2007-08-31 13:48:02'),('Elw00d','Teli','LastLoc','#A#rouml1a4#X# 190.605789185#Y# 258.494293213#Z# -0.000000000#O# 39.279850006#END#',0,'2007-08-24 20:04:29'),('Elw00d','Teli','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-05-21 22:01:11'),('Elw00d','The Turned','BrazierCharges','0',0,'2007-09-03 10:59:04'),('Elw00d','The Turned','LastDiedLoc','#A#rouml1a31#X# 64.806900024#Y# 65.514152527#Z# -0.000000000#O# 148.588226318#END#',0,'2007-09-03 10:51:19'),('Elw00d','The Turned','LastLoc','#A#rouml1a31#X# 93.905570984#Y# 22.028062820#Z# -0.000000000#O# 274.609588623#END#',0,'2007-09-03 10:49:35'),('Elw00d','The Turned','roum_journal','HiveMotherQuest >1 |',0,'2007-09-03 10:43:35'),('Elw00d','TheTurned','BrazierCharges','0',0,'2007-06-30 20:31:19'),('Elw00d','TheTurned','BrazierType','0',0,'2007-06-30 18:09:47'),('Elw00d','TheTurned','LastDiedLoc','#A#rouml1a30#X# 104.996902466#Y# 99.593925476#Z# -0.000000000#O# 29.213781357#END#',0,'2007-06-30 20:24:41'),('Elw00d','TheTurned','LastLoc','#A#rouml1a30#X# 123.822837830#Y# 60.543422699#Z# -0.000000000#O# 44.927608490#END#',0,'2007-06-30 20:28:15'),('Elw00d','TheTurned','roum_journal','HiveMotherQuest >2 |',0,'2007-06-30 19:48:10'),('Eman219','Emann','BrazierCharges','1',0,'2007-07-07 16:54:44'),('Eman219','Emann','BrazierType','0',0,'2007-07-07 16:54:44'),('Eman219','ewite sie','Bleeding','0',0,'2007-07-08 07:34:44'),('Eman219','ewite sie','BrazierCharges','1',0,'2007-07-08 07:10:49'),('Eman219','ewite sie','BrazierType','0',0,'2007-07-08 07:10:49'),('Eman219','ewite sie','Dead','1',0,'2007-07-08 07:34:36'),('Eman219','ewite sie','LastDiedLoc','#A#rouml1a3#X# 148.515380859#Y# 33.083969116#Z# 0.000000012#O# 305.678527832#END#',0,'2007-07-08 07:34:36'),('Eman219','ewite sie','LastLoc','#A#rouml1a6s1#X# 10.962630272#Y# 15.022483826#Z# -0.000000000#O# 300.302337646#END#',0,'2007-07-08 07:31:02'),('enriquesan7','Naturus Lovarus','BrazierCharges','0',0,'2007-05-26 19:13:09'),('enriquesan7','Naturus Lovarus','BrazierType','0',0,'2007-05-26 18:41:57'),('enriquesan7','Naturus Lovarus','LastDiedLoc','#A#rouml1a31#X# 184.945739746#Y# 146.604797363#Z# -0.000000000#O# 314.717834473#END#',0,'2007-05-26 19:01:35'),('enriquesan7','Naturus Lovarus','LastLoc','#A#rouml1a32#X# 64.930755615#Y# 85.059593201#Z# -0.000000000#O# 225.478607178#END#',0,'2007-05-26 19:13:16'),('enriquesan7','Naturus Lovarus','roum_journal','HiveMotherQuest >1 |',0,'2007-05-26 18:45:10'),('EoghanThyBlessed','Eoghan De Danann','BrazierCharges','0',0,'2007-09-09 19:01:49'),('EoghanThyBlessed','Eoghan De Danann','BrazierType','0',0,'2007-06-23 04:55:59'),('EoghanThyBlessed','Eoghan De Danann','LastDiedLoc','#A#roumstara2#X# 78.226287842#Y# 6.035955906#Z# 0.000000030#O# 30.263839722#END#',0,'2007-09-02 02:12:32'),('EoghanThyBlessed','Eoghan De Danann','LastLoc','#A#rouml1a32#X# 186.316513062#Y# 92.080116272#Z# -0.000000000#O# 304.199218750#END#',0,'2007-09-09 04:18:37'),('EoghanThyBlessed','Eoghan De Danann','roum_journal','HiveMotherQuest >2 |',0,'2007-06-23 08:38:27'),('EoghanThyBlessed','Eoghan Ulien','BrazierCharges','0',0,'2007-09-17 03:17:20'),('EoghanThyBlessed','Eoghan Ulien','BrazierType','0',0,'2007-09-07 07:15:06'),('EoghanThyBlessed','Eoghan Ulien','LastDiedLoc','#A#rouml1a29#X# 49.349071503#Y# 163.160980225#Z# 0.000000000#O# 93.724182129#END#',0,'2007-09-17 03:29:44'),('EoghanThyBlessed','Eoghan Ulien','LastLoc','#A#rouml1a29#X# 243.414443970#Y# 21.506475449#Z# 0.000000087#O# 33.333702087#END#',0,'2007-09-17 03:14:19'),('EoghanThyBlessed','Eoghan Ulien','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-09-12 04:01:47'),('EoghanThyBlessed','Eowarar Jr\'eine','BrazierCharges','0',0,'2007-09-04 22:28:33'),('EoghanThyBlessed','Eowarar Jr\'eine','BrazierType','0',0,'2007-08-23 02:57:41'),('EoghanThyBlessed','Eowarar Jr\'eine','LastDiedLoc','#A#rouml1a31s1#X# 54.150665283#Y# 104.708206177#Z# 0.000000136#O# 75.443275452#END#',0,'2007-09-04 21:15:38'),('EoghanThyBlessed','Eowarar Jr\'eine','LastLoc','#A#rouml1a31#X# 140.016632080#Y# 44.995456696#Z# 0.000000152#O# 214.345428467#END#',0,'2007-09-04 22:27:58'),('EoghanThyBlessed','Eowarar Jr\'eine','roum_journal','HiveMotherQuest >1 |DargothQuest >1 |',0,'2007-08-30 04:43:54'),('EoghanThyBlessed','Grirbag Rungen','BrazierCharges','0',0,'2007-06-28 05:22:54'),('EoghanThyBlessed','Grirbag Rungen','BrazierType','0',0,'2007-06-23 20:34:49'),('EoghanThyBlessed','Grirbag Rungen','LastDiedLoc','#A#rouml1a31#X# 65.266540527#Y# 106.033409119#Z# -0.000000000#O# 54.470214844#END#',0,'2007-06-28 05:18:27'),('EoghanThyBlessed','Grirbag Rungen','LastLoc','#A#rouml1a31#X# 65.940467834#Y# 106.316291809#Z# -0.000000000#O# 10.225607872#END#',0,'2007-06-28 05:23:08'),('EoghanThyBlessed','Grirbag Rungen','roum_journal','HiveMotherQuest >1 |',0,'2007-06-23 20:38:13'),('EoghanThyBlessed','Kynan Kinnane','Bleeding','1',0,'2007-08-21 21:28:48'),('EoghanThyBlessed','Kynan Kinnane','BrazierCharges','0',0,'2007-08-21 21:21:19'),('EoghanThyBlessed','Kynan Kinnane','BrazierType','0',0,'2007-08-13 06:26:00'),('EoghanThyBlessed','Kynan Kinnane','LastDiedLoc','#A#rouml1a30#X# 147.405426025#Y# 184.626190186#Z# -0.000000000#O# 202.093887329#END#',0,'2007-08-21 20:29:11'),('EoghanThyBlessed','Kynan Kinnane','LastLoc','#A#rouml1a30#X# 104.353706360#Y# 155.806304932#Z# 0.000000000#O# 221.639541626#END#',0,'2007-08-21 21:05:16'),('EoghanThyBlessed','Kynan Kinnane','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-08-18 06:47:50'),('Excalibur1','Dith Praan','BrazierCharges','0',0,'2007-07-27 19:36:32'),('Excalibur1','Dith Praan','BrazierType','0',0,'2007-05-11 19:48:07'),('Excalibur1','Dith Praan','LastDiedLoc','#A#rouml1a24s1#X# 43.062885284#Y# 99.194389343#Z# 0.000000034#O# 40.878246307#END#',0,'2007-07-18 18:48:05'),('Excalibur1','Dith Praan','LastLoc','#A#rouml1a15#X# 248.666839600#Y# 142.847778320#Z# 0.000000000#O# 117.189178467#END#',0,'2007-07-27 19:36:40'),('Excalibur1','Dith Praan','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-05-27 19:35:06'),('Excalibur1','Elric','BrazierCharges','0',0,'2007-07-26 18:29:45'),('Excalibur1','Elric','BrazierType','0',0,'2007-07-11 19:37:05'),('Excalibur1','Elric','LastDiedLoc','#A#rouml1a12#X# 209.975372314#Y# 37.936897278#Z# -0.000000000#O# 180.902969360#END#',0,'2007-07-26 18:32:22'),('Excalibur1','Elric','LastLoc','#A#rouml1a12#X# 243.882690430#Y# 22.476013184#Z# 0.000000044#O# 179.355926514#END#',0,'2007-07-26 18:29:52'),('Excalibur1','Elric','roum_journal','HiveMotherQuest >2 |DargothQuest >1 |',0,'2007-07-16 18:46:10'),('Ezekiel','Fing Welteel','BrazierCharges','1',0,'2007-05-15 16:15:13'),('Ezekiel','Fing Welteel','BrazierType','0',0,'2007-05-15 16:15:13'),('Ezekiel','Fing Welteel','Dead','1',0,'2007-05-15 16:23:42'),('Ezekiel','Fing Welteel','LastDiedLoc','#A#rouml1a3#X# 80.715202332#Y# 50.694026947#Z# 0.000000040#O# 174.376556396#END#',0,'2007-05-15 16:23:42'),('Ezekiel','Vrogdush','BrazierCharges','0',0,'2007-05-17 06:58:46'),('Ezekiel','Vrogdush','BrazierType','0',0,'2007-05-17 06:42:45'),('Ezekiel','Vrogdush','Dead','1',0,'2007-05-17 07:10:36'),('Ezekiel','Vrogdush','LastDiedLoc','#A#rouml1a31#X# 182.345001221#Y# 233.863006592#Z# 0.000000103#O# 24.453161240#END#',0,'2007-05-17 07:10:36'),('Ezekiel','Vrogdush','LastLoc','#A#rouml1a31#X# 95.495552063#Y# 26.952705383#Z# 0.000000147#O# 171.833450317#END#',0,'2007-05-17 07:06:32'),('Ezekiel','Vrogdush','roum_journal','HiveMotherQuest >1 |',0,'2007-05-17 06:55:28'),('Ezekiel','Zybit\'e','BrazierCharges','1',0,'2007-05-15 16:01:14'),('Ezekiel','Zybit\'e','BrazierType','0',0,'2007-05-15 16:01:14'),('Ezekiel','Zybit\'e','Dead','1',0,'2007-05-15 20:03:13'),('Ezekiel','Zybit\'e','LastDiedLoc','#A#rouml1a31#X# 124.825210571#Y# 14.278918266#Z# 0.000000025#O# 172.169418335#END#',0,'2007-05-15 20:03:13'),('Ezekiel','Zybit\'e','LastLoc','#A#rouml1a31#X# 129.700607300#Y# 14.323835373#Z# -0.000000000#O# 313.436309814#END#',0,'2007-05-15 19:59:17'),('F451','Kessa Dall','BrazierCharges','0',0,'2007-06-12 04:44:58'),('F451','Kessa Dall','BrazierType','0',0,'2007-06-06 19:13:46'),('F451','Kessa Dall','LastDiedLoc','#A#rouml1a31#X# 67.468261719#Y# 184.411911011#Z# -0.000000000#O# 116.799392700#END#',0,'2007-06-14 21:22:12'),('F451','Kessa Dall','LastLoc','#A#rouml1a31#X# 93.429893494#Y# 31.858739853#Z# -0.000000000#O# 85.465690613#END#',0,'2007-06-14 21:19:05'),('F451','Kessa Dall','roum_journal','HiveMotherQuest >1 |',0,'2007-06-06 19:20:26'),('Fell Brutal','Cherrie-Belle Brutal','Bleeding','1',0,'2007-08-28 20:53:03'),('Fell Brutal','Cherrie-Belle Brutal','BrazierCharges','0',0,'2007-08-28 20:54:25'),('Fell Brutal','Cherrie-Belle Brutal','BrazierType','0',0,'2007-05-08 21:39:03'),('Fell Brutal','Cherrie-Belle Brutal','LastDiedLoc','#A#rouml1a10s1#X# 63.518676758#Y# 75.188919067#Z# 0.000000034#O# 183.498886108#END#',0,'2007-08-28 20:04:59'),('Fell Brutal','Cherrie-Belle Brutal','LastLoc','#A#rouml1a10s2#X# 58.171646118#Y# 61.398124695#Z# 0.000000070#O# 111.312187195#END#',0,'2007-08-28 19:48:51'),('Fell Brutal','Cherrie-Belle Brutal','roum_journal','HiveMotherQuest >2 |',0,'2007-05-13 13:32:00'),('Fell Brutal','Cloak Brutal','BrazierCharges','1',0,'2007-05-12 12:53:35'),('Fell Brutal','Cloak Brutal','BrazierType','0',0,'2007-05-12 12:53:35'),('Fell Brutal','Cloak Brutal','LastLoc','#A#dmhome#X# 60.014862061#Y# 60.575237274#Z# -0.000000000#O# 295.457489014#END#',0,'2007-06-03 19:30:58'),('Fell Brutal','Garrick Oakspear','LastLoc','#A#rouml1a1s2#X# 101.016700745#Y# 31.698118210#Z# -0.000000000#O# 204.874938965#END#',0,'2007-06-27 21:34:20'),('Fell Brutal','Ruby Brutal','BrazierCharges','0',0,'2007-08-28 18:53:11'),('Fell Brutal','Ruby Brutal','BrazierType','0',0,'2007-05-27 13:42:25'),('Fell Brutal','Ruby Brutal','LastDiedLoc','#A#rouml1a30s1#X# 67.711654663#Y# 63.819511414#Z# 0.000000059#O# 90.463493347#END#',0,'2007-08-26 15:17:58'),('Fell Brutal','Ruby Brutal','LastLoc','#A#rouml1a12#X# 283.503784180#Y# 62.525531769#Z# 0.000000065#O# 179.999984741#END#',0,'2007-09-09 12:01:46'),('Fell Brutal','Ruby Brutal','roum_journal','HiveMotherQuest >2 |',0,'2007-05-27 18:40:50'),('Fell Brutal','Stephanie','LastLoc','#A#rouml1a1s2#X# 220.290420532#Y# 86.733985901#Z# -0.000000000#O# 286.172546387#END#',0,'2007-06-27 21:20:59'),('fireboy502','jangjang','BrazierCharges','1',0,'2007-08-25 07:38:27'),('fireboy502','jangjang','BrazierType','0',0,'2007-08-25 07:38:27'),('fireboy502','legolas','Bleeding','1',0,'2007-07-28 11:09:45'),('fireboy502','legolas','BrazierCharges','0',0,'2007-07-28 10:25:08'),('fireboy502','legolas','BrazierType','0',0,'2007-07-28 09:56:50'),('fireboy502','legolas','LastLoc','#A#rouml1a29#X# 6.033093452#Y# 114.707260132#Z# -0.000000000#O# 202.518463135#END#',0,'2007-07-28 11:05:54'),('fireboy502','legolas','roum_journal','HiveMotherQuest >1 |',0,'2007-07-28 10:08:04'),('fireboy502','richard rahl','Bleeding','1',0,'2007-07-28 09:35:42'),('fireboy502','richard rahl','BrazierCharges','1',0,'2007-07-28 09:05:05'),('fireboy502','richard rahl','BrazierType','0',0,'2007-07-28 09:05:05'),('fireboy502','richard rahl','LastDiedLoc','#A#rouml1a31#X# 132.571975708#Y# 15.488158226#Z# -0.000000000#O# 227.186920166#END#',0,'2007-07-28 09:32:58'),('fireboy502','richard rahl','roum_journal','HiveMotherQuest >1 |',0,'2007-07-28 09:15:14'),('flusher','Fash Mactor','Bleeding','1',0,'2007-05-22 20:51:13'),('flusher','Fash Mactor','BrazierCharges','1',0,'2007-05-22 18:40:05'),('flusher','Fash Mactor','BrazierType','0',0,'2007-05-22 18:40:05'),('flusher','Fash Mactor','LastDiedLoc','#A#rouml1a30#X# 192.315460205#Y# 76.998764038#Z# -0.000000000#O# 260.769531250#END#',0,'2007-05-22 20:41:08'),('flusher','Fash Mactor','LastLoc','#A#rouml1a31#X# 9.475175858#Y# 12.572078705#Z# 0.000000101#O# 254.953872681#END#',0,'2007-05-22 19:43:11'),('flusher','Langdon Flush','BrazierCharges','0',0,'2007-05-15 20:00:44'),('flusher','Langdon Flush','BrazierType','0',0,'2007-05-14 19:44:20'),('flusher','Langdon Flush','LastDiedLoc','#A#rouml1a31#X# 155.546722412#Y# 242.043914795#Z# 0.000000048#O# 196.503982544#END#',0,'2007-05-15 21:23:43'),('flusher','Langdon Flush','LastLoc','#A#rouml1a31#X# 156.138381958#Y# 64.681526184#Z# -0.000000000#O# 163.930374146#END#',0,'2007-05-15 21:04:17'),('freemanure','Brock','BrazierCharges','1',0,'2007-06-26 13:32:12'),('freemanure','Brock','BrazierType','0',0,'2007-06-26 13:32:12'),('freemanure','Gordo','BrazierCharges','1',0,'2007-06-20 19:22:44'),('freemanure','Gordo','BrazierType','0',0,'2007-06-20 19:22:44'),('freemanure','Granny','BrazierCharges','0',0,'2007-06-17 21:39:38'),('freemanure','Granny','BrazierType','0',0,'2007-05-09 17:00:53'),('freemanure','Granny','LastDiedLoc','#A#rouml1a31#X# 90.608764648#Y# 31.796491623#Z# 0.000000086#O# 169.274566650#END#',0,'2007-06-16 11:54:22'),('freemanure','Granny','LastLoc','#A#rouml1a32#X# 99.834968567#Y# 79.958114624#Z# -0.000000000#O# 147.470672607#END#',0,'2007-06-17 21:42:39'),('freemanure','Granny','roum_journal','HiveMotherQuest >2 |',0,'2007-05-31 18:11:37'),('freemanure','Lotus','BrazierCharges','0',0,'2007-06-27 08:01:39'),('freemanure','Lotus','BrazierType','0',0,'2007-06-26 06:40:18'),('freemanure','Lotus','LastDiedLoc','#A#rouml1a31#X# 94.792610168#Y# 29.496765137#Z# -0.000000000#O# 277.567749023#END#',0,'2007-06-26 07:41:36'),('freemanure','Lotus','LastLoc','#A#rouml1a32#X# 115.729034424#Y# 141.268417358#Z# 0.000000014#O# 250.279602051#END#',0,'2007-06-27 08:02:08'),('freemanure','Lotus','roum_journal','HiveMotherQuest >1 |',0,'2007-06-26 06:44:05'),('freemanure','Lu Hsun','BrazierCharges','0',0,'2007-07-03 22:14:17'),('freemanure','Lu Hsun','BrazierType','0',0,'2007-05-09 18:08:18'),('freemanure','Lu Hsun','LastDiedLoc','#A#rouml1a11s1#X# 30.086244583#Y# 238.045394897#Z# -0.000000000#O# 287.925354004#END#',0,'2007-07-04 08:16:57'),('freemanure','Lu Hsun','LastLoc','#A#rouml1a11s1#X# 29.798164368#Y# 238.935958862#Z# -0.000000000#O# 109.123664856#END#',0,'2007-07-03 22:14:26'),('freemanure','Lu Hsun','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-05-21 22:07:43'),('freemanure','Mem-noc','Bleeding','1',0,'2007-09-15 05:45:28'),('freemanure','Mem-noc','BrazierCharges','1',0,'2007-09-15 05:39:16'),('freemanure','Mem-noc','BrazierType','0',0,'2007-09-15 05:39:16'),('freemanure','Mem-noc','roum_journal','HiveMotherQuest >1 |',0,'2007-09-15 05:42:49'),('freemanure','Mo Tzu','BrazierCharges','1',0,'2007-05-09 17:45:34'),('freemanure','Mo Tzu','BrazierType','0',0,'2007-05-09 17:45:34'),('freemanure','Red Sofya','BrazierCharges','0',0,'2007-07-02 19:45:14'),('freemanure','Red Sofya','BrazierType','0',0,'2007-06-22 19:47:37'),('freemanure','Red Sofya','LastDiedLoc','#A#rouml1a30#X# 104.967506409#Y# 39.261848450#Z# -0.000000000#O# 243.994964600#END#',0,'2007-07-02 20:23:06'),('freemanure','Red Sofya','LastLoc','#A#rouml1a30#X# 109.257705688#Y# 92.990524292#Z# -0.000000000#O# 17.828590393#END#',0,'2007-07-02 20:26:28'),('freemanure','Red Sofya','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-06-26 19:56:58'),('freemanure','Shao Li','Bleeding','0',0,'2007-06-22 19:39:45'),('freemanure','Shao Li','BrazierCharges','0',0,'2007-05-29 09:41:41'),('freemanure','Shao Li','BrazierType','0',0,'2007-05-09 17:31:59'),('freemanure','Shao Li','Dead','1',0,'2007-06-22 19:38:16'),('freemanure','Shao Li','LastDiedLoc','#A#rouml1a30#X# 154.530914307#Y# 37.740581512#Z# -0.000000000#O# 175.589721680#END#',0,'2007-06-22 19:38:16'),('freemanure','Shao Li','LastLoc','#A#rouml1a30#X# 153.538482666#Y# 30.871448517#Z# 0.000000037#O# 319.368896484#END#',0,'2007-06-22 19:31:32'),('freemanure','Shao Li','roum_journal','HiveMotherQuest >1 |',0,'2007-05-22 08:05:37'),('frodowasaparanoidgnome','Attula Teh Hin','BrazierCharges','0',0,'2007-05-28 04:16:13'),('frodowasaparanoidgnome','Attula Teh Hin','BrazierType','0',0,'2007-05-10 09:10:23'),('frodowasaparanoidgnome','Attula Teh Hin','LastDiedLoc','#A#rouml1a26#X# 47.568634033#Y# 166.496078491#Z# -0.000000000#O# 111.653602600#END#',0,'2007-05-28 04:37:24'),('frodowasaparanoidgnome','Attula Teh Hin','LastLoc','#A#rouml1a31#X# 239.881500244#Y# 215.577545166#Z# 0.000000107#O# 184.168746948#END#',0,'2007-05-12 07:05:29'),('frodowasaparanoidgnome','Attula Teh Hin','roum_journal','HiveMotherQuest >1 |',0,'2007-05-10 09:14:45'),('frodowasaparanoidgnome','Butterbinger Borkenbong','BrazierCharges','0',0,'2007-07-04 06:07:07'),('frodowasaparanoidgnome','Butterbinger Borkenbong','BrazierType','0',0,'2007-05-10 09:08:36'),('frodowasaparanoidgnome','Butterbinger Borkenbong','LastDiedLoc','#A#rouml1a10s1#X# 58.087516785#Y# 60.874015808#Z# 0.000000047#O# 74.501159668#END#',0,'2007-06-17 07:53:43'),('frodowasaparanoidgnome','Butterbinger Borkenbong','LastLoc','#A#rouml1a10#X# 82.529739380#Y# 240.061035156#Z# -0.000000000#O# 329.033020020#END#',0,'2007-07-04 05:57:25'),('frodowasaparanoidgnome','Butterbinger Borkenbong','roum_journal','HiveMotherQuest >2 |',0,'2007-05-13 05:25:58'),('frodowasaparanoidgnome','Doinknar Dadonkadonk','BrazierCharges','0',0,'2007-08-12 08:57:47'),('frodowasaparanoidgnome','Doinknar Dadonkadonk','BrazierType','0',0,'2007-07-07 08:15:27'),('frodowasaparanoidgnome','Doinknar Dadonkadonk','LastDiedLoc','#A#rouml1a30s1#X# 31.979547501#Y# 74.955650330#Z# -0.000000000#O# 346.684082031#END#',0,'2007-07-15 13:38:32'),('frodowasaparanoidgnome','Doinknar Dadonkadonk','LastLoc','#A#rouml1a11s1#X# 38.332138062#Y# 236.305358887#Z# -0.000000000#O# 217.207748413#END#',0,'2007-08-12 08:57:53'),('frodowasaparanoidgnome','Doinknar Dadonkadonk','roum_journal','HiveMotherQuest >2 |DargothQuest >1 |',0,'2007-07-08 08:33:18'),('frodowasaparanoidgnome','Smooph Spaminnekan','BrazierCharges','0',0,'2007-06-16 13:40:58'),('frodowasaparanoidgnome','Smooph Spaminnekan','BrazierType','0',0,'2007-06-03 08:58:32'),('frodowasaparanoidgnome','Smooph Spaminnekan','LastDiedLoc','#A#rouml1a12s1#X# 8.790035248#Y# 19.475618362#Z# -0.000000000#O# 196.272735596#END#',0,'2007-06-10 13:45:58'),('frodowasaparanoidgnome','Smooph Spaminnekan','LastLoc','#A#rouml1a26#X# 12.304174423#Y# 13.483740807#Z# -0.000000000#O# 203.443878174#END#',0,'2007-06-11 10:53:38'),('frodowasaparanoidgnome','Smooph Spaminnekan','roum_journal','HiveMotherQuest >2 |',0,'2007-06-09 12:20:57'),('gailian',' Gailian','BrazierCharges','0',0,'2007-09-15 07:42:05'),('gailian',' Gailian','LastDiedLoc','#A#rouml1a29#X# 4.973181248#Y# 122.222999573#Z# -0.000000000#O# 93.620681763#END#',0,'2007-08-26 19:12:19'),('gailian',' Gailian','LastLoc','#A#rouml1a31#X# 157.674545288#Y# 16.540451050#Z# -0.000000000#O# 356.069946289#END#',0,'2007-09-15 07:42:18'),('gailian','Elriling','BrazierCharges','0',0,'2007-08-20 22:00:38'),('gailian','Elriling','BrazierType','0',0,'2007-06-10 09:56:53'),('gailian','Elriling','LastDiedLoc','#A#rouml1a6#X# 170.372055054#Y# 228.621673584#Z# -0.000000000#O# 263.132659912#END#',0,'2007-08-20 20:06:05'),('gailian','Elriling','LastLoc','#A#rouml1a3#X# 69.705718994#Y# 182.146560669#Z# 0.000000006#O# 346.825042725#END#',0,'2007-08-20 21:50:04'),('gailian','Elriling','roum_journal','HiveMotherQuest >2 |',0,'2007-07-15 08:58:54'),('gailian','gailian shurfordge','BrazierCharges','0',0,'2007-06-10 09:50:19'),('gailian','gailian shurfordge','BrazierType','0',0,'2007-05-16 08:00:57'),('gailian','gailian shurfordge','LastDiedLoc','#A#rouml1a31s1#X# 149.322387695#Y# 115.777839661#Z# 0.000000019#O# 282.276428223#END#',0,'2007-05-27 15:52:23'),('gailian','gailian shurfordge','LastLoc','#A#rouml1a32#X# 56.418388367#Y# 75.941963196#Z# -0.000000000#O# 217.252258301#END#',0,'2007-06-10 09:50:26'),('gailian','Glewiel','BrazierCharges','0',0,'2007-09-18 10:43:24'),('gailian','Glewiel','BrazierType','0',0,'2007-05-27 15:37:05'),('gailian','Glewiel','LastDiedLoc','#A#rouml1a30#X# 189.968460083#Y# 208.475341797#Z# -0.000000000#O# 303.668518066#END#',0,'2007-09-18 10:58:09'),('gailian','Glewiel','LastLoc','#A#rouml1a26#X# 261.335174561#Y# 175.858963013#Z# 0.000000116#O# 3.809707165#END#',0,'2007-09-18 10:29:45'),('gailian','Glewiel','roum_it_lvl1home1_wand!IsActive','1',0,'2007-09-18 10:59:33'),('gailian','Glewiel','roum_journal','HiveMotherQuest >2 |DargothQuest >2 |',0,'2007-09-10 16:58:45'),('gailian','Gohan son','Bleeding','0',0,'2007-07-09 19:29:17'),('gailian','Gohan son','BrazierCharges','0',0,'2007-07-09 18:47:43'),('gailian','Gohan son','BrazierType','0',0,'2007-07-07 12:37:56'),('gailian','Gohan son','Dead','1',0,'2007-07-09 19:29:12'),('gailian','Gohan son','LastDiedLoc','#A#rouml1a12#X# 171.214065552#Y# 37.692905426#Z# 0.000000028#O# 309.354370117#END#',0,'2007-07-09 19:29:12'),('gailian','Gohan son','LastLoc','#A#rouml1a31#X# 123.050964355#Y# 94.970596313#Z# -0.000000000#O# 215.428741455#END#',0,'2007-07-09 18:47:51'),('gailian','Gohan son','roum_journal','HiveMotherQuest >1 |',0,'2007-07-08 15:47:23'),('gailian','Peredoc Tigsid','BrazierCharges','1',0,'2007-06-06 09:25:19'),('gailian','Peredoc Tigsid','BrazierType','0',0,'2007-06-06 09:25:19'),('gailian','pidleyfinks','BrazierCharges','1',0,'2007-06-30 12:27:55'),('gailian','pidleyfinks','BrazierType','0',0,'2007-06-30 12:27:55'),('gailian','The Witch doctor','BrazierCharges','0',0,'2007-06-07 11:08:23'),('gailian','Torrellian Millithar','BrazierCharges','0',0,'2007-06-07 10:56:01'),('gailian','Torrellian Millithar','BrazierType','0',0,'2007-05-08 22:48:34'),('gailian','Torrellian Millithar','LastDiedLoc','#A#rouml1a33#X# 276.418426514#Y# 60.271072388#Z# 0.000000006#O# 309.835662842#END#',0,'2007-06-06 14:53:12'),('gailian','Torrellian Millithar','LastLoc','#A#rouml1a3#X# 214.255950928#Y# 91.501678467#Z# 0.000000009#O# 80.176406860#END#',0,'2007-06-07 10:56:07'),('gailian','Torrellian Millithar','roum_journal','HiveMotherQuest >2 |',0,'2007-05-11 22:15:24'),('gailian','Tucherby','BrazierCharges','0',0,'2007-08-20 18:42:37'),('gailian','Tucherby','BrazierType','0',0,'2007-08-20 18:35:39'),('gailian','Tucherby','LastLoc','#A#rouml1a31#X# 91.203155518#Y# 25.486351013#Z# -0.000000000#O# 146.870132446#END#',0,'2007-08-20 18:42:46'),('gailian','Woscha Badfinger','Bleeding','1',0,'2007-09-04 16:22:15'),('gailian','Woscha Badfinger','BrazierCharges','0',0,'2007-09-04 16:19:57'),('gailian','Woscha Badfinger','BrazierType','0',0,'2007-09-04 14:07:05'),('gailian','Woscha Badfinger','LastLoc','#A#rouml1a31#X# 166.139404297#Y# 20.
Back to top
View user's profile Send private message Visit poster's website
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Wed Nov 21, 2007 20:30    Post subject: Reply with quote

Quote:

/*Data for the table `quest_player_status` */

insert into `quest_player_status`(`quest_id`,`player_name`,`character_name`,`started_flag`,`completed_flag`,`start_date`,`assignment_1`,`assignment_2`,`assignment_3`,`assignment_4`,`assignment_5`,`assignment_6`,`a_status_1`,`a_status_2`,`a_status_3`,`a_status_4`,`a_status_5`,`a_status_6`) values (666,'AuraoftheFlame','Haley','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'AuraoftheFlame','Narishma','T','F',0,'KILL_esq_orc_trainee','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(666,'DeadWarlock','Grimmstone','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Donteric','Retch','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Donteric','Smith','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'DragonsBane','Lolipop','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Elw00d','Erag Steinfist','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Elw00d','Erag Steinfist Ceiling Inspector','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Elw00d','Teli','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'EoghanThyBlessed','Eoghan Ulien','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'EoghanThyBlessed','Kynan Kinnane','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Excalibur1','Dith Praan','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Excalibur1','Elric','T','F',0,'KILL_esq_orc_trainee','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(666,'freemanure','Lu Hsun','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'freemanure','Red Sofya','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'frodowasaparanoidgnome','Doinknar Dadonkadonk','T','F',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'gailian','Glewiel','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Justice-','Justice-','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'kmfdmike101','Brune Jr','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'lonewolfnz','Ceridan','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'lonewolfnz','Vandros','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Lord_Damien_666','Madison','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Lord_Damien_666','Spartan','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Nate_R','Damien','T','F',0,'KILL_esq_orc_trainee','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(666,'Nate_R','Jondor','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Nate_R','Krisha','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Nate_R','Selene','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'p3t3rv','Dradoc','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'p3t3rv','Dram','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'p3t3rv','Ronan Swift','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Phantom_X5','Valinor Raiylin','T','F',0,'KILL_esq_orc_trainee','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(666,'Phantom_X5','Zurkoldur Siadoth','T','T',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(666,'Rothgar777','Nexill','T','F',0,'KILL_esq_orc_trainee','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'--Vlad--','Kala','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'alain123','Gaath','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Alexanderum2','Darathen Erelesste','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'amanitamuscaria','Aylar','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'amanitamuscaria','Marine Klensbane','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Andrew922','Oompa Loompa','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'anito galeta','Tutù','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Anjelic','Anjel Heart','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Anjelic','Anjelic Dreams','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Archmage2k','Kashan','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Archmage2k','Mard','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Archmage2k','Timo Fenthur','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'AuraoftheFlame','Allie','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'AuraoftheFlame','Alric','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'AuraoftheFlame','Anelad','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'AuraoftheFlame','Haley','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'AuraoftheFlame','Ishilner','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'B T K','Renbas Darkbeard','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Balinor Lyonsbane','Leanna Dykstra','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'BrikZ','Aesmith','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'buaasunny','kaka xyz','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'cnix313','Kence Aylomein','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'cnix313','Pard','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'cnix313','Pard Marshby','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'coreythinks','Rodor','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'D-VRiP','Valen','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Dane Bramage','Tengol Oakenshield','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DarkraiderX','Boppi Rusten','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DarkraiderX','Mert Notten','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DarkStar27909','Franz Addams','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DeadWarlock','Grimmstone','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'DeadWarlock','Sly','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DeanMichael','Loki','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DeputyDoggz','Loki Thorvald','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DeputyDoggz','Zeroxaenna Wytchona','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DivineHonor','Valeron Brightblade','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Dlareh','Glarin Nubin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Donteric','Retch','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Donteric','Smith','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'doomfetus','Bonk','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DragonsBane','Dragonsbane','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DragonsBane','Drake','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'DragonsBane','Kebur Bane','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'DragonsBane','Lolipop','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'drathius4evr','Delnor Meine','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'drathius4evr','Martera Varathar','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Dumascain','Armonde Andraste','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Erag','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Erag the Bar Room Brawler','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Erag the Steiner','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Rek','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Suppi','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','Teli','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','The Turned','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Elw00d','TheTurned','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'enriquesan7','Naturus Lovarus','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'EoghanThyBlessed','Eoghan De Danann','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'EoghanThyBlessed','Eoghan Ulien','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'EoghanThyBlessed','Grirbag Rungen','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'EoghanThyBlessed','Kynan Kinnane','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Excalibur1','Dith Praan','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Excalibur1','Elric','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Ezekiel','Vrogdush','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'F451','Kessa Dall','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Fell Brutal','Cherrie-Belle Brutal','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Fell Brutal','Ruby Brutal','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'fireboy502','legolas','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'fireboy502','richard rahl','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Granny','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Lotus','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Lu Hsun','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Mem-noc','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Red Sofya','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'freemanure','Shao Li','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'frodowasaparanoidgnome','Attula Teh Hin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'frodowasaparanoidgnome','Butterbinger Borkenbong','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'frodowasaparanoidgnome','Doinknar Dadonkadonk','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'frodowasaparanoidgnome','Smooph Spaminnekan','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'gailian','Elriling','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'gailian','Glewiel','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'gailian','Gohan son','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'gailian','Torrellian Millithar','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'garjoh','Amelorin Nules','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'gnomishh','Lomion','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'gransazer','Darisa Lannall','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Gulli05','Drimin Rockskull','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'happytomeetya','Hermectus Draconis','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'InFINmous','Fin','T','F',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'jimbo1258','Ashanan Kross','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'joep95a','Murk Grack','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Justice-','+Justice+','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Justice-','-Justice-','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Justice-','Justice','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Justice-','Justice-','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Justice-','Kismet','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Kaniran','Radra Kain','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'kmfdmike101','Brune','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'kmfdmike101','Brune Jr','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Leevoth1','Waine Marchand','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Leevoth1','Watson','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Lockindal','Raeli Velune','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Calorfin','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Ceridan','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Shadamehr','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Valandus','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Valanthus','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Valros','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'lonewolfnz','Vandros','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Lord_Damien_666','Madison','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Lord_Damien_666','Spartan','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Lord_Damien_666','Zuurg','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Lunfal','Lun','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'LyricalLies','Tasha','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'m00nj0ck','Kelin Underlin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Magnum3.14159','Vargas','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'MalevolentRoy','Damon Shadowstalker','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Migg_dark','Mig Dark','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Mons Stormbringr','Mons Stormbringr','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Morenu','Grink','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'MrHuggies','Tian Long','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Name of us','Spades Mars','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Name of us','Spades Redralle','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Damien','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Earalia','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Erok','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Frodo Baggins','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Jondor','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Krisha','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Lia','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Sabel','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Selene','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Turrin Skullsplitter','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nate_R','Ward','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Nayte269','Lorick Ogrest','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Neverlag','Greenarrow','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'NewPoint','Hali','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'No Angel','Angel','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Novafury','Kylin Underlin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'NWN DM','Mert Kenden','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'obregon','Bongo Fury','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Ashard','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Auther Crafter','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Dradoc','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Dram','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Elvin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Mort','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Ronan Swift','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'p3t3rv','Shanu','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Anildur Swiftbow','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Feorn Norswulf','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Kala Sol','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Krog Ugor','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Sensa Bladebane','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Sensa Quickblade','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Shalia Tane','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Sira Spellsong','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Valinor Raiylin','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Vrok Gredak','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Zunildor Zamalkir','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Phantom_X5','Zurkoldur Siadoth','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'pocketdemons','Zimmosk','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'RagingChild','Merem Evinge','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'ravencrowz','Karmma','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'RoperLR','Viconis Benden','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Drognen','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Elirx','T','F',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Elrixx','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Hrothgar','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Najara','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Najaren','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Nexill','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Rothgar777','Rothgar','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'S0D4C','Thorin Drunkenbelt','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Setep','Roland','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Setep','Setep Deep','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'SiNiC','SiNiC','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'sirjay1966','Pab','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Solrune','Gryff Nightcrawler','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'Solrune','Mang Ashikoto','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'SOULAFIEN','Mothers Whipping Dog','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Tearulie','Bink','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'TheHodor2000','Eluldur Galuisurr','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Thiez','Josh Webber','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'thyfox','Celdur','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'thyfox','Nessa','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Tinweasele','Moondris','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Tri','Gabriel Winters','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'twinlights7','Cala Senneset','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'twinlights7','Tim The Enchanter','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'twinlights7','Trent The Barbarian','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'tyled123','Blade Dorfinpimp','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'T_Man_GS','Agustus Berel','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'Whimsie','Allasra Neren','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL),(1001,'WolfySS','Barristan Bennes','T','F',0,'KILL_gar_hivemother','','','','','',NULL,NULL,NULL,NULL,NULL,NULL),(1001,'ZeoRanger62','Justian DeLeonir','T','T',0,'KILL_gar_hivemother','','','','','','T',NULL,NULL,NULL,NULL,NULL);

/*Table structure for table `quest_ref` */

DROP TABLE IF EXISTS `quest_ref`;

CREATE TABLE `quest_ref` (
`quest_id` int(10) unsigned NOT NULL default '0',
`quest_name` varchar(128) NOT NULL default ' ',
`quest_description` varchar(256) default ' ',
`total_level_required` smallint(5) unsigned default NULL,
`repeatable` varchar(1) default ' ',
`max_level` smallint(5) unsigned default NULL,
`reward_xp` smallint(5) unsigned default NULL,
`reward_gold` smallint(5) unsigned default NULL,
`quest_enabled_flag` varchar(1) default ' ',
`journal_category_tag` varchar(128) default ' ',
`journal_start_entry` int(10) unsigned default NULL,
`journal_end_entry` int(10) unsigned default NULL,
`random_flag_qty` smallint(5) unsigned default NULL,
PRIMARY KEY (`quest_id`,`quest_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `quest_ref` */

insert into `quest_ref`(`quest_id`,`quest_name`,`quest_description`,`total_level_required`,`repeatable`,`max_level`,`reward_xp`,`reward_gold`,`quest_enabled_flag`,`journal_category_tag`,`journal_start_entry`,`journal_end_entry`,`random_flag_qty`) values (666,'Dargoths Orc Heads Quest','Dargoth wants to reward players for killing orcs and gathering their heads',5,'F',7,0,0,'T','DargothQuest',1,2,0),(1001,'Hive Mother Quest','Kill the Hive Mother and return with the item.',1,'F',4,1000,1000,'T','HiveMotherQuest',1,2,0);

/*Table structure for table `quest_required_alignments` */

DROP TABLE IF EXISTS `quest_required_alignments`;

CREATE TABLE `quest_required_alignments` (
`quest_id` int(10) unsigned NOT NULL default '0',
`alignment_name` varchar(128) NOT NULL default ' ',
`law_chaos_required` smallint(5) unsigned default NULL,
`good_evil_required` smallint(5) unsigned default NULL,
PRIMARY KEY (`quest_id`,`alignment_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `quest_required_alignments` */

/*Table structure for table `quest_required_classes` */

DROP TABLE IF EXISTS `quest_required_classes`;

CREATE TABLE `quest_required_classes` (
`quest_id` int(10) unsigned NOT NULL default '0',
`class` smallint(5) unsigned NOT NULL default '0',
`class_level_required` smallint(5) unsigned default NULL,
PRIMARY KEY (`quest_id`,`class`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `quest_required_classes` */

/*Table structure for table `quest_required_items_complete` */

DROP TABLE IF EXISTS `quest_required_items_complete`;

CREATE TABLE `quest_required_items_complete` (
`quest_id` int(10) unsigned NOT NULL default '0',
`object_tag` varchar(128) NOT NULL default ' ',
`quantity_required` smallint(5) unsigned default NULL,
`destroy_on_completion` varchar(1) default ' ',
`destroy_all_in_inventory` varchar(1) default NULL,
`xp_award_per_item` smallint(5) unsigned default NULL,
`gold_award_per_item` smallint(5) unsigned default NULL,
PRIMARY KEY (`quest_id`,`object_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `quest_required_items_complete` */

insert into `quest_required_items_complete`(`quest_id`,`object_tag`,`quantity_required`,`destroy_on_completion`,`destroy_all_in_inventory`,`xp_award_per_item`,`gold_award_per_item`) values (666,'esq_orc_head',10,'T','T',75,75),(1001,'roum_quest_1001_item',1,'T','T',0,0);

/*Table structure for table `quest_required_items_start` */

DROP TABLE IF EXISTS `quest_required_items_start`;

CREATE TABLE `quest_required_items_start` (
`quest_id` int(10) unsigned NOT NULL default '0',
`object_tag` varchar(128) NOT NULL default ' ',
`quantity_required` smallint(5) unsigned default NULL,
`destroy_on_start` varchar(1) default NULL,
PRIMARY KEY (`quest_id`,`object_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*Data for the table `quest_required_items_start` */

/*Table structure for table `quest_required_races` */

DROP TABLE IF EXISTS `quest_required_races`;

CREATE TABLE `quest_required_races` (
`quest_id` int(10) unsigned NOT NULL default '0',
`race_name` smallint(5) unsigned NOT NULL default '0',




We are heavly internally script driven , infact our server is playable as a pure hack n slash atm, without our DB. We are located at www.roum2.com, the database file continues on to define our quest system, our player ownable areas, and a working array. RoUM is seeking a scirpter (of any level), but from this site I need help just getting the database working. Plz any help will be gratefull , looks like I am a totally novice, as per the instructions recieved already have help me greatly Smile. I am of the opinion that since there are no error logs generating atm, that we are in a memory issue problem. My pagefile, and memory usage has been cranked since the mysql loaded as a service, but there is still no db accessable from the game.

Have dloaded a number of sql tutorials to view this weekend, not sure if this gonna help, if there is any tutorials you might recomend plz post em here....

Thanks everyone at www.nwnx.org



Brutal
www.roum2.com
[/quote]
Back to top
View user's profile Send private message Visit poster's website
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Mon Nov 26, 2007 2:55    Post subject: Reply with quote

Fast question...


our server b4 i received it was using an early ver of nwnx4, i upgraded to the newest and changed the efr in in the scripts to instruction i read in forums, could this be my connectivity problem, as I dont know how to make sure of the sql lang change? I am attempting to run the server with old nwnx scripts from the new nwnx4 server gui is this a waste of my time?
Back to top
View user's profile Send private message Visit poster's website
Brutal



Joined: 15 Jun 2006
Posts: 11

PostPosted: Mon Nov 26, 2007 6:12    Post subject: Reply with quote

nm seems so
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    nwnx.org Forum Index -> Database related All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group