
Originally Posted by
Ownt?
This is a script for the website
www.pawngame.com It's a 2d side scroller. I'm trying to make an auto hs'er. Please help heres the code
SCAR Code:
program PawnGameHs;
var
x , y, Pawn :Integer;
begin
Pawn := LoadBitmap('Name Of my bitmap here');
if (FindBitmap(Pawn,x,y)) then
ClickMouse(x,y, true);
repeat until false;
end.
Please help.
SCAR Code:
program PawnGameHs;
var
x , y, Pawn :Integer;
begin
Pawn := LoadBitmap('Name Of my bitmap here');
repeat
if (FindBitmap(Pawn,x,y)) then
ClickMouse(x,y, true);
until false;
end.
There?