I'm rather new to this since I only really do Java/C++ stuff so I was wondering how to translate something like this.
int x = (int)(Math.random() * 5)
if(x == 3) {
//moves the mouse to (3, 5)
}
I'm rather new to this since I only really do Java/C++ stuff so I was wondering how to translate something like this.
int x = (int)(Math.random() * 5)
if(x == 3) {
//moves the mouse to (3, 5)
}
Simba Code:var eee: integer;
eee := Random(3);
if (eee = 0) then
MMouse(3,5,0,0);
random(3) = 4 chances, 0..3. MMouse's 2nd parms are for randomness.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
Thank you.
Goodness Harry, at least promote decent standards...
Simba Code:var
eee: integer;
begin
eee := Random(3);
if (eee = 0) then
MMouse(3,5,0,0);
end;
Simply a GOD beast...
My Tutorials
There are currently 1 users browsing this thread. (0 members and 1 guests)