
Originally Posted by
Grihmm
Well I just cleaned 84k tarromins with your script. It worked great. However, I'd like to give a message to the impatient noobs that sell below mid. I had calculated this to be a substantial gain, even without making into unf pots. Now, if I sell without making unf pots I will lose about 6m. SELL AT MID PRICE OR DON'T USE THE SCRIPT. You make it worse for yourself and everyone else. Tarromins have dropped about 60gp in a DAY. Show some restraint.
Im not a pro in the runescape economy, but i believe it has to do with how much herbs are wanted and how much herbs are offered. The more offered, the lower the price. The less offered and the more wanted, will get the price up. This is just like it's in the real world. Has nothing to do with the price you sell it at. If you sell it at a higher price, the offer will actually increase and the requested amount will fall. Due to the fact that jagex looks at the "closed deals" (actually sold and bought). So the price would drop even more.
Edit: Also your antiban is not implemented in your main loop. Fix that. And change the antiban, due to the fact that it will use the last option, practically all the time. It will be the same 80% of the time.
Simba Code:
procedure AntiBan;
var j, WTime, SleepT1, SleepT2 :integer;
begin
j := random(100)
WTime := 7000 + random(500);
SleepT1 := 500 + random(2000);
SleepT2 := WTime - SleepT1 + random(1000);
case j of
0..5: begin
sleep(SleepT1);
Check_for_text;
HoverSkill ('Herblore', False);
sleep(SleepT2 + random(5000));
GameTab(tab_Inv);
end;
9..14:
begin
sleep(SleepT1);
Check_for_text;
PickUpMouse;
sleep(SleepT2);
end;
19..26:
begin
sleep(SleepT1);
Check_for_text;
RandomRClick;
sleep(SleepT2);
end;
30..37:
begin
sleep(SleepT1);
Check_for_text;
sleep(SleepT2);
GameTab(tab_Inv);
end;
45..49:
begin
sleep(SleepT1);
Check_for_text;
ExamineInv;
sleep(SleepT2);
end;
68..76:
begin
sleep(7000 + random(500));
end;
end;
end;
This is how i made the antiban in your script.