How would I show the random integer chosen in the Debug?
I am just learning scripting and trying to customize for things in a script.
So:
Wait(RandomRange(10000, 45000));
I would like to know the random number it chooses.
Thanks
How would I show the random integer chosen in the Debug?
I am just learning scripting and trying to customize for things in a script.
So:
Wait(RandomRange(10000, 45000));
I would like to know the random number it chooses.
Thanks
Simba Code:program new;
var
x: integer;
begin
x := RandomRange(10000, 45000);
writeln(x);
wait(x);
end.
There are currently 1 users browsing this thread. (0 members and 1 guests)