Everything posted by FushigiBot
-
Got hacked
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.
-
Any snippets for eating/walking while in combat?
Glad you got it to work. Sorry, I don't visit the forums often.
-
RuneLite Crashing Upon Boot
You have to use this client.
-
Hypothetically
It's not that straightforward, but that's the gist of it.
-
Received my First Chain Ban 😔
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.
-
Advice on structuring large scripts?
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.
-
Ban waves?
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.
-
Hello
You are in for a lot of catching up.
-
Check which way the player is facing? Not the compass, the player.
int getRotation() Gets the rotation of this character.
-
Counting while webwalk
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.
-
Counting while webwalk
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.
- Counting while webwalk
-
Experienced botter read (read from paragraph 5 to avoid small talk lol)
What a good waste of 5 minutes of my lunch time.
-
Using OSBot with a jagex account. accidentally updated
Some clients are already spoofing it
-
Agility
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.
-
Can one truly quit Osrs?
Nice name. Does only botting count as quitting?
-
I am new... need some help...
You have to do this manually or run a script that does this for you.
-
Stealth Passive Goldfarmer
It means you don't have the fossil island teleport unlocked.
-
Calling methods from another class
Lol nvm not gonna try to help.
-
Handling misclicks.
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.
-
Stealth Passive Goldfarmer
Just thought I'd throw in another couple suggestions, since I'm back using this for a bit. Rather than telling the bot you don't have the requirements for herb/flowers seeds, some logic could be implemented to just skip doing those until it has reqs. This way the bot doesn't have to be restarted when the reqs are met. Here is a rough idea: if herbs are on and if allotments are on, dont stop the script if herbs are on, if flowers are on, and the farming lvl is 2 or more, dont stop the script if flowers are on, if allotments are on, dont stop the script if herbs are on, if flowers are on, if allotments are off, and the farming lvl is 1 or less, stop the script if herbs are on, if flowers are off, if allotments are off, and the farming lvl is 8 or less, stop the script if flowers are on, if allotments are off, and the farming lvl is 1 or less, stop the script The other suggestion I had was to add bottomless compost to restock list, if possible.
-
Any snippets for eating/walking while in combat?
Keep in mind that anything other than the web walker and you have to write object interactions as well (door opening, etc). Since pathwalker uses the local walker, make sure to make it break when the position its trying to get to becomes unreachable. Otherwise it will get stuck trying to reach it from, say, lumby or death's office, if you get pked.
-
Buy vpn?
Th ebest ip there is out there is your home ip. Unless you are running massive farms, there is no reason to use anything else. Also, VPNs and proxies are not the same. A VPN is a virtual private network and the ips are generally shared among a lot of users. A proxy works in a similar way but the IP quality and privacy can vary a lot.
-
Any snippets for eating/walking while in combat?
Found something you might be able to use. Someone posted this snippet a while back and I had it saved on my PC. If this snippet is yours, lmk so that I can credit you. Custom class Then just set the action here
-
Any snippets for eating/walking while in combat?
Use Async events and break the web walker event when you need to eat.