I 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?
You can place this eval anywhere within your command to get a random number between 90-100:
$(eval Math.floor(Math.random() * 11) + 90)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.