i need help to do a script to a game the only thing i need is so
wenn it will see a coler that i set out
it will prees right in 2 sec and
the repet if it see the coler ther agine
can anyone help me
i need help to do a script to a game the only thing i need is so
wenn it will see a coler that i set out
it will prees right in 2 sec and
the repet if it see the coler ther agine
can anyone help me
I dont fully understand what you are asking for. Do you need a Right Click or a Right Arrow hit?
Something like this?
SCAR Code:program New;
var
x,y: Integer;
const
Color = 0; // Change the 0 to your color
// Hit F1 to stop the script
begin
repeat
if(FindColor(x,y,Color,0,0,700,700))then // You could change the coordinates
begin
Wait(2000);
ClickMouse(x,y,False);
end;
until(IsFKeyDown(1));
end.
METAL HEAD FOR LIFE!!!
Color Picked: 16711680 at (536, 381)
can you help me i am a noob
that coler and the x,y thing
can you fix it so wenn it see that coler in that x,y it will prees right key
i want it to prees right on the keyboard in 2 seconds
that should workSCAR Code:program New;
var
x,y: Integer;
const
Color = 16711680; // Change the 0 to your color
// Hit F1 to stop the script
begin
repeat
if(FindColor(x,y,Color,0,0,700,700))then // You could change the coordinates
begin
Wait(2000);
ClickMouse(x,y,False);
end;
until(IsFKeyDown(1));
end.
please note
i only changed the color for you.
gerauchert did the rest![]()
i want it to prees right on the keyboard in 2 seconds
insted of ClickMouse(x,y,False);
I just changed it again - I'm pretty sure SendArrow 3 is right, but I'm not sure, and I changed the co-ords to only look for the colour a bit around where you said, though you'll need to change them if it doesn't find it.
SCAR Code:program New;
var
x,y: Integer;
const
Color = 16711680; // Change the 0 to your color
// Hit F1 to stop the script
begin
repeat
if(FindColor(x,y,Color,530, 375,540,385))then // You could change the coordinates
begin
Wait(2000);
SendArrowKeyWait(3, 50);
end;
until(IsFKeyDown(1));
end.
By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.
SCAR Code:KeyDown(VK_Right);
Wait(random(2000));
KeyUp(VK_Right);
That will press the right arrow, then hold it for 2 seconds, then lift it up. Is that what you wanted?
gerauchert that gave me the start script and then Dude Richard
that fixed the last thing thx
Lol just need 3 more rep![]()
None of ure buisness!
I knows what it is
Not telling though hehe
I think my rep is worth 3.
Yes, I can rep you, and btw i haves 52 nows!
There are currently 1 users browsing this thread. (0 members and 1 guests)