Jump to content
  • 0
Sign in to follow this  
iCORE

[tulong] Stat Points

Question

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 :sob: salamat po

Share this post


Link to post
Share on other sites

12 answers to this question

Recommended Posts

  • 0

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

Share this post


Link to post
Share on other sites
  • 0

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

 

Edited by Lilystar

Share this post


Link to post
Share on other sites
  • 0

gusto ko kasi sir gawing 

 * 2 - 400 max stats

* 1 - 100 rest stats

 

Max 400 was written here.

 

 

Untitled.png

 

It already vit points seemed to have changed.

sorry.

 

 

automatic naba un kapag lumagpas ng level 400 hindi ba siya mag stuck sa 7185?

 

This is not understood.

There was a problem in status calculation of levelling up?

 

 

30xfo8l.jpg

 

Edited by Lilystar

Share this post


Link to post
Share on other sites
  • 0

understand a little.

 

 

 

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

3342.jpg

 

Edited by Lilystar

Share this post


Link to post
Share on other sites
  • 0

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

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.