[tulong] Stat Points

iCORE

New member
Messages
393
Points
0
Location
Halcyon Ragnarok
Github
Naori
Emulator
hi mga kuya pwede po ba ako makahingi ng full list ng level 400 stat points mag umpisa level 1 po hindi kasi makakita ng stat points generator eh
default_sob.gif
salamat po
 
Para san yan? sa pagkaka alam ko supported naman nang Hercules hangang Level 1000..

 
Untitled.png
 

======================================

ayan lang kasi sir ung nasasagad eh balak ko sana gawin ganito

example

str 400

agi 400

vit 100

int 1

dex 1

luk  1

 
Is a necessary point high and is the talk that the display is not done?

This time, the status point, puts out the example which processes in PRE RENEWAL specification.

Herculessrcmappc.c

/// 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);

 if ( low >= pc_maxparameter(sd) && val > 0 )
return 0; // Official servers show '0' when max is reached

 high = low + val;

 if ( val < 0 )
swap(low, high);

 for ( ; low < high; low++ )
// #ifdef RENEWAL // renewal status point cost formula ( Comment out )
// sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5));  ( Comment out )
// #else   ( Comment out )
sp += ( 1 + (low + 9) / 10 );
// #endif ( Comment out )

 return sp;
}


The change is processing over 100 points.

nye74j.jpg
 
Last edited by a moderator:
Last edited by a moderator:
understand a little.

Non reaction.
Consuming the points, it cannot increase status.
But, the status operation in @command is possible.

3342.jpg
 
Last edited by a moderator:
understand a little.

Non reaction.

Consuming the points, it cannot increase status.

But, the status operation in @command is possible
The problem is when you have one max stats and you wish to put another stats it will now consume all the stat points even when you have extra stats points.

str - 400

agi - 393 <---- @agi will work but /agi+ and manual clicking is freeze
 
Nsa Filipino Community kayo
default_smile.png


Pakiusap gamitin ang wika na nararapat.. Salamat..

 
Back
Top