Posts: 173
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2012
Reputation:
0
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);
Posts: 316
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Dec 2011
Reputation:
0
Thanks for supporting the community
Posts: 190
Threads: 13
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Feb 2013
Reputation:
0
Thanks! Do you know how to fix p2 attack?
Greetings Jaiz
Posts: 173
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2012
Reputation:
0
yea i do, ill make another guide
Posts: 505
Threads: 48
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2011
Reputation:
0
i did it, and not worked o.o Anyone got the same problem?
Posts: 34
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2012
Reputation:
0
i did it, and not worked o.o Anyone got the same problem?
+1
Posts: 173
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2012
Reputation:
0
+1
Dont do that, I know halo, I help him most of the time on skype but I also know he messes around with his stuff alot, I gave a fix for maxie pet fix but I have no idea what else he has been doing.
t_attack_pet_exp is ONLY for maxie, if the database is fixed then the issue is somewhere else but if ur pet works and does not give exp then its your database.
Posts: 505
Threads: 48
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2011
Reputation:
0
Seems a db problem, im checking :/
Posts: 173
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Sep 2012
Reputation:
0
you have wrong pet tables, after I gave santi my tables, it fixed the problem.