Yes, it would work in Vip area, just not if you wanted to bank. but with shark suit that does not matter lol!
In terms of Reputation, i might come up with another way!
Thanks man, at the moment how the rep works is it checks for the fish in inventory and adds manually the rep. But with the shark suit it wont detect. Im not sure there i a current way to detect Reputation like it was Xp or something as the update is still quite new.
I have not unlocked skilling...
Yes i will add this as an option when i get back home on sunday.
Yes when i get back home on sunday i will add some way to combat this. But i dont have acsess to the shark suit to test.
Ok this is weird, This is how my current bar is set up (http://i.imgur.com/i6HThx2.png)
and when i do
ActionBarQueryResults a = ActionBar.newQuery().filled(true).results();
System.out.println(a);
Results:
And if i do:
ActionBarQueryResults a = ActionBar.newQuery().filled(false).results()...
Yeah thats basilica what i did!
ActionBarQueryResults a = ActionBar.newQuery().empty(true).results();
SpriteItem b = Inventory.newQuery().names("Raw catfish").results().first();
Mouse.drag(b.getInteractionPoint(), a.get(0).getInteractionPoint());
Execution.delayUntil(() -> !Mouse.isMoving()...
I did and there is very little information about getting an item on to the action bar. At the moment i have my bot working fine if you manually do it. But i would like it so the bot will do it.
What is the best way to get an item that is currently in your inventory onto the action bar?
This is useful for power-mining and fishing.
I cant seem to find a way to get it to do it, ether automatically or work out a way to get the client to drag the item.
Thanks.
When working at the Quarry in the Desert to mine Granite on rs3. When inventory is full the bot just stops and does nothing. When ether bank and drop is selected. It does not drop the granite. Basically the bot just breaks. Just thought you should know if you did not know already.
BTW for anybody wondering Oracle has stoped work on the scene builder so here is the new download Scene Builder. The location is in your appdata then scenebuilder! Hope this helped people!
If you still not got it worked then do this:
private static boolean spin() {
if (isProductScreenOpen()) {
Execution.delay(200, 700);
Keyboard.typeKey(" ");
return Execution.delayUntil(() -> !isProductScreenOpen(), 5000);
}
return...