2 questions

05/23/2012 18:17 triforce660#1
How do you change the amount of ep you get from ep cards? And how do you make it where compose rates are 75-100 points a compose?
05/23/2012 22:48 magewarior2#2
search on the forum, there are enough topics about it ....

but its in the cq_action you can change it.
05/26/2012 23:45 kyushiro#3
Quote:
Originally Posted by triforce660 View Post
How do you change the amount of ep you get from ep cards? And how do you make it where compose rates are 75-100 points a compose?
for compose rates try use this query and change it whatever u want

Code:
UPDATE `cq_eudemon_rbn_rqr` SET max = max + 20;
UPDATE `cq_eudemon_rbn_rqr` SET min = min + 20;
Note: Those rate number that will be + in you file example if your max is 12 then after run the query it will be 32 so 12+20=32..change those number to what u like it be..to make it have a low compose rate just change + to -

and for 2nd question

how to change the amount just find id of your eps card in shop.dat then search the id in cq_action after that u just change the values there..i cannot give u specify but i give u some hint and guides where and what to do..hope u can use some your brains to make it happen.. ;)
05/28/2012 06:18 pretzel666#4
Im pretty sure the ID for the cards in most servers is 102002 , so just find it in the cq_action and change it as needed :)
05/28/2012 06:25 triforce660#5
Lol ive already fixed this guys xD
05/30/2012 17:11 buzz2289#6
for 75-100 mark per compose try this one:
Quote:
UPDATE `cq_eudemon_rbn_rqr` SET max = max = 225;
UPDATE `cq_eudemon_rbn_rqr` SET min = min = 300;
But keep in mind doing it by Script will make your numbers bounce the more you use it
05/30/2012 23:44 triforce660#7
I already have this fixed guys. But thanks :)