[HELP]Edit VIP Map EP's

07/02/2010 02:51 jayk10304#1
How do i edit the ammount of eps givin in VIP maps? Im useing Revo db/client and i need to edit it, they are to low, its like 70 eps per kill in vip 7. Thank you
07/02/2010 03:46 zspider#2
follow the yellow action lines that u see in ur chat area follow it in cq_action u will find some thing like e_money += 70 in the param or something edit it to whatever u want
07/02/2010 03:54 Eurion#3
Quote:
Originally Posted by jayk10304 View Post
How do i edit the ammount of eps givin in VIP maps? Im useing Revo db/client and i need to edit it, they are to low, its like 70 eps per kill in vip 7. Thank you
You need to look into the following action id's they control the vip ep gain
Code:
81
82
83
84
85
86
87
88
Quote:
Originally Posted by zspider View Post
follow the yellow action lines that u see in ur chat area follow it in cq_action u will find some thing like e_money += 70 in the param or something edit it to whatever u want
I agree completely, people need to learn how to follow the actions that are given with the errors, they're easy enough to debug.
07/02/2010 07:01 jayk10304#4
Quote:
Originally Posted by Eurion View Post
You need to look into the following action id's they control the vip ep gain
Code:
81
82
83
84
85
86
87
88


I agree completely, people need to learn how to follow the actions that are given with the errors, they're easy enough to debug.
this is confusing, can you give me some more advice? something easier?
07/02/2010 07:23 Eurion#5
Sorry those are the action id's that correspond with the Vip monsters.

Code:
Action Id 81 = Emoney for Vip 4
Action Id 82 = Text for Vip 4
Action Id 83 = Emoney for Vip 5
Action Id 84 = Text for Vip 5
Action Id 85 = Emoney for Vip 6
Action Id 86 = Text for Vip 6
Action Id 87 = Emoney for Vip 7
Action Id 88 = Text for Vip 7
07/02/2010 07:38 jayk10304#6
Quote:
Originally Posted by Eurion View Post
Sorry those are the action id's that correspond with the Vip monsters.

Code:
Action Id 81 = Emoney for Vip 4
Action Id 82 = Text for Vip 4
Action Id 83 = Emoney for Vip 5
Action Id 84 = Text for Vip 5
Action Id 85 = Emoney for Vip 6
Action Id 86 = Text for Vip 6
Action Id 87 = Emoney for Vip 7
Action Id 88 = Text for Vip 7
not to be a prick or anything, but where do i put how many eps i want. and do i run it as a query or something?
07/02/2010 07:47 Eurion#7
Quote:
Originally Posted by jayk10304 View Post
not to be a prick or anything, but where do i put how many eps i want. and do i run it as a query or something?
We shouldn't have to go into alot of detail telling you how to edit action id's. I would assume that if you're running your own server, you have at least some knowledge in MySql, and or the database files. I would also assume that you are using either phpmyadmin or navicat in order to view your database.

So its quite simple to find the action id that I have listed for you. But since I've already started the help here, I will give you the query you need in order to change the emoney. But next time please at least try to find the issue yourself.


Code:
UPDATE cq_action SET param='e_money += YourEpToAddForVip4' WHERE id='81';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip4 ep from VipMonster4' WHERE id='82';
UPDATE cq_action SET param='e_money += YourEpToAddForVip5' WHERE id='83';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip5 ep from VipMonster5' WHERE id='84';
UPDATE cq_action SET param='e_money += YourEpToAddForVip6' WHERE id='85';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip6 ep from VipMonster6' WHERE id='86';
UPDATE cq_action SET param='e_money += YourEpToAddForVip7' WHERE id='87';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip7 ep from VipMonster7' WHERE id='88';
So all you have to do now is change the needed fields and run the query.
07/02/2010 08:10 jayk10304#8
Quote:
Originally Posted by Eurion View Post
We shouldn't have to go into alot of detail telling you how to edit action id's. I would assume that if you're running your own server, you have at least some knowledge in MySql, and or the database files. I would also assume that you are using either phpmyadmin or navicat in order to view your database.

So its quite simple to find the action id that I have listed for you. But since I've already started the help here, I will give you the query you need in order to change the emoney. But next time please at least try to find the issue yourself.


Code:
UPDATE cq_action SET param='e_money += YourEpToAddForVip4' WHERE id='81';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip4 ep from VipMonster4' WHERE id='82';
UPDATE cq_action SET param='e_money += YourEpToAddForVip5' WHERE id='83';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip5 ep from VipMonster5' WHERE id='84';
UPDATE cq_action SET param='e_money += YourEpToAddForVip6' WHERE id='85';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip6 ep from VipMonster6' WHERE id='86';
UPDATE cq_action SET param='e_money += YourEpToAddForVip7' WHERE id='87';
UPDATE cq_action SET param='Congratulations you got YourEpToAddforVip7 ep from VipMonster7' WHERE id='88';
So all you have to do now is change the needed fields and run the query.
willl do , thank you alot.