Jump to content
  • 0

Double Casting Rate


Radian

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

How can i reduce the success rate of double casting skill of professors ?

 

original success rate

Lv 1 : 40%
Lv 2 : 50%
Lv 3 : 60%
Lv 4 : 70%
Lv 5 : 80%

and make it

Lv 1 : 10%
Lv 2 : 15%
Lv 3 : 20%
Lv 4 : 25%
Lv 5 : 30%
Edited by Ginji
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  143
  • Reputation:   30
  • Joined:  12/23/11
  • Last Seen:  

map/status.c

 

find

		case SC_DOUBLECAST:
			val2 = 30+10*val1; // Trigger rate
			break;

replace with

		case SC_DOUBLECAST:
			val2 = 5+5*val1; // Trigger rate
			break;
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

 

map/status.c

 

find

		case SC_DOUBLECAST:
			val2 = 30+10*val1; // Trigger rate
			break;

replace with

		case SC_DOUBLECAST:
			val2 = 5+5*val1; // Trigger rate
			break;

 

val2 = 5+5*val1; // Trigger rate what does this means? 

 

is it like this? 

 

5% + 5% chances

 

10% + 5% chances?

Edited by Ginji
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  143
  • Reputation:   30
  • Joined:  12/23/11
  • Last Seen:  

val2 - Chance

val1 - Skill Level

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

val2 - Chance

val1 - Skill Level

 

thanks for the information :)

 

i got a problem while compiling

make[1]: Warning: File `status.c' has modification time 2.4e+04 s in the future
Edited by Ginji
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...