Jump to content

FushigiBot

Suspended
  • Posts

    619
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by FushigiBot

  1. This means I can get rid of the deselect item methods on my scripts. ;D
  2. Welcome. The learning curve is steep but don't give up.
  3. Lovely. The beta world hop was driving me crazy.
  4. It won't be easily detected. Jagex detection system uses flags and mouse is just not very important. However, mouse recording for rc is not practical as it is likely to get lost easly.
  5. Lol OSBot didn't hack you. There are hundreds (thousands?) of active users. Reset your PC to make sure you don't have any keyloggers and then change all your passwords for everything. If you are new to botting, which I assume you are, check that you didn't use a fake botting client meant to target hack people who are looking to bot for the first time.
  6. I offer free trials so hmu anytime on discord.
  7. Glad you got it to work. Sorry, I don't visit the forums often.
  8. It's not that straightforward, but that's the gist of it.
  9. Probably ain't a chain ban, but you just got caught up in the current banwaves jagex is issuing. Chainbans is when they manually link all your accounts through one or a few accounts.
  10. It really depends on the type of script you are trying to make, but a general rule is to use Classes to instance major portions of the script that differ greatly from others.
  11. Lol anti-ban. Anyways, same old same old. Jagex does these client sweeps from time to time. Next they'll target other clients and finally high level content being run on plugins and shit. Welcome to botting osrs.
  12. You are in for a lot of catching up.
  13. ah, you mean randomized actions. You can do those in a timer and execute them regardless if it's walking or not. It doesm't do anything to reduce bans just so you know. Create various timers for the actions and couple the action with the timer reset. Run these on separate threads.
  14. You don't have to count for that. Just write a separate thread where you check for random events and sleep every 5 secs or so.
  15. It depends on whether Jagex is watching the activity at the moment. Couple months ago rooftops was instant ban on OSBot and other major clients, but it's back to "normal" banrates atm. You could also opt for other courses rather than rooftops.
  16. Nice name. Does only botting count as quitting?
  17. You have to do this manually or run a script that does this for you.
  18. It means you don't have the fossil island teleport unlocked.
  19. If you wrap the interactions correctly, you don't have to worry so much about this. The code loops all the time, and this is quick. If you are worried about the sleep timer being too long, then you could try this: Use custom checks with timers/bools. The two checks you have to watchout for is if the player is moving and a bank booth / bank chest / grand exchange bank booth is visible (or if they are reachable -- up to you). Just reset a timer when those conditions are met separately from your bank interaction. For the open bank ineraction, just sleep until the "open" bool = true, but don't add a long conditional sleep. Here is a rough example (Im not gonna write in the specifics) Define the isVisible variables first, then: if ((isMoving && BankBoothisVisible) || (isMoving && BankChestisVisible) || (isMoving && GrandExchangeBoothisVisible)) { timer = System.currentTimeMillis(); } For the next portion, just check for the timer and "open" bools, then do aconditional sleep until bool "open" comes back as true coupled with your open bank interaction. This sleep shouldnt be too long since you are already checking for whether the bot is moving and reseting a timer.
×
×
  • Create New...