Nice script.
Although, how would I go about changing the time it takes before it banks the potions?
Code:
procedure PUse;
var
Counter: Integer;
begin
Status('PUse');
if not LoggedIn then
NextPlayer(False);
if FindNormalRandoms or FindNonInventoryRandoms then
Exit;
if WaitFunc(@InvFull,RandomRange(10,50),RandomRange(2000,2750)) then
begin
repeat
InvMouse(1+Random(13),mouse_Left);
Wait(RandomRange(200,400));
Invmouse(15+Random(13),mouse_Left);
Inc(Counter);
if WaitFunc(@HerbMenu,50 + Random(25),2000 + Random(750)) then
Break;
until(Counter > 3);
end else
begin
WriteLn('Not a full inventory @PUse');
TerminateScript;
end;
The bolded section is what Id assume it to be. I haven't really gotten time to watch all of the tutorial videos.
Sincerely,
Noob.