How to increase item quantity every 100 points?

M

mrjonwc

Guest
I don't want: if points=100 { item+=1 }

Is there a easy way to do this every 100 points so it keeps going forever?
 

RangerX

Member
And if you don't want to reset the points, like keeping a total of them for whatever purpose. Have a variable to count the points.
When you add points you also had to that variable the same amount. And then with the same logic Bingdom told you, you increase your items and reset only that counting variable, not the points you want to keep a total off
 
Top