Jump to content
  • 0

LUK -> Crit Rate edit


LatSo

Question


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  296
  • Reputation:   2
  • Joined:  04/11/13
  • Last Seen:  

How to edit the crit-rate gain by increasing luk?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  181
  • Reputation:   53
  • Joined:  04/07/13
  • Last Seen:  

Search for

 

status->cri += 10 + (status->luk*10/3); //(every 1 luk = +0.3 critical)

 

in src/map/status.c and modify it to your needs.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  296
  • Reputation:   2
  • Joined:  04/11/13
  • Last Seen:  

Search for

 

status->cri += 10 + (status->luk*10/3); //(every 1 luk = +0.3 critical)

 

in src/map/status.c and modify it to your needs.

 

I see, tnx for this!

Sry but what will I edit there?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  929
  • Reputation:   171
  • Joined:  04/05/13
  • Last Seen:  

Search for

 

status->cri += 10 + (status->luk*10/3); //(every 1 luk = +0.3 critical)

 

in src/map/status.c and modify it to your needs.

 

I see, tnx for this!

Sry but what will I edit there?

Edit what you need

 

It's a math, not sure how to change it but you need to try it with huge math and it'll show try to

 

status->cri += 10 + (status->luk*10/3);

 

every 1 luk = +0.3 critical ??

 

to

 

status->cri += 10 + (status->luk*10/300);

 

every 1 luk = +0.300 critical ??

 

not sure sorry  /panic 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  181
  • Reputation:   53
  • Joined:  04/07/13
  • Last Seen:  

status->cri += 10 + (status->luk*10/3); //(every 1 luk = +0.3 critical)

Means you gain 10/3 crit for every point of luck. Let's assume you have 9 luck, sou you'd gain 3 crit.

If you derease the crit per luck:

status->cri += 10 + (status->luk*10/5);

Means you get 1 crit every 5 luck, which equals in 1.8 additional crit with our assumed 9 luck.

 

You have to use basic math to change it to a value you'd find more satifying.

 

//edit: Basically, the last number in this calculation determines how many points of luck you need for 1 crit.

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