![]() |
|
How to fix Maxie - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193) +---- Forum: Tutorials & Guides (https://lckb.dev/forum/forumdisplay.php?fid=124) +----- Forum: Ep2 Guides (https://lckb.dev/forum/forumdisplay.php?fid=165) +----- Thread: How to fix Maxie (/showthread.php?tid=2028) Pages:
1
2
|
- Gambit - 06-10-2013 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); - CyberClaus - 06-10-2013 Thanks for supporting the community - Jaiz - 06-10-2013 Thanks! Do you know how to fix p2 attack? Greetings Jaiz - Gambit - 06-10-2013 yea i do, ill make another guide - halohalo - 06-11-2013 i did it, and not worked o.o Anyone got the same problem? - KaPaTeJIb777 - 06-11-2013 i did it, and not worked o.o Anyone got the same problem? +1 - Gambit - 06-11-2013 +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. - halohalo - 06-11-2013 Seems a db problem, im checking :/ - KaPaTeJIb777 - 06-12-2013 no fix problem - Gambit - 06-12-2013 you have wrong pet tables, after I gave santi my tables, it fixed the problem. |