[AFK] Flaxpicker [First script]
Hello. This is a flaxpicker that will pick flax and stop when you reach full bag. There is currently no specific antiban, no antileech (I can't have that as a supporter of free information) and no other fancy stuff other than picking flax.
This script will only do flaxpicking.
Give me you feedback, whether its you oldtimers whining and telling me how ridiculous bad this is, or you newtimers who want to thank me for not adding useless anti-leech.
How to use:
Start when you are at a flaxspot. This is where it should be executed. Remember to have your inventory open so the script can detect how many items you have currently in your bag.
Code:
program Picker;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
const
default = 'Times new roman';
FONT = 9;
Version = '0.1';
//Author = uaexed;
var
x, y: integer;
Procedure CheckInv;
begin
repeat
if FindColorSpiralTolerance(x,y,15065750,0,0,518,338,30) Then
begin
Wait(250+random(100));
MMouse(x,y,0,0);
WriteLn('found flax');
HoldMouse(x, y, 1);
Wait(random(5));
ReleaseMouse(x, y, 1);
Wait(500+random(500));
end;
until(P07_InvFull);
WriteLn('Full bag');
end;
begin
SetupP07Include;
ActivateClient;
CheckInv;
end.
I could of course have more antiban and such, but this is just for afk so you won't be that long away from it.