View Full Version : ClickMouse is really detective?What else is there!?
Ilikepie1995
06-14-2007, 07:43 PM
Iam not that good at scripting and i want to know what else is there after click mouse,movemousesmooth,that stuff cause its really detective right ?i want to know what are those codes. For example iam making a fletcher.and i want it to string bows.So how i make it to like find bankbooth color,right click it, choose option quickly , find bs withraw them,find bows withraw, exit bank screen,then string the bows?
-I would love to know that tnx to ppl who helped.
Jason2gs
06-14-2007, 07:49 PM
program New;
{.include SRL/SRL.Scar}
procedure Examples;
begin
MMouse(0, 0, 2, 2); // Moves the mouse to
// the point 0, 0, with a randomness of
// 2x, and 2y.
// Basically, it makes a 2x2 mousebox
// around 0, 0, and moves the mouse
// randomly inside of it.
Mouse(0, 0, 2, 2, True); // Same as
// MMouse, but it moves and right
// clicks inside of the mousebox
ChooseOption(x, y, 'Name'); // Looks for
// an option with the caption "name"
// and clicks.
end;
begin
SetupSRL;
Examples;
end.
Those are just a few of the commands you mentioned for. There are loads more in SRL. (Just look around for em in the include.)
IEatJ00erBaybees
06-14-2007, 07:50 PM
Add in this at the top
{.include SRL/SRL.scar}
Then replace Movemouse with
MMouse(x, y, 2, 2);
The 2's are random x's and y's to add to the normal.
For clickmouse,
Mouse(x, y, 2, 2, true);
PwNZoRNooB
06-14-2007, 08:18 PM
ClickMouse is just inhumane.
When you click the mouse you hold the button down for a fraction of second, the ClickMouse just clicks it so fast that no human could ever achieve that clicking speed, simple 'ey? :)
Jason2gs
06-14-2007, 08:26 PM
All the more proof that SCAR is l33t :p
3Garrett3
06-14-2007, 08:43 PM
WAIT!
begin
if (SRL_Smooth) then
begin
MMouse(mousex, mousey, ranx, rany);
Wait(60 + Random(30));
GetMousePos(b, c);
HoldMouse(b + 1, c, left);
repeat
Wait(20 + Random(30));
a := a + 1;
until (a > 4);
GetMousePos(b, c);
ReleaseMouse(b, c, left);
end else
begin
MMouse(mousex, mousey, ranx, rany);
Wait(10 + Random(30));
GetMousePos(b, c);
ClickMouse(b, c, left);
end;
This has clickmouse in it? What is SRL_Smooth? Cause if it isnt true, it uses clickmouse? :confused:
EDIT:
const
SRL_Smooth = True;
I guess that it is a const, so you can set it to false, but i dont see why you would want to :) I guess SRL is leet. SCAR Functions just arnt as leet as SRL :) :p
Jason2gs
06-14-2007, 08:57 PM
Yes, except SRL is a spawn of SCAR :p
Everything SRL can do, SCAR can do too :)
alach11
06-15-2007, 04:57 AM
Everything SCAR can do, SRL can do better. o.O
wired16
06-15-2007, 05:00 AM
srl cant do shit without scar :D
Rune Hacker
06-15-2007, 05:33 AM
SRL stands for Scar Resource Library so it has many new, much better functions. Scar wasn't made specificaly for runescape, so SRL helps it. ClickMouse is VERY un-himan like, it doesn't move the mouse, just teliportsit, and stuff like that while the SRL MMouse and Mouse are very human like and un-detectable. You can find many useful finctions inside your SRL folder(probably C:\Program Files\SCAR 3.06\includes\SRL\SRL)
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.