Created
February 8, 2016 18:35
-
-
Save gshzn/0941e5792c8ca3c9cf7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int d = Math.random() * 100; | |
int chance = {YOUR CHANCE OF THE ITEM HERE} | |
if (d <= chance) { | |
//CONTINUE, TRUE | |
} else { | |
// DON'T CONTINUE, FALSE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment