statpoint.txt i replaced its conteng with pre renewal still got no fix..
am i missing something here? please help me browsed rathena eathena but still got no fix.. (
i bet it is somwthing here: src/map/pc.c anyone? pls help me
/// Returns the number of stat points needed to change the specified stat by val.
/// If val is negative, returns the number of stat points that would be needed to
/// raise the specified stat from (current value - val) to current value.
int pc_need_status_point(struct map_session_data* sd, int type, int val)
{
int low, high, sp = 0;
if ( val == 0 )
return 0;
low = pc_getstat(sd,type);
high = low + val;
if ( val < 0 )
swap(low, high);
for ( ; low < high; low++ )
#if REMODE //Renewal Stat Cost Formula
sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5));
#else
sp += ( 1 + (low + 9) / 10 );
#endif
return sp;
}
bump pls! anyone.. i just don't know how to edit this stuff. dunno the values lol
Question
creeps123
I have max lvl of 255 max stat of 255
but when i try to max out 1 of my stat.
it only reaches 212.. used all my statpoints..
im using rathena r15527
tried fixing src/battle.c
src/map.h
like 1000 - 1001
something like that still got no fix..
tried editing player.conf client.conf
statpoint.txt i replaced its conteng with pre renewal still got no fix..
am i missing something here? please help me browsed rathena eathena but still got no fix..
(
i bet it is somwthing here: src/map/pc.c anyone? pls help me
bump pls! anyone.. i just don't know how to edit this stuff. dunno the values lol
Edited by creeps123Link to comment
Share on other sites
10 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.