View Full Version : is this right?
Here2help
03-03-2012, 09:52 PM
var
x, y:Integer;
begin
MoveMouse(542, 197);
MouseSpeed := 1;
HoldMouse(542, 197, 1);
MoveMouse(21, 142);
ReleaseMouse(x, y, 1);
end.
In the "MouseSpeed := number"
Is the higher the number the faster the mouse speed? Or the lower the number? If lower does going into decimals make it go even faster.
radiclerobby
03-04-2012, 08:01 AM
higher the number faster the speed, also you have to set x, and y as a number for your script to work right or else it will just release the mouse at 0, 0 on your screen. Good luck :).
var
x, y:Integer;
begin
MoveMouse(542, 197);
MouseSpeed := 1;
HoldMouse(542, 197, 1);
MoveMouse(21, 142);
ReleaseMouse(x, y, 1);
end.
In the "MouseSpeed := number"
Is the higher the number the faster the mouse speed? Or the lower the number? If lower does going into decimals make it go even faster.
you are correct the higher the number the faster the mouse goes. Going into Decimals doesnt make it go faster.
YoHoJo
03-04-2012, 08:06 AM
MouseSpeed is something in SRL, not in Simba.
So without including SRL and calling SetupSRL MouseSpeed doesn't do anything.
Is this a script for runescape or something else?
Because MoveMouse is instant/as fast as can be already.
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.