"No selectable option" error message

What is the error that randomtest is having? An error post would be nice and there are certain commands that quick/randomtests don’t recognize like *restore_password

The problem is you have points > 10 and points < 10.

When points is exactly 10, you can’t choose either of them. It’s not less than 10, it’s not greater than 10.

You need to chance one or both of them to >= or <= which is ‘greater than OR EQUAL’.

At first, you were covered if points>10 or points<10.

When I pointed out that you forgot to include points=10, you changed it…

But, you took away the points<10 option, so there is still one missing.

You need to have every option covered: points>10, points=10 and points<10

Try with
*if (Points >=10)
instead of
*if (Points > 10)

@Storyvector – I’m taking the liberty of tweaking your thread titles so that people experiencing the same problem in the future can tell what the thread’s about.

2 Likes

I will also point out that if you leave it at *if (points = 10) and *if (points > 10), there will be 10 points left to choose from and if the OP has displayed how many points are remaining in the pool, players will be wonder why are there still 10 points left to spend and why can’t they choose the option to spend their points.