Jump to content

Delivery

Members
  • Posts

    147
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Delivery

  1. my scripts don't have this problem some methods have been broken temporarily and are being patched
  2. I think it's because you didn't use the bot in the past 3 days, I use osbot every day and I have 400m+ still not hacked yet Start using it every day it might fix
  3. lol just noticed the date on this thread You're welcome
  4. Oh sweet just reloaded the client and it has been fixed
  5. so many more of my accounts banned today the waves won't end
  6. Stealth mode does not need proxifier to use the proxies If you have the account already made then just add the account, add the proxy to osbot (When you launch osbot and have the option for Stealth/Mirror it also has a checkbox for proxy and + button to add new proxy Try adding the proxy (With user:pass auth if it's required) (You might have IP Whiteliste if you don't have user:pass) Then before selecting Stealth click the dropdown box for the proxies and select the ip and then press stealth and it will load the client on that proxy. If the client fails to load OSbot then the proxy is likely HTTP(S) and is the wrong protocol , otherwise it will launch via the proxy No blocks are required nor does proxifier need to be open for the proxy to be used via Stealth (Proxifier is only required for Mirror mode)
  7. are you using Socks proxies or http(s) Proxies, it sounds it's using HTTP(s)
  8. The java client? the one for "All platforms" not the jagex launcher or you will have to research how to make it work with that too..
  9. Depends how you learn, I prefer just downloading open source scripts and giving it a go for myself
  10. Yeah I thought about that for stop but currently to check if paused I have a separate thread checking to see if the onloop is updating a variable, do you know of a default method similar to onExit() like onPause? or something like that
  11. why not just run 50 separate clients and have multiple screens then you can view the clients a bit easier Some people use 2-5 instances on the same client but not usually for p2p, although I believe the random.dat/cache files that are shared regardless of whether you open instances/clients matter more than proxies
  12. don't know if OSbot is detected or if they are just more active at reviewing bots atm. bots got banned again ffs
  13. the issue is the script is constantly doing actions that cause this bug so I can't just stop it at a certain time when 99% of the time it's running it causes this issue. Pressing a key / mouse button when the onloop is <50ms is difficult because I need to be some 0.1 tick nerd to successfully prevent this every time. Do you know how to check ismousepressed / keypressed so I can run this onExit or on pause? I thought about just releasing every key and mouseclick but if this data is submitted to runescape's side then that might be a pattern I don't want to keep sending
  14. that's why I want a defer so if the script is stopped then it calls keyup before exit/ pause
  15. Let's say your script is dropping your inventory and you press Stop / Pause and your mouse is now on the client and the mouse is being pressed down the item gets dragged towards wherever your mouse is and glitches out
  16. Is it possible to make sure that each keydown has a defer for keyup? When I stop / pause scripts it holds and drags an item and bugs out when I am trying to use the bot account
  17. dunno why you take anyone seriously that uses safe and botting in the same sentence lol
  18. I bet you will find a few on github
  19. if you want the most accurate results you should be testing and not asking, if someone found a method to never get banned while botting it would not be posted on a forum thread
  20. Thought I just got greedy with suicide botting too much lol, felt like bans were never coming
  21. Delivery

    Removed

    If you were looking to make an agility script with this you could use an iterator to iterate through the obstacles alternatively you could use a switch statement using code example from Spacecats sand crab killer: Original Source- public State getState() { /* if (this.startScript == 0) { return State.INITIALIZING; } */ if (resetSpot.contains(myPosition())){ return State.FIGHTING; } if (!this.getInventory().contains(this.food)) { return State.BANKING; } if (this.myPlayer().isHitBarVisible() || this.myPlayer().isUnderAttack()) { return State.FIGHTING; } if (SpaceCats_CrabKiller.timer > SpaceCats_CrabKiller.waitingDelay) { return State.RESET; } return State.WAITING; } public int onLoop() throws InterruptedException { switch(this.getState()){ case stage1: // stage 1 stuff here break; case stage2; /stage 2 stuff here break; return 200; } }
×
×
  • Create New...