- Increased char buffer for reading the exp table to up to 24000 chars per line.

- Added my custom experience table that goes up to level 1000.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5209 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-02-07 04:34:46 +00:00
parent 1e07d35220
commit 99466e67c1
3 changed files with 43 additions and 100 deletions

View File

@ -5,6 +5,15 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EV
GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
2006/02/06
* Added a custom exp table that goes up to level 1000 (db/exp2.txt). [Skotlex]
- It uses a inverse exponential growth rate to mimic the official exp rate
increase as close as possible.
- It overrides the exp level of the last 5~10 official exp values for a
smoother curve.
- It's adjusted so that the Lv1000 exp requirement for Advanced Base/2nd
Job is close to the unsigned int limit without going above it (limit is
4294967295 in my system. It goes up to 42k Million on Advanced
Base lv1000, I think)
* Fixed startnpctimer starting multiple timers instead of failing when the
npc timer is already running. [Skotlex]
* Venom Splasher update: [Skotlex]

File diff suppressed because one or more lines are too long

View File

@ -8078,7 +8078,7 @@ int pc_readdb(void)
{
int i,j,k;
FILE *fp;
char line[16000],*p;
char line[24000],*p;
// •K—v??l?‚Ý?‚Ý
memset(exp_table,0,sizeof(exp_table));