Droke Posted February 5, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 32 Reputation: 1 Joined: 12/01/11 Last Seen: March 29, 2014 Share Posted February 5, 2012 in renewal without offing remode . how to i make stat 255 . my char get only 200 stat i have 255 lvl server. i need 2 or 3 stat goes 255. like old ea 255 server have. plz help Quote Link to comment Share on other sites More sharing options...
JayPee Posted February 6, 2012 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 633 Reputation: 78 Joined: 11/14/11 Last Seen: September 20, 2017 Share Posted February 6, 2012 You need to edit your experience table in your db/re/exp.txt. wrong info Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 6, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted February 6, 2012 i though statpoint suppose to be edit the statpoint table ? db/re/statpoint.txt Quote Link to comment Share on other sites More sharing options...
ngek202 Posted February 6, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 530 Reputation: 33 Joined: 01/17/12 Last Seen: August 16, 2017 Share Posted February 6, 2012 (edited) have you tried in battle/player.conf // Max limit of char stats. (agi, str, etc.) max_parameter: 99 lol misinterpret yeah i think he's referring to stats used. Edited February 6, 2012 by ngek202 Quote Link to comment Share on other sites More sharing options...
rlt Posted February 6, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 50 Reputation: 0 Joined: 01/27/12 Last Seen: February 4, 2013 Share Posted February 6, 2012 Or are you referring to the number of stats needed when distributing the points? Like in Pre-re, you need 21 status points in order to make a stat from 200 to 201. or in Renewal, you need 96 status points in order to make a stat from 200 to 201. Quote Link to comment Share on other sites More sharing options...
ngek202 Posted February 6, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 530 Reputation: 33 Joined: 01/17/12 Last Seen: August 16, 2017 Share Posted February 6, 2012 Renewal stats is too painful . suggest there should be an option in Battle Conf that would set if your going to use Renewal Stat point System or Non Renewal. I don't want to disable REMODE too if level will exceed 100+ Quote Link to comment Share on other sites More sharing options...
rlt Posted February 6, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 50 Reputation: 0 Joined: 01/27/12 Last Seen: February 4, 2013 Share Posted February 6, 2012 Renewal stats is too painful . suggest there should be an option in Battle Conf that would set if your going to use Renewal Stat point System or Non Renewal. I don't want to disable REMODE too if level will exceed 100+ Lol, yeah, in order to reach at least 2 255 stats in a renewal server, you need about 24,852 status points. Quote Link to comment Share on other sites More sharing options...
keoco Posted February 7, 2012 Group: Members Topic Count: 43 Topics Per Day: 0.01 Content Count: 130 Reputation: 0 Joined: 01/24/12 Last Seen: April 11, 2012 Share Posted February 7, 2012 i want to change mine to pre-renewal stats aswell, how do i change it? Quote Link to comment Share on other sites More sharing options...
Vietlubu Posted February 19, 2012 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 141 Reputation: 24 Joined: 01/19/12 Last Seen: Sunday at 02:29 PM Share Posted February 19, 2012 /src/map/config/Renewal.h * Game Server Mode * @values: 1 or 0 * 1 : renewal support, such as renewal-exclusive formulas * -> Note some features may be enabled/disabled at this file despite this setting being ON * 0 : renewal support disabled, use original formulas **/ #define REMODE 1 Change 1 to 0. Compiling again. done Quote Link to comment Share on other sites More sharing options...
Kichi Posted May 27, 2012 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 509 Reputation: 80 Joined: 11/20/11 Last Seen: October 3, 2020 Share Posted May 27, 2012 there is no #define REMODE in my rathena Quote Link to comment Share on other sites More sharing options...
Flaid Posted May 27, 2012 Group: Members Topic Count: 20 Topics Per Day: 0.00 Content Count: 398 Reputation: 140 Joined: 01/04/12 Last Seen: February 19, 2022 Share Posted May 27, 2012 there is no #define REMODE in my rathena Let me help you, https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/config/renewal.h it's there. Quote Link to comment Share on other sites More sharing options...
Kichi Posted May 27, 2012 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 509 Reputation: 80 Joined: 11/20/11 Last Seen: October 3, 2020 Share Posted May 27, 2012 there is no #define REMODE in my rathena Let me help you, https://rathena.svn....onfig/renewal.h it's there. -.-" could u help me to find a word "remode" please? Quote Link to comment Share on other sites More sharing options...
Kiro Posted June 18, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 7 Reputation: 0 Joined: 06/10/12 Last Seen: October 28, 2022 Share Posted June 18, 2012 ctrl+f Quote Link to comment Share on other sites More sharing options...
JoWei Posted June 19, 2012 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 117 Reputation: 18 Joined: 01/06/12 Last Seen: April 1, 2021 Share Posted June 19, 2012 (edited) I've already anwsered this question for someone else but here's the 2 choices again on what you could do to change that. -Recompile server with pre-renewal formulas overall by commenting this line in renewal.h, #define RENEWAL It well turn your server into part pre-renewal for several formulas unless you comment out the rest on it. or -Go in the source code, pc.c, and change the following line, sp += (low < 100) ? (2 + (low - 1) / 10) : (16 + 4 * ((low - 100) / 5)); for sp += ( 1 + (low + 9) / 10 ); and recompile the server which will make server use pre-renewal formulas for status point calculations while keeping the rest of the renewal settings. Edited June 19, 2012 by JoWei Quote Link to comment Share on other sites More sharing options...
Question
Droke
in renewal without offing remode . how to i make stat 255 . my char get only 200 stat i have 255 lvl server. i need 2 or 3 stat goes 255. like old ea 255 server have. plz help
Link to comment
Share on other sites
13 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.