View Single Post
  #2  
Old 05-06-2011, 04:00 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

I haven't ever messed with it, but judging by the source related to it, I would think the table would be something like this:

Code:
CREATE TABLE `tellque` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `date` varchar(65) NOT NULL default '',
  `receiver` varchar(65) NOT NULL default '',
  `sender` varchar(65) NOT NULL default '',
  `message` varchar(256) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
I only looked at the source for it briefly, but as far as I can tell, the tellque doesn't actually get sent to clients automatically after they finish zoning. They would have to run the #viewmessage command.

Though, it seems like messages could be checked and automatically sent during the finishing zoning process.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!

Last edited by trevius; 05-06-2011 at 09:53 PM..
Reply With Quote