06-10-2013, 02:58 AM
This is guide to fix your Maxie pet, he should be able to give you accumilated exp, if you want to change the % of exp he gives to you, you can head to database and change it. I believe default exp he gives you is 50%.
Delete the table t_attack_pet_exp if you have it existing... then right click ur DB and open console then paste the codes in following spoilers
Create the table
CREATE TABLE `t_attack_pet_exp` (
`a_pet_index` int(10) NOT NULL default 0,
`a_max_acc_param1` int(10) NOT NULL default 0,
`a_max_acc_param2` int(10) NOT NULL default 0,
`a_acc_rate_param1` int(10) NOT NULL default 0,
`a_acc_rate_param2` int(10) NOT NULL default 0,
`a_cooltime` int(10) NOT NULL default 0,
`a_cooltime_rate` int(10) NOT NULL default 0,
PRIMARY KEY (`a_pet_index`)
);
then
Insert the values
INSERT INTO `t_attack_pet_exp` (`a_pet_index`, `a_max_acc_param1`, `a_max_acc_param2`, `a_acc_rate_param1`, `a_acc_rate_param2`, `a_cooltime`, `a_cooltime_rate`) VALUES (47,5,9,20,49,600,80);

