Simba Code:
Procedure MmmWeGotOff(RedTu, LeWait, rWait: Integer);
going right as I post this, will look back asap 
Simba Code:
(*
MmmWeGotOff
~~~~~~~~
.. code-block:: pascal
Procedure MmmWeGotOff(RedTu: Variant);
Moves the mouse to the choosen side of the screen, replicating
the use of a human to move thier mouse "off-screen" as if
browsing another part of their computer.
(What do you do when you browsing "other websites?")
Int Type:
1 = Go top side, off-screen
2 = Go bottom side, off-screen
3 = Go left side, off-screen
4 = Go right side, off-screen
.. note::
by Le Jingle.
Example:
.. code-block:: pascal
MmmWeGotOff(Random(4), 0, 0);
*)
Procedure MmmWeGotOff(RedTu, LeWait, rWait: Integer);
Var
w, h, rx, ry: Integer;
Begin
GetClientDimensions(w, h);
rx := RandomRange(0, w);
ry := RandomRange(0, h);
Case (RedTu) Of
0..1: MMouse(w, -10, rx, 0);
2: MMouse(w, h+10, rx, 0);
3: MMouse(-10, h, 0, ry);
4: MMouse(w+10, h, 0, ry);
End;
Wait(LeWait+Random(rWait));
End;