[Question] PP to EP

08/08/2014 03:01 Tsuki-Yomi#1
I know this is most likely stupid, trying to fix some things, but i have used the search button, dont know if i just didn't look really well or what.

But is there a way to change Auto PP to EP manually or is it a Quarry i have to run to get it changed over??
08/08/2014 05:11 Adrastroz#2
Been a while since I touched an eo db, but if you follow the action codes while killing a monster, you should see where it says something like "token_emoney += 500", all you need to do is change the "token_emoney += 500" to "e_money += 500".
08/08/2014 18:17 Tsuki-Yomi#3
Where do you find that line, i've looked in e_money,cq_generater,cq_Monstertype,cq_dropitemrul e,cq_itemtype
08/08/2014 20:56 dark2141#4
It's in cq_action
Run this query
Code:
UPDATE `cq_action` SET `param`='e_money += 20' WHERE (`param`='token_emoney += 20')
or If you want to change PP to EP on whole game
just run the query without amount " 20 "
Code:
UPDATE `cq_action` SET `param`='e_money += ' WHERE (`param`='token_emoney += ')
Don't forget to make a backup before you run any query!