Jump to content

Flamezzz

Members
  • Posts

    763
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Flamezzz

  1. GraphicUtilities.drawModel
  2. For client-side web dev you'll need to use a framework, so I guess that's the next step. Server-side you can either go with the traditional asp/php/sql stuff or the more modern languages and databases (python, ruby on rails etc. with couchdb, mongodb...).
  3. Do they still send mouse positions to the server?
  4. Nah imo it provides all the stuff 99% of the scripts need. I mean, you don't expect to gain construction xp while fishing or something...
  5. You could use something like proxifier to use mirror with proxies. Edit: osbuddy has a jar download, you should be able to pass proxy args to the JVM when running it from the command line. A quick google search resulted in this: https://rsbuddy.com/community/topic/9024-proxy-support/
  6. No, but yes the script dev needs the full text in the console.
  7. Weath on holiday -> my 24/7 f2p farm ran for an entire week... Gold prices will drop even more if this guy doesn't return to the office soon.
  8. Just iterate all skills: int x = 100, y = 80; for(Skill s : Skill.values()) { if(experienceTracker.getGainedXP(s) > 0) { g.drawString(s.toString()+": "+experienceTracker.getGainedXP(s), x, y+=20); } }
  9. if (!inventory.isFull()) return State.DROP; You probably want to drop when inventory.isFull() Also, to not drop your axe you can use a filter: inventory.dropAllExcept(item -> item.getName().contains("axe"));
  10. This should work: antiBan.unregisterBehavior(AntiBan.BehaviorType.CAMERA_SHIFT); antiBan.unregisterBehavior(AntiBan.BehaviorType.RANDOM_MOUSE_MOVEMENT); antiBan.unregisterBehavior(AntiBan.BehaviorType.SLIGHT_MOUSE_MOVEMENT);
  11. You could use http://osbot.org/api/org/osbot/rs07/api/util/ExperienceTracker.html Put experienceTracker.startAll(); in onStart()
  12. You could sleep when bot.getRandomExecutor().forEvent(RandomEvent.WELCOME_SOLVER).shouldActivate() == true, assuming the widget is actually visible when this happens.
  13. If you want to keep the keys sorted use a treemap like this: TreeMap<Integer, Integer> map = new TreeMap<>(); map.put(100, 200); map.put(150, 300); map.put(1, 200); map.put(-100, 800); map.put(-50, 8000); map.put(900, 2000); map.put(700, 6000); log("Smallest key: " + map.firstKey() + " -> " + map.get(map.firstKey())); log("Largest key: " + map.lastKey() + " -> " + map.get(map.lastKey())); log("Iterating keys:"); for(int k : map.descendingKeySet()) { log(k); }
  14. I can sell you 5m, $1.8/m. You can find me in the chatbox.
  15. Mhm... I've tried, without success, both overriding the AutoLogin solver and unregistering/registering it
  16. For the latter I think this could help you: client.isLoggedIn() and bot.getRandomExecutor().unregisterHook(RandomEvent.AUTO_LOGIN)
  17. And if that doesn't help you, you could always get some more data points and use some sort of regression / least squares.
  18. Nothing wrong with the standard client, it's just that lots of players with a similar pattern causes bans.
  19. There's software to minimize applications into the system tray.
×
×
  • Create New...