Log in

View Full Version : AA Timers in 5.0


Edgar1898
11-05-2003, 01:22 PM
To use AA's properly you will need to add the following table to your db:


CREATE TABLE aa_timers (
charid int(12) unsigned NOT NULL default '0',
ability smallint(5) unsigned NOT NULL default '0',
begin int(10) unsigned NOT NULL default '0',
end int(10) unsigned NOT NULL default '0',
PRIMARY KEY (charid,ability)
) TYPE=MyISAM;