Gepard, sorry, i mean switch(rand(1,3)).
Emistry, with looping,
for(...)
{
switch(rand(1,N)){
case 1: setd ".Ex$",getd(".Ex$")+"First"; break;
case 2: setd ".Ex$",getd(".Ex$")+"Second"; break;
...
case N: setd ".Ex$",getd(".Ex$")+"N"; break;
}
}
In the end .Ex$ should be approximately so:
First, Fifth, Second - It is correct
First, Fifth, First -It is not correct, Because repeats...