PDA

View Full Version : Titles


Lalolyen
09-13-2007, 06:58 AM
Before you flame, I've searched the forum. This may be a bug, or something I simply had a brain fart on and didn't turn on.

How do you get #title to stick or get a list of titles to show when sending the title opticode? Is there a table I'm missing in the database? *note I'm not talking about surnames =P*

John Adams
09-14-2007, 07:29 AM
It does appear a table is missing.

`titles` is called in titles.cpp, TitleManager::LoadTitles()

From an old database I have laying around:
CREATE TABLE `titles` (
`id` int(10) unsigned NOT NULL auto_increment,
`skill_id` tinyint(3) unsigned NOT NULL default '0',
`skill_value` mediumint(8) unsigned NOT NULL default '0',
`aa_points` tinyint(3) unsigned NOT NULL default '0',
`title` varchar(32) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Hope this helps.