Frisky BoarOriginal postApr 20, 2024I want to create a random number command. with only numbers 90-100 But I don't want the numbers 1-80. Is there any way that this can be done?
Bashful GoatApr 20, 2024You can place this eval anywhere within your command to get a random number between 90-100:$(eval Math.floor(Math.random() * 11) + 90)