Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

I would love to make a osrs herb cleaning bot

The man who can
Joined
Dec 14, 2015
Messages
91
I would love to make a basic herb cleaning bot.

Here's what it would do.
Open bank
Collect 28 of whatever herb selected
Click on the 28 herbs one at a time
Open bank
Deposit
Repeat
But I wouldn't know how or where to start
 
12 year old normie
Joined
Jan 8, 2015
Messages
2,769
Bank.open();
Bank.withdraw("Herb name", 28);
SpriteItem herb = Inventory.newQuery().names("Herb name").actions("Clean");
herb.interact("Clean");
Bank.open();
Bank.depositAll();

That in a loop. I'm sure if you know some Java you can figure out the rest. :)

(Don't quote me literally, this is all on the top of my head.)
 
Joined
Dec 9, 2015
Messages
152
Bank.open();
Bank.withdraw("Herb name", 28);
SpriteItem herb = Inventory.newQuery().names("Herb name").actions("Clean");
herb.interact("Clean");
Bank.open();
Bank.depositAll();

That in a loop. I'm sure if you know some Java you can figure out the rest. :)

(Don't quote me literally, this is all on the top of my head.)
Is the runemate api really that easy?

Ps. Don't include the bank opening in the loop.
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Bank.open();
Bank.withdraw("Herb name", 28);
SpriteItem herb = Inventory.newQuery().names("Herb name").actions("Clean");
herb.interact("Clean");
Bank.open();
Bank.depositAll();

That in a loop. I'm sure if you know some Java you can figure out the rest. :)

(Don't quote me literally, this is all on the top of my head.)
f7r5jl1.png

0/10 doesn't work, worst bot author ever.
 
The man who can
Joined
Dec 14, 2015
Messages
91
Please no one steal this lol I really want to make my first bot with it
 
How long would it take for someone to make this and a ui with no background knowledge in Java
 
12 year old normie
Joined
Jan 8, 2015
Messages
2,769
Please no one steal this lol I really want to make my first bot with it
 
How long would it take for someone to make this and a ui with no background knowledge in Java

Hard to say. It isn't quite as literal as RuneMate's API is. Just use resources and see how it's done, learn from that.
 
Top