Covert4 fire delay into fire rate

how do I convert a firing delay, like .2, .5, 1, 1.2, into a firerate. .2 would return the highest number, 1.2 would return the lowest number.

Using maths, you can simply have a baseline firing rate, and divide that rate by the delay to get the firerate. For example, if your baseline is 1 and your firerate is .2, just do 1 / .2 which will give you 5 as the firerate. This works as if you do 1 divided by .5, that will give you a firerate of 2, which is less than 5 which was the value for .2.

If you want to scale up your values, pick a larger baseline value. For example, if baseline is 10, you would get a firerate of 50 with .2 delay.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.