-
Opposite Mouse!
Well, I was bored. So yeah :D
Basically, it inverts the mouse movements.
PHP Code:
// By Mayazcherquoi/Dan's The Man.
// - Run the script by the run button to run.
// - Either manage to press the stop button or press F3 to stop the script.
// - Enjoy!
program OppositeMouse;
var
cdX, cdY: Integer;
X, Y, sX, sY: Integer;
begin
SetDesktopAsClient;
GetClientDimensions(cdX, cdY);
repeat
GetMousePos(X, Y);
Sleep(1);
GetMousePos(sX, sY);
X := X + ((sX - X) * -1);
Y := Y + ((sY - Y) * -1);
if(X < 1) then
X := 1 else
if(X >= cdX - 1) then
X := cdX - 2;
if(Y < 1) then
Y := 1 else
if(Y >= cdY - 1) then
Y := cdY - 2;
MoveMouse(X, Y);
Until(IsKeyDown(VK_F3));
end.
Enjoy! Cos' it only took a couple of seconds to make :/
-
Lol, i ran this, then my autofighter. It failed horribly =DD
pretty neat this
-
-
Hehe, thats entertaining.
-
-
This is actually pretty cool.
It might be an interesting "prank" to do on some unsuspecting victims.
-
im attempting to play rs with this, its not hard actually, but fun script :D
i'll be using this as a prank soon
-
-
Lol, it was kinda annoying to make, because at first I thought all you needed to do was just:
PHP Code:
repeat
GetMousePos(X, Y);
Sleep(1);
GetMousePos(sX, sY);
X := X + ((sX - X) * -1);
Y := Y + ((sY - Y) * -1);
MoveMouse(X, Y);
Until(IsKeyDown(VK_F3));
But when you moved it to the edges of the screen, it screwed up. But I tackled it eventually :p
Quote:
Originally Posted by
Wizzup?
Works on Linux too. :D
Of course. What is a Simba script without Linux and Windows support out-of-the-box?
-
Hahaha, this is way more entertaining than it should be.
E: I totally am going to add this to a few friends' startup. mod it to switch to the more hidden mode though. hehe... good stuff.