[ProjectRS06] Universal Pickpocketer
Code:
program PRS06_PickPocketer;
var
pickpocket,
X, Y: Integer;
procedure ClickColor;
begin
if (FindColor(X, Y, COLOR_OF_NPC_HERE, 0, 0, 760, 500)) then
begin
Status('Looking for color...');
MoveMouse(X, Y);
GetMousePos(X, Y);
Wait(300 + Random(50));
ClickMouse(X, Y, mouse_right);
end;
end;
procedure Steal;
begin
pickpocket := BitmapFromString(71, 14, 'meJzdk0EOwCAIBP2dH+i1/3+GvR' + 'nCugWlJFrDAYmuDEK97vpHa2ItXMxLKa5QSpmV6heToJzKw7SlwhT' + 'XVlDqMEI5AY+A6k4/IH0cPda3bEj98SllM4gU6pW+2EW5ZQp5yip5' + 'FXxpS6zGUG3BjyubDex/usG/fwWFysibAcWaIQ7ladQI1Ps4ywFk9' + 'TSH11RGcfxEmb+aJhbHKqHP6skU/Mp4cpgbUsSN/fvRtgPUA8ABJPo=');
if (FindBitmap(pickpocket, X, Y)) then
begin
Status('Stealing..');
MoveMouse(X, Y);
GetMousePos(X, Y);
ClickMouse(X, Y, mouse_left);
end;
FreeBitmap(pickpocket);
end;
begin
ActivateClient;
ClearDebug;
repeat
ClickColor;
Wait(300);
Steal;
until(isKeyDown(113));
end.
Change
COLOR_OF_NPC_HERE
to the color of the npc you want to steal from.
The script will look for color and right click, and look for the word "pickpocket"
it will work with any NPC that has the "pickpocket" option, farmers, master farmers, heros, paladins, guards, knights, men etc.