awad87 1 Posted January 23, 2022 Exception has occurred while running! Please report error to developer if problem persists org.apache.commons.math3.exception.NumberIsTooLargeException: lower bound (500) must be strictly less than upper bound (99) at org.apache.commons.math3.distribution.UniformIntegerDistribution.<init>(UniformIntegerDistribution.java) at org.apache.commons.math3.random.RandomDataGenerator.nextInt(RandomDataGenerator.java) at org.dreambot.api.methods.Calculations.random(Calculations.java) at org.dreambot.api.methods.MethodProvider.sleep(MethodProvider.java)
SubCZ 284 Posted January 23, 2022 When you're calling MethodProvider#sleep your first parameter needs to be lower than the second one, so it can choose a random number inbetween. Looks like you're calling something like MethodProvider.sleep(500, 100) so you're getting this error
Recommended Posts
Archived
This topic is now archived and is closed to further replies.