Hey Guys..
My Modification Word at Title Doesn't Mean SRCs Only. Its Means Modifications/Changes you want.
Q: How to Edit Maximum Zeny?
A:
First Goto SVN/src/common/mmo.h
Goto line 86
#define MAX_ZENY 1000000000
Change the Value to 2000000000 = 2b
Q: How to Modify the Delay of a Certain Skill After Casting?
A:
First goto SVN/db/skill_cast_db.txt
find your Skill to be Modify. ( Example: Lex Aterna or PR_LEXAETERNA )
Its Value are
3000 = Millisecond
If you want it to be no Delay just put 0
How about if skill per level changes its delay. ( Example: Asura Strike or MO_EXTREMITYFIST )
271,4000:3500:3000:2500:2000,3000:2500:2000:1500:1000,0,0,300000
this are the delays
3000:2500:2000:1500:1000
Again if you want the Delay = 0
you change the values to 0
or just put 0 like this
Q: How to Edit Max Level of Homunculus?
A:
First goto SVN/db/exp_homunculus.txt
then this is the whole code
as you can see it has 100lines.. Minus the Introduction(1 line) = 99
means the max level of homunculus is 99 in that table
if you want to decrease it
you just edit a line or delete one starting below. but Don't remove the 0 below. it will not work if you delete it.
if you want to increase
just add a new number
above 0 and below 3135000
Q: How to Disable Money Overflow while Vending?
A:
First.. Money Overflowing is a term when you reached your Max Zeny and someone still buy on your vend.. they still get the item but your zeny didn't gain.
Second: goto SVN/conf/battle/items.conf
this two settings
// The highest value at which an item can be sold via the merchant vend skill. (in zeny)
vending_max_value: 1000000000
// Whether to allow buying from vending chars that are at their max. zeny limit.
// If set to yes, the rest of the zeny above the char's capacity will disappear.
vending_over_max: yes
1st Setting: vending_max_value
This is the max value of a certain Item. if the value is 1b and your trying to vend an item worth 1.5B. it wont't work
set the vending_max_value to your max zeny. If your Max Zeny is 2B, it will look like this..
// The highest value at which an item can be sold via the merchant vend skill. (in zeny)
vending_max_value: 2000000000
2nd Setting: vending_over_max
This is the Setting where when you reach your max zeny and someone buy you. the zeny will disappear.. to fix it.
set vending_over_max to no
// Whether to allow buying from vending chars that are at their max. zeny limit.
// If set to yes, the rest of the zeny above the char's capacity will disappear.
vending_over_max: no
Q: How to Adjust Card Drop Rate( Normal Cards and MvP Cards )?
A:
First goto SVN/conf/drops.conf
// The rate at which cards are dropped
item_rate_card: 1000
item_rate_card_boss: 100
item_drop_card_min: 1
item_drop_card_max: 10000
Here the Table for Card Drop Rate
100000 = 100%
10000 = 10%
1000 = 1%
100 = 0.1%
10 = 0.01%
1 = 0.001%
so if you want to set your Normal Card Drop Rate to 50% and your MvP cards to 25%. Here how it looks like
// The rate at which cards are dropped
item_rate_card: 50000
item_rate_card_boss: 25000
item_drop_card_min: 1
item_drop_card_max: 10000
Q: How to Maximum Base Level without Any Warning in the Map Server?
A:
First goto SVN/src/map/battle.c
{ "max_lv", &battle_config.max_lv, 99, 0, 127, },,
Change the Defined Value "127" to "1000"
Note:
Why Changing to 1000.
If you want max level is 255. Then you change your mind and make it 999.
it will not Show Any Errors in your Server.
That Prevents Showing Warnings in your Server.
Next goto SVN/src/map/map.h
#define MAX_LEVEL 150
Line what you Did with battle.c. Edit the Given Value "99" to "1000"
Next goto SVN/conf/battle/client.conf
max_lv: 99
Now Define your Max Level there. You can choose whatever you want.
That is serves as the Default Maximum Level of your Server.
What you put there will be the Max Level of your Server.
This Guide will be Updated If People's Demand for Modification Guides.
If you want Some More Guides. Just PM Me @ eAthena.
Note to Moderator
I do not Double Post just to Spam. I wish you can Give Exception giving Warns to me in this Thread