| 
				  
 What I did to get past this problem was create a dummy EQMessage table in the eq database. 
 Error in GetMessageNum query 'SELECT id FROM EQMessages WHERE recip = 'Wurmslayer
 r'' #1146: Table 'eq.eqmessages' doesn't exist
 
 This message told me of 2 fields in the EQMessages table (id and recip), my guess was once I got it working and played with the message system i'd come up with error messages telling me of more fields, but once I actually got in it appeared as if the #msg command wasen't included or enabled or whatever, so I did
 n't really need to play with it anymore after I got it working.
 
 To create such a table with those 2 fields yourself, simply open mysql.exe, and type in the following:
 
 use eq
 CREATE TABLE EQMessages (
 id int(11) NOT NULL auto_increment,
 recip varchar(16) NOT NULL default '',
 PRIMARY KEY  (id),
 ) TYPE=MyISAM;
 
 After creating this empty set in the eq database, I was able to login. I didn't play with it a whole lot longer before going to sleep last night so i'm not sure if this would cause any side effects or what not, in theory it shouldn't. Hope this helps!
 
 -Eblan
 
			
			
			
			
			
			
			
			
			
				
			
			
			
		 |