Looking for methods of levelling Herblore at the GE with limited loss. I am unfamiliair with Herblore, so any advice at what to buy and how to go about making the right potions would be helpfull. I will provide the scripts of course![]()
Looking for methods of levelling Herblore at the GE with limited loss. I am unfamiliair with Herblore, so any advice at what to buy and how to go about making the right potions would be helpfull. I will provide the scripts of course![]()
SRL is a Library of routines made by the SRL community written for the Program Simba.We produce Scripts for the game Runescape.
Nice of you to provide the scripts
Herblore usually turns out at a loss, however, just making unfinished potions usually makes a profit.
Unfinished potion making gives you 0 exp.
A good way to balance it is to make a few inventories of potions and then a few inventories of just unfinished pots.
Or have it make all the unfinished pots first, and then only turn about 70% of them into potionsThat would make the script quite efficient and loss free (you'd have to do the actual calculations of %)
You're probably best of at only breaking even (having no profit/loss) until you're in the high levels, and then at the high levels it'l require less pots to makeup for a loss, or you can even choose to make a profit easily
~RM
Make a script that cleans herbs first, makes the unfinished potions, then makes the potions. It's cheaper than just making potions, but you gain more exp
Or go with RM's way. You earn a good amount of money making unfinished potions. If you are going to bot it, you mine as well just clean herbs, make them into unfinished pots, then sell them. You still get experience, but make money.
Last edited by Runaway; 02-07-2010 at 02:52 PM.

Nice ...
I just started to make a herb cleaner, but I don't want to have a competitor like WT-Fakawi(mine would be surely unused) so I will just share my early observations/thinkings.
Herblore on higher levels will cost a lot money. http://runescape.wikia.com/wiki/Herblore_training <- Ugly, red numbers.
My idea was to clean herbs with no profit, because selling the clean herbs is not always that easy and you want to sell them fast to have money for grimy herbs again. The cleaning itself is fast but got some interesting thing ...(later).
I was doing a research today(I did not know that you will make something like this too ...) and I was buying grimy toadflax 1 gp above mid and sold the clean herbs for the exact same amount of money ea. This way it was bought fairly quick. Maybe herb cleaning is not that fast xp but much much cheaper then making potions.
About the cleaning: I have done a simple loop to click through the inventory(slot by slot) and a lot of herb left dirty. I done it by hand(also faster) and there was less dirty herbs left. Then I modified mouse.scar to have less wait between clicks and the result was less dirty herb again. When the herb doesn't fade a bit right after clicking it will remain dirty. It's something to do with what the game is doing when you are clicking. I (by hand) is always like 2-4 herb "in the future", meaning I still got 2-4 dirty one behind me. I think when a herb becomes clean(in that moment) your input is invalid or something like that. I just don't understand it. I was about to write a function that results true when the herb "fades", something like DidClick. I have tried it with always double clicking the herb and the result was 0% dirty herbs left, but that is very bot-like.
Oups, I didn't want to write this long, sorry and I hope this helps.
I think the script should buy/sell during cleaning because herbs are expensive and you would need lots of lots of herb to run the script for a few hour.
p.s.: I'm really not that "rs expert" I just auto the whole game so this whole idea may be bad.
http://runescape.wikia.com/wiki/Calculators/Herbs
http://runescape.wikia.com/wiki/Calc...nished_potions
EDIT: @RM: I am not sure but selling the unfinished potions means less xp so maybe that method is not that better xp than only cleaning? I haven't tried or investigated it.
Last edited by Sabzi; 02-07-2010 at 05:12 PM.
Cleaning herbs all the way! That's the only way afaik to get it up without too big lossses.
Last edited by Markus; 02-07-2010 at 08:05 PM.
I made a new script, check it out!.
praya pots?
Cleaning herbs!! I brought my old main to 55 or so herblore by just cleaning herbs. I even made money.
You could try by barbarian pots.
You would have to get (2) pots tho, but I think it's still way faster than cleaning herbs. Antipoisons and Super-antis are even profit.
http://runescape.wikia.com/wiki/Calc...arbarian_mixes
You can profit from herblore, but it requires buying and selling at the right times. The only 'sure-fire' way to level herblore while breaking even/profiting is cleaning herbs. But the profit changes every GE update. Cleaning herbs can be really really good money and cleaning the higher level herbs is a good 60k exp a hour atleast if I recall correctly.
Decided to check it out myself, and indeed some herbs are profitable to clean.
clean: http://services.runescape.com/m=item...e=all&members=
grimy: http://services.runescape.com/m=item...e=all&members=
~RM
Yeah cleaning herbs can be profitable, but you don't get crap all exp.
7k exp is not going to get you very far...
Herblore is an expensive skill to level, all I'm going to say.
really the only way you can gain herb lvls quick with scar is if you have mills to buy herbs ingredients and vials. and dont forget you have to fill your vials with water. however the higher lvl ur herb is, the more money you use the less money you lose (that ryhmed haha) because of high demand potions. like prayer pot, super str, etc.
You should get something that does all your herblore stuff, WHILE
farming. ;o
There's always a few bucks to be had with a few extra herbs.![]()
If you clean herbs and only get 7k exp a hour, LOL. WOW, that is SLOW guys. You can get 60k to 100k experience a hour cleaning herbs. It depends on the herb you clean and the method (manually you will prob develop RSI in a hour and won't clean as fast if you were to use mouse keys)
However you don't have to worry about that with SCAR. And basically 100k is the absolute most you will get, which probably requires almost near flawless clicking. I can personally clean 4k herbs a hour using the mouse.
Simple enough for script....
SCAR Code:var ClickTime: integer;
Procedure CleanHerbs;
begin
ClickTime := 300;
for i:= 1 to 28 do
begin
MouseItem(i);
wait(ClickTime + Random(50));
end;
if FindGrime then
IncEx(ClickTime, 50);
end;
begin
repeat
DoBank;
CleanHerbs;
until(not LoggedIn)
end.
Meaning that you bank even if you didn't clean them all. It'll be faster than to attempt to sort through them.
~RM

That function would be very slow. The wait can be lower then 100ms actually and the miss rate is just a bit higher. And then there is a point when faster = less miss too(with mouse.scar edit). As I have written it already before.
Today on the history lesson while I was sleeping I got an idea so I will try that out.
RM intentionally put the clicktime variable there. Different systems and connection speeds require different wait times and clicks. With that variable you can adjust for your systems needs.
On topic: Cleaning herbs can be quite profitable. I just brought an account from 3-57 herblore by just cleaning
It is going very well. Thank you all for your advice. I will report back soon![]()
SRL is a Library of routines made by the SRL community written for the Program Simba.We produce Scripts for the game Runescape.
SRL is a Library of routines made by the SRL community written for the Program Simba.We produce Scripts for the game Runescape.
Currently I quit RuneScape, but I really liked farming/herblore (was over 70 in both), but the best way I thought was farming your own herbs then making potions. Depends on your farming level but I mostly did avantoes, not much profit but very good and fast herb xp.
But if you ONLY want to do herblore, then you could get your own mort myre fungi and either make potions, or sell it. (BTW, This is a VERY good money maker if you have a house with altar/canifis tele and use summoning)
There are currently 1 users browsing this thread. (0 members and 1 guests)