- 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:
parent
1e07d35220
commit
99466e67c1
@ -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
|
GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS
|
||||||
|
|
||||||
2006/02/06
|
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
|
* Fixed startnpctimer starting multiple timers instead of failing when the
|
||||||
npc timer is already running. [Skotlex]
|
npc timer is already running. [Skotlex]
|
||||||
* Venom Splasher update: [Skotlex]
|
* Venom Splasher update: [Skotlex]
|
||||||
|
132
db/exp2.txt
132
db/exp2.txt
File diff suppressed because one or more lines are too long
@ -8078,7 +8078,7 @@ int pc_readdb(void)
|
|||||||
{
|
{
|
||||||
int i,j,k;
|
int i,j,k;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
char line[16000],*p;
|
char line[24000],*p;
|
||||||
|
|
||||||
// •K—v??’l?‚Ý?‚Ý
|
// •K—v??’l?‚Ý?‚Ý
|
||||||
memset(exp_table,0,sizeof(exp_table));
|
memset(exp_table,0,sizeof(exp_table));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user