I'm not sure I understand, but something like this?
integers {
int_rnd : integer "0" ;
}
on_command {
: match "test -" {
: store_random var = "int_rnd";
: add var = "int_rnd" value = "10" ;
}
}
Thanks - that works, but I was wondering if there was a command that would do: 'give me a random number between [lower end] and [upper end]' without having to get a number between 0 and 999 and then further manipulate the output. In 8-bit or otherwise. But I guess not.
In any case, doesn't really matter - there are easy ways to get what I need.