Welcome!

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

Sign up now!

Resolved Using this client is a VERY inefficient way to farm golden rocks

Joined
Nov 3, 2013
Messages
2,387
And that when it's not even a problem that you get them since you can deposit them in your bank. After getting two of them you never get them again so wouldn't it be better to have the bot collect them instead. I mean they also do give you like 10-15k experience too for practically no work at all.

<Mandatory @Cloud tag goes here>
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,044
The issue is that random events that put items in your inventory can break certain bots that do not handle edge cases well. That is why the client takes a conservative approach to handling them. It is the bot author's responsibility to then disable these anti-randoms if they are not a threat to a bot's functionality. The conservative approach we take has saved plenty of accounts from bans I'm sure, but there is no excuse for a bot author not deciding for themselves.

Tags so our big dogs can look into their products: @SlashnHax @Defeat3d @Infinite Inferno @Savior @Ozzy @Aidden @Eagles13
 
tl;dr Bot author's responsibility. Strongly urge them to consider disabling the anti-random if their bot allows for it.
 
Joined
Dec 10, 2014
Messages
3,255
Golden rocks = strange rocks?
Code:
if(Environment.isRS3())
    GameEvents.get(GameEvents.RS3.UNEXPECTED_ITEM_HANDLER.getName()).disable();
 
Author of MaxiBots
Joined
Dec 3, 2013
Messages
6,770
The issue is that random events that put items in your inventory can break certain bots that do not handle edge cases well. That is why the client takes a conservative approach to handling them. It is the bot author's responsibility to then disable these anti-randoms if they are not a threat to a bot's functionality. The conservative approach we take has saved plenty of accounts from bans I'm sure, but there is no excuse for a bot author not deciding for themselves.

Tags so our big dogs can look into their products: @SlashnHax @Defeat3d @Infinite Inferno @Savior @Ozzy @Aidden @Eagles13
 
tl;dr Bot author's responsibility. Strongly urge them to consider disabling the anti-random if their bot allows for it.
Pfft i think you got the order of big dogs wrong m8
 
Java Warlord
Joined
Nov 17, 2014
Messages
4,906
Would be cool to see an option for that in the settings menu, where you can select which of the items should be destroyed and which not.
 
Joined
Jul 24, 2014
Messages
633
Step 1: get the bag for collecting the rocks
Step 2: equip the bag in your pocket slot
Step 3: run your favourite bot
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,044
Would be cool to see an option for that in the settings menu, where you can select which of the items should be destroyed and which not.
It's not on a per user basis, but a per bot basis. A bot's ability to handle unexpected inventory items is binary, so having control over specific items makes no difference.
 
Primate
Joined
Oct 30, 2014
Messages
3,458
@Arbiter

Are we able to disable certain item names from popping the item handler? Or even disable all of them except from ones we specify? Would make stuff a lot easier..
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,044
@Arbiter

Are we able to disable certain item names from popping the item handler? Or even disable all of them except from ones we specify? Would make stuff a lot easier..
Don't see why that's needed. The bot can either handle all of them or none of them; it's a binary property of the bot's functionality.
 
Top