Jump to content
  • 0

help max lvl 255 ,max stat 255 but...


creeps123

Question


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  78
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

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.. /no1(

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 :D

Edited by creeps123
Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

If you to be careful if your server is in Renewal mode or not. Whether or not, you need to adjust the exp.txt's base level for your sever. Also, map.h is where max level is.

Secondly, your stats should work fine by just increasing the max stat perimeter in conf/battle/... player I think?

Other then that, there's no errors because thats what I did and it works fine.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  78
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

If you to be careful if your server is in Renewal mode or not. Whether or not, you need to adjust the exp.txt's base level for your sever. Also, map.h is where max level is.

Secondly, your stats should work fine by just increasing the max stat perimeter in conf/battle/... player I think?

Other then that, there's no errors because thats what I did and it works fine.

i already did that.. still no fix.. only str = 212 all my 7237 stat points are consumed..

but back when i was still using eathena older revision.. 7237 max stat of 255 can max agi and str 255 and still got extra.. but now.. now even str can be maxed lol.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

Really? Even by changing these?

// Max limit of char stats. (agi, str, etc.)

max_parameter: 99

// Same as max_parameter, but for 3rd classes.

max_third_parameter: 120

// Same as max_parameter, but for baby classes.

max_baby_parameter: 80

// Same as max_parameter, but for baby 3rd's.

max_baby_third_parameter: 108

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  78
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

Really? Even by changing these?

// Max limit of char stats. (agi, str, etc.)

max_parameter: 99

// Same as max_parameter, but for 3rd classes.

max_third_parameter: 120

// Same as max_parameter, but for baby classes.

max_baby_parameter: 80

// Same as max_parameter, but for baby 3rd's.

max_baby_third_parameter: 108

Yes.

help pls!!! /no1

Bump!

FIXED it by editing Renewal.h

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  56
  • Topics Per Day:  0.01
  • Content Count:  224
  • Reputation:   4
  • Joined:  02/09/12
  • Last Seen:  

use pre_renewwal try it

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  308
  • Reputation:   3
  • Joined:  12/18/11
  • Last Seen:  

Just make sure you finish first your control panel IJAY, hahaha....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  236
  • Reputation:   1
  • Joined:  04/25/12
  • Last Seen:  

but back when i was still using eathena older revision.. 7237 max stat of 255 can max agi and str 255 and still got extra.. but now.. now even str can be maxed lol.

Have the same problem bro :/ mine can only get to 200 str it can keep on going if it had more stat points but it doesn't -__- how to add more status points :D anyhow since you solved the problem how did you solve it?

Edited by elcontrol00
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   0
  • Joined:  05/10/12
  • Last Seen:  

same problem. . help pls

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   3
  • Joined:  10/24/12
  • Last Seen:  

anything regarding this ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

If you Guys problem still not solved
 

then Go to trunk\src\map\pc.c

Then find this

sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5));

And change in to 

sp += ( 1 + (low + 9) / 10 );

After That Go to trunk\db\re\statpoint.txt
 

and replace all this (Crt+A)

48
51
54
57
60
64
68
72
76
80
85
90
95
100
105
111
117
123
129
135
142
149
156
163
170
178
186
194
202
210
219
228
237
246
255
265
275
285
295
305
316
327
338
349
360
372
384
396
408
420
433
446
459
472
485
499
513
527
541
555
570
585
600
615
630
646
662
678
694
710
727
744
761
778
795
813
831
849
867
885
904
923
942
961
980
1000
1020
1040
1060
1080
1101
1122
1143
1164
1185
1207
1229
1251
1273
1295
1318
1341
1364
1387
1410
1434
1458
1482
1506
1530
1555
1580
1605
1630
1655
1681
1707
1733
1759
1785
1812
1839
1866
1893
1920
1948
1976
2004
2032
2060
2089
2118
2147
2176
2205
2235
2265
2295
2325
2355
2386
2417
2448
2479
2510
2542
2574
2606
2638
2670
2703
2736
2769
2802
2835
2869
2903
2937
2971
3005
3040
3075
3110
3145
3180
3216
3252
3288
3324
3360
3397
3434
3471
3508
3545
3583
3621
3659
3697
3735
3774
3813
3852
3891
3930
3970
4010
4050
4090
4130
4171
4212
4253
4294
4335
4377
4419
4461
4503
4545
4588
4631
4674
4717
4760
4804
4848
4892
4936
4980
5025
5070
5115
5160
5205
5251
5297
5343
5389
5435
5482
5529
5576
5623
5670
5718
5766
5814
5862
5910
5959
6008
6057
6106
6155
6205
6255
6305
6355
6405
6456
6507
6558
6609
6660
6712
6764
6816
6868
6920
6973
7026
7079
7132
7185



And Don't Forget to Recompile after all this Done!


Topic Looks Too old anyways..xD
problem might be solved  /hmm

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...