and change this, to avoid RelocateAttempts from increasing, causing my character to logout when the only yew tree was gone for like 6 seconds :)
in
Skills.simba
That AutoInvfull function
Simba Code:
end else begin
if (forceFail) then
Exit;
if (waitTime > 0) then
Continue;
if (MSI_Relocate(MSI_Players[CurrentPlayer].Location)) then
begin
tTime := RandomRange(60000, 120000); // Random 1-2 minutes
MSI_SubDebug('Waiting ' + IntToStr(tTime) + ' ms before relocating again');
MarkTime(waitTime);
Break;
end else
begin
with MSI_Players[CurrentPlayer].Scripts[CurrentScript] do
Dec(RelocateAttempts[CurrentPlayer ]);
end;
Wait(1500 + Random(1500));
end;
Those three will make the script (port sarim yews) run, but when the tree is down, it still constantly rotates trying to find the yew (hovering over close trees).