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 gainQuote:
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
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.Quote:
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
this is confusing, can you give me some more advice? something easier?Quote:
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.
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?Quote:
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
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.Quote:
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?
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';
willl do , thank you alot.Quote:
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.
So all you have to do now is change the needed fields and run the query.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';