Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. This is the formula.
  2.  
  3. ((WILL*0.8)/2.5)+(LEVEL/4)
  4.  
  5. ----------------------------
  6.  
  7. ((WILL*0.8)/2.5)
  8.  
  9. This formula decides how the user's will affects their crimes success rate.
  10.  
  11. Lets show a few examples.
  12.  
  13. Example 1a.
  14.  
  15. ((WILL*0.7)/17)
  16. User's will: 100
  17.  
  18. You start by running the functions in the parentheses.
  19.  
  20. So it would end up being:
  21.  
  22. ((70)/17)
  23.  
  24. After that you just run the formula
  25.  
  26. 70/17
  27.  
  28. Which Equals:
  29.  
  30. 4.1176470588235294117647058823529
  31.  
  32. So using that formula on a user with 100 will would give them a 4.1176470588235294117647058823529% chance of the user succeeding.
  33.  
  34. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35.  
  36. Example 2a.
  37.  
  38. ((WILL*0.4)/39)
  39. User's will: 531
  40.  
  41. You start by running the functions in the parentheses.
  42.  
  43. So it would end up being:
  44.  
  45. ((212.4)/39)
  46.  
  47. After that you just run the formula
  48.  
  49. 212.4/39
  50.  
  51. Which Equals:
  52.  
  53. 5.4461538461538461538461538461538
  54.  
  55. So using that formula on a user with 531 will would give them a 5.4461538461538461538461538461538% chance of the user succeeding.
  56.  
  57. -----------------------------
  58.  
  59. (LEVEL/4)
  60.  
  61. This pretty much explains itself.
  62.  
  63. This formula decides how the user's level affects a user's chance of succeeding a crime.
  64.  
  65. Lets show a few more examples.
  66.  
  67. Example 1b.
  68.  
  69. (LEVEL/21)
  70. User's level: 51
  71.  
  72. Basically all you would be doing is:
  73.  
  74. 51/21
  75.  
  76. So just run the formula which equals:
  77.  
  78. 2.4285714285714285714285714285714
  79.  
  80. So if this was the only formula the user would have a 2.4285714285714285714285714285714% chance of succeeding.
  81.  
  82. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  83.  
  84. Example 2b.
  85.  
  86. (LEVEL/54)
  87. User's level: 98
  88.  
  89. As the other formula goes:
  90.  
  91. 98/54
  92.  
  93. So that would equal:
  94.  
  95. 1.8148148148148148148148148148148
  96.  
  97. If that was the only formula the user would have a 1.8148148148148148148148148148148% chance of succeeding.
  98.  
  99. -----------------------------
  100.  
  101. Now we combine the formulas...
  102.  
  103. -----------------------------
  104.  
  105. Formula 1
  106.  
  107. Example 1a+example 1b
  108.  
  109. 4.1176470588235294117647058823529+2.4285714285714285714285714285714=6.546218487394957983193277310923
  110.  
  111. So by combining the 2 formulas with each-other the chance of succeeding the crime is 6.546218487394957983193277310923%.
  112.  
  113. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  114.  
  115. Formula 2
  116.  
  117. Example 2a+example 2b
  118.  
  119. 4.1176470588235294117647058823529+1.8148148148148148148148148148148=5.932461873638344226579520697166
  120.  
  121. So by combining the 2 formulas with each-other the chance of succeeding the crime is 5.932461873638344226579520697166%.
  122.  
  123.  
  124.  
  125.  
  126. Please note : You can also use html codes in crime texts , initail , sucess failure etc
  127.  
  128. eg : If you want result to show in red use that colour code with text in the result form.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement