Edit: OKAY I AM SORRY I AM DUMB! I remembered what to do. As it turns out Random(2) actually picks a random number between 0 and 1 - yea it makes sense I know. I only remembered that because of good ol' C++.... Anyways if you want to virtual-slap me go for it. As for this thread - NO MORE TELLING ME HOW DUMB I AM.
SideNote: what is funny is that nobody else actually figured out what was wrong either hehe...
Okay I am writing a script and for some reason I am not gettin good results with cases. I know how to use them and I know I am missing one tiny crappy thing. When I run it, it always chooses option 1, never option 2.
SCAR Code:
case (RandomRange(1,2)) of
1: begin
Mouse(x, y, 3, 3, False);
ChooseOption('ine');
end;
2: Mouse(x, y, 3, 3, True);
end;
I didn't have that begin, end at first but added it to see if it would help...
Hope someone will point out my stupid errors
... Thanks...