Jump to content

Gunman

Super Moderator
  • Posts

    3518
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Gunman

  1. Alch is Bogla (The original owner before he sold it)
  2. New mouse is a different mouse algorithm which changes the way the mouse moves. This new algorithm also allows the scripters the ability to tweak the mouse settings, such as speed, in their script code.
  3. As long as it's only a price check and you don't drop in subtly/obvious hints that you're trying to sell it off, then yes it's fine. 100 post count to sell accounts(Any and all accounts) is the only market related restriction you have, you're free to sell currency and such.
  4. I have banned @instantjad for scamming as he hasn't responded in 24 hours and shows no sign of wanting to get any of this situation under control on or off-site. Staff will be discussing how much liability Khal will be held for.
  5. @FuryShark Thanks for the report it has been removed.
  6. @hidden arrow I have put him in DNT and requested him to respond here. @instantjad
  7. @thattada https://www.youtube.com/watch?v=ROmiCpoBeDQ
  8. onGameTick isn't supported in Mirror Mode. I think MGI said he won't be adding support either because of detection or something, I don't really know why. https://osbot.org/api/org/osbot/rs07/event/interaction/MouseMoveProfile.html getBot().getMouseMoveProfile().setSpeedBaseTime(0); // What controls how fast the mouse is. Lower is faster getBot().getMouseMoveProfile().getSpeedBaseTime(); //Get also get the value so you can see the base settings. getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) .setDeviation(0) .setOvershoots(0) .setSpeedBaseTime(0) .setFlowSpeedModifier(0) .setMinOvershootDistance(0) .setFlowVariety(MouseMoveProfile.FlowVariety.MEDIUM) .setOvershoots(0) ); New mouse has to be enabled to use this ^
  9. Always try to keep it 1 interaction per cycle of the onLoop. So to do that here you can do as the guy said above by reversing the order. if (getInventory().contains("Jug")) { log("Dropping"); if (getInventory().dropAll("Jug")) { ConditionalSleep2.sleep(1200, ()-> !getInventory().contains("Jug")); } } else if (getInventory().contains("Jug of wine") && myPlayer().getHealthPercent() <= 60) { log("Drinking"); if (getInventory().interact("Drink", "Jug of wine")) { //Depends on your needs but you can sleep or not here ConditionalSleep2.sleep(1200, ()-> myPlayer().getHealthPercent() > 60); } } But if you want it purely done after drinking then you will have to do it Heiz way or put the check and dropping of "Jug" at the top of your onLoop. P.S. Reason it ignores the Jug btw is because every game tick is ~600ms, so when you drank the wine you were also checking for Jug on the same game tick. It would take a game tick for the game to make the wine go from Jug of wine to Jug.
  10. Don't forget to take in account for mouse speed
  11. No, it does not. No script on the SDN does this.
  12. The only client that's recommend to hook with mirror is Jagex's client. Only other client that officially gained any support was Rune lite, but isn't recommended. Only added because of over whelming demand
  13. Either it works or it doesn't. Rune lite support is extremely buggy. Doesn't work for most people from what I have heard and seen around the forums.
  14. Gunman

    Deleted

    @Dogcube Hid your reposts. Methods like this private boolean needToHeal(){ int healPercent = 45; if(healPercent > getHpPercent()){ return true; }else{ return false; } } Can be simplified to this private boolean needToHeal() { int healPercent = 45; return healPercent > getHpPercent(); } And make sure you use braces ( these -> {} ) on your if statements. Scripting tutorial linked below. https://osbot.org/forum/topic/115124-explvs-scripting-101/
  15. Make an account creator scrub
  16. Try running jar fix. https://johann.loefflmann.net/en/software/jarfix/index.html
  17. Gunman

    AIO MTA

    Some of the settings widget ids changed last update, might be why it's stuck. I don't know what it might be trying to turn on or off or change Might help Eagle if you provide if this is on Mirror or injection and if it only happens on Mirror if it is. @Eagle Scripts ^
  18. If you don't have java 8 installed, go to java.com and install java 8. Then open it as a jar file. May need to click look for another app on this pc and navigate to the folder.
  19. @Steven Jay Me boi @Elliott sells US proxies for RS. He's gone on vacation atm so he won't be selling for like another week. (They're like $4 each but are high quality is why. Not really needed for 1 account btw since you need to buy a min of 3.) Also for the first couple bans you generally can quash them for hijacking if you use a proxy on them.
  20. Not allowed to sell accounts with TWC.
  21. @Malcolm User has been banned. @Fratem If that is you in the screenshots above, check them UIDs please. Dispute closed.
×
×
  • Create New...