PHP Code:
var
TextStar, WithdrawX, TimesChecked : integer;
procedure Bitmaps;
begin
TextStar := BitmapFromString(8, 6, 'z78DA3330C0062C90486' +
'2007EF516249294B887723351C501D8B236B1');
WithdrawX := BitmapFromString(6, 10, 'z78DA737343000324E086' +
'03E052439E2E5C6A70994F890BF1BB96BA2663AA01005AD75719');
end;
procedure WithdrawBitmap(Bitmap, Amount : Integer);
begin
if(BankScreen)and(TimesChecked < 4)then
begin
TimesChecked := TimesChecked+1;
if(FindBitMapToleranceIn(Bitmap, X, Y, 5, 5, 498, 323, 10))then
begin
Wait(200+Random(300));
Mouse(X, Y, 8, 8, False);
repeat
Wait(200);
until(FindBitmapToleranceIn(WithdrawX, X, Y, 5, 5, 498, 323, 5));
if(FindBitMapToleranceIn(WithdrawX, X, Y, 5, 5, 498, 323, 5))then
begin
Wait(400);
Mouse(X, Y, 0, 0, True);
repeat
Wait(400);
until(FindBitMapToleranceIn(TextStar, X, Y, 247, 402, 264, 417, 5));
Wait(400);
TypeSend(IntToStr(Amount));
Wait(400);
end;
end else
if(GetColor(474, 75) = 5531254)then
begin
MMouse(474, 278, 0, 0);
Wait(200+Random(100));
Holdmouse(474, 278, True);
repeat
Wait(10);
until(GetColor(473, 99) = 1777699);
ReleaseMouse(474, 278, True);
Wait(300+Random(200));
WithdrawBitmap(Bitmap, Amount);
end else
if(GetColor(472, 75) = 1777699)then
begin
FixBank;
Wait(300+Random(200));
WithdrawBitmap(Bitmap, Amount);
end;
end;
end;