Debug output for chanceSuggestion
Can someone show me how to add a debug for the chance. I want to see in console or chat what number it drew.

Like

Random number was (X)...
For what purposes? Its simple random from 1 to 100
Because I want to see what it's drawing when I shoot the barrel I know it's random I want to see how random it is

not for player use just for me as I test somethings.


Merged post

Thanks anyways ill do it myself

Merged post

                var random = Core.Random.Range(0, 101);
				var number = random.ToString();
				if (random > value.chance) 
				{
					PrintToConsole("Server Rolled a {0}!", number);
					continue;
				}


Merged post

BTW Chance means nothing with this plugin