Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/28/22 in all areas

  1. CzarScripts #1 Bots LATEST BOTS If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    2 points
  2. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
    1 point
  3. RUNNING 4 SESSIONS PER NODE NODE [2] WITH 4 MORE BOTS Showcase: 8 bots same time generating ~2.8m/hr which equals to roughly ~67m/day! 1 MULE PER MACHINE FAQ What is the script ID? 782 Can I run this bot with the Bot Manager? Yes, the parameters will be the saved file name in the setup window, you will see once you run the bot. Can I request features added to this bot? Yes, I am always listening to requests and adding new features all the time!
    1 point
  4. My mistake - it wasn't working because i did not enter the # of pray pots in the first screen... i had them in my inventory but it wouldn't sip them until i chose a quantity. all good now, thank you!
    1 point
  5. https://osbot.org/forum/topic/149686-ultimate-aio-fighter/ https://osbot.org/forum/store/product/696-ultimate-aio-fighter/
    1 point
  6. I've implemented a new version of that quest for iron men, the bot will now obtain the spade from a spawn I found on the 2nd floor of Varrock general store There is no randomization option, that can be done by creating multiple presets instead; The problem with completely random order would be that some quests are requirements for other quests which makes order critical in some cases
    1 point
  7. I cant disagree with you there, trial and error can however lead to better things I remember when me and @Muffins wanted to see who can get 85 mining first back when @Khaleesi released his MLM script
    1 point
  8. Unable to see restocking and sleep patterns settings in GUI. Was working for a couple weeks prior. Update: Changed resolution of screen and it worked. Would be nice if GUI worked on all resolutions though.
    1 point
  9. Used before and very quality script! Can get you many levels before breaks. I recommend doing 1-2 days on using small breaks and then rotating with quests/other skills ! Would not bot this for days on days !
    1 point
  10. Okay. Gimme a few minutes I don't want to spoon feed everything, but this should be a good basis. Also note that this class extends the API so you wont have to use script.client or script.inventory. The thread will automatically stop after a script has stopped. import org.osbot.rs07.Bot; import org.osbot.rs07.script.API; import java.util.ArrayList; import java.util.List; /** * Created by Xerion on 16-1-2017. */ public class InventoryObserver extends API { private List<InventoryListener> listeners = new ArrayList<>(); /** * * @param bot */ public InventoryObserver(Bot bot){ this.exchangeContext(bot); new Thread(() -> { logger.debug("Started: InventoryWatcher"); while (isRunning()) { try { sleep(loop()); } catch (InterruptedException e) { e.printStackTrace(); } } logger.debug("Stopped: InventoryWatcher"); }).start(); } @[member=Override] public void initializeModule() { } /** * * @[member=Return] */ private int loop(){ /** * Add your code here to check if item is added/removed */ return 100; } /** * * @[member=Return] True if a script is running */ private boolean isRunning(){ return bot.getScriptExecutor().getCurrent() != null; } /** * * @param listener */ public void addListener(InventoryListener listener) { listeners.add(listener); } /** * * @param listener */ public void removeListener(InventoryListener listener) { if(listener != null && listeners.contains(listener)) { listeners.remove(listener); } } }
    1 point
×
×
  • Create New...