Jump to content
  • 0

turn off renewal and make it pre renewal


simplemhan

Question


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

i want to turn off the renewal thing and make it pre renewal, Im using latest svn

Link to comment
Share on other sites

9 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  530
  • Reputation:   33
  • Joined:  01/17/12
  • Last Seen:  

on your

trunk/src/map/config/renewal.h

Set:

/// game renewal server mode
/// (disable by commenting the line)
///
/// leave this line to enable renewal specific support such as renewal formulas
//#define RENEWAL << Comment
/// renewal cast time
/// (disable by commenting the line)
///
/// leave this line to enable renewal casting time algorithms
/// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats.
/// example:
///  on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a
///  "fixed cast time" which can only be reduced by specialist items and skills
//#define RENEWAL_CAST << Comment
/// renewal drop rate algorithms
/// (disable by commenting the line)
///
/// leave this line to enable renewal item drop rate algorithms
/// while enabled a special modified based on the difference between the player and monster level is applied
/// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table
//#define RENEWAL_DROP << Comment
/// renewal exp rate algorithms
/// (disable by commenting the line)
///
/// leave this line to enable renewal item exp rate algorithms
/// while enabled a special modified based on the difference between the player and monster level is applied
//#define RENEWAL_EXP << Comment
/// renewal cast time variable cast requirement
///
/// this is the value required for no variable cast-time with stats.
/// formula: (DEX * 2) + INT
/// default: 530
#define RENEWAL_CAST_VMIN 530

Edited by ngek202
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   0
  • Joined:  04/12/12
  • Last Seen:  

this only effect skills cast time or whole setting include drop rate , refine rate, attack and defend calculation ?

after turn off can become eathena type pre renewal ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  439
  • Reputation:   29
  • Joined:  12/08/11
  • Last Seen:  

You can read from from the file's comments what if does when you turn them off. As for pre-re, rA's pre-re is

better since we are more updated and we have more bug fixes.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  299
  • Reputation:   5
  • Joined:  04/05/12
  • Last Seen:  

i want to ask if its only not to comment the Renewal Drop and Renewal EXP?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   2
  • Joined:  05/19/12
  • Last Seen:  

i want to ask if its only not to comment the Renewal Drop and Renewal EXP?

Then your server would still use the Renewal Drop and exp system.

http://rode-r.doddlercon.com/viewpage/d/3

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   140
  • Joined:  01/04/12
  • Last Seen:  

You can change settings here too, https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/config/renewal.h after changing something make sure to recompile.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  59
  • Reputation:   0
  • Joined:  02/25/13
  • Last Seen:  

on your

trunk/src/map/config/renewal.h

Set:

/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas//#define RENEWAL << Comment/// renewal cast time/// (disable by commenting the line)////// leave this line to enable renewal casting time algorithms/// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats./// example:///  on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a///  "fixed cast time" which can only be reduced by specialist items and skills//#define RENEWAL_CAST << Comment/// renewal drop rate algorithms/// (disable by commenting the line)////// leave this line to enable renewal item drop rate algorithms/// while enabled a special modified based on the difference between the player and monster level is applied/// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table//#define RENEWAL_DROP << Comment/// renewal exp rate algorithms/// (disable by commenting the line)////// leave this line to enable renewal item exp rate algorithms/// while enabled a special modified based on the difference between the player and monster level is applied//#define RENEWAL_EXP << Comment/// renewal cast time variable cast requirement////// this is the value required for no variable cast-time with stats./// formula: (DEX * 2) + INT/// default: 530#define RENEWAL_CAST_VMIN 530

 

the "<< Comment" u wrote... is it necessary to use that "<< Comment" only or we can add any comment at all?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   1
  • Joined:  05/17/12
  • Last Seen:  

 

on your

trunk/src/map/config/renewal.h

Set:

/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas//#define RENEWAL << Comment/// renewal cast time/// (disable by commenting the line)////// leave this line to enable renewal casting time algorithms/// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats./// example:///  on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a///  "fixed cast time" which can only be reduced by specialist items and skills//#define RENEWAL_CAST << Comment/// renewal drop rate algorithms/// (disable by commenting the line)////// leave this line to enable renewal item drop rate algorithms/// while enabled a special modified based on the difference between the player and monster level is applied/// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table//#define RENEWAL_DROP << Comment/// renewal exp rate algorithms/// (disable by commenting the line)////// leave this line to enable renewal item exp rate algorithms/// while enabled a special modified based on the difference between the player and monster level is applied//#define RENEWAL_EXP << Comment/// renewal cast time variable cast requirement////// this is the value required for no variable cast-time with stats./// formula: (DEX * 2) + INT/// default: 530#define RENEWAL_CAST_VMIN 530

 

the "<< Comment" u wrote... is it necessary to use that "<< Comment" only or we can add any comment at all?

that's just an example , you can write anything

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...