Jump to content
  • 0

Rates, Job Skills and Stat Points


LeonFelix32

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  09/03/17
  • Last Seen:  

///// RATES \\\\\

Having a problem with my conf>battle>drops.conf
Can't seem to get more than 50% drop on a monster despite how much I change any of the rates on my drops.conf

Spoiler

Rates.JPG.79a7c6a65cd98967bc0f5d91067d387d.JPG

///// JOB SKILLS \\\\\

Can't find anywhere where I'd be able to change the amount of max JobLvl for characters. I want to increase base JobLvl Max to X Amount instead of the standard 60 for Renewal Classes. Where can I find such a thing?

 

///// Stat Points \\\\\

Want to change the amount of Stat points needed per Stat after you hit 99 Base. I can't seem to find the file needed to modify these changes.(Example: At 99 Str you need 11 Status Points to get to 100; but once you have 100 Status Points it jumps from 11 per Str Point to 16 per Stat Point. I want to change it to use the same system it used from 1 - 99 . )

 

Thanks!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

For Max JobLvl 
db/re/job_exp.db

statpoint calculation.
src/map/pc.c

/// Renewal status point cost formula
#define PC_STATUS_POINT_COST(low) (((low) < 100) ? (2 + ((low) - 1) / 10) : (16 + 4 * (((low) - 100) / 5)))


for drop rate
src/config/renewal.h
comment out renewal_drop
 

#define RENEWAL_DROP
to
//#define RENEWAL_DROP


 

 

Edited by crazyarashi
Additional Information
  • Like 2
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  09/03/17
  • Last Seen:  

Thanks for your amazing help, Quick reply and all.

How would I "Activate" the new updated files to the live server? I'm assuming it's not @reload something is it?

(Brand new to this stuff.)

 

Also could you elaborate on what "comment out renewal_drop" means?

I'm assuming I had to change #define RENEWAL_DROP to //#define RENEWAL_DROP

 

Thanks <3

 

Edited by LeonFelix32
Link to comment
Share on other sites

  • 0

  • Group:  Developer
  • Topic Count:  50
  • Topics Per Day:  0.02
  • Content Count:  763
  • Reputation:   227
  • Joined:  02/11/17
  • Last Seen:  

28 minutes ago, LeonFelix32 said:

I'm assuming I had to change #define RENEWAL_DROP to //#define RENEWAL_DROP

Yes :))

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  6
  • Reputation:   0
  • Joined:  09/03/17
  • Last Seen:  

Great. So complete noob question but how would I "Activate" this in game? Do I need to close entire server and start it again? Do I patch the new updates? Cause I've tried most things and it doesn't seem to take effect.

How would I Patch/Load/Compile changes?

Edited by LeonFelix32
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...