Jump to content

Iwin

Members
  • Posts

    33
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1109 profile views

Iwin's Achievements

Bronze Poster

Bronze Poster (2/10)

7

Reputation

  1. What were you killing? I've seemed to notice if you kill NPC's that are a lot lower level than you (chickens, goblins, dwarfs, ect) the ban hammer seems to come a lot sooner.
  2. public class Muler extends Script { String thebot = getParameters(); String thebotrep; @Override public void onStart() { thebotrep = thebot.replace(' ', '\u00A0'); } This will work
  3. What skills are you bringing to the table? This post seems very demanding of the other person. Also, 6 hours a day 7 days a week is 2 hours more than an average full time job.. an average person cannot commit to this if they already have a full time job.
  4. There's a high chance that it will say you need VIP or higher status. Normal members can run two bots in the same osbot client, but you need VIP to run more than 1 client at a time.
  5. This. my bots are task based and do 11 different skills (all f2p), and can do 10 quests. They can last anywhere from 4 hours to 72 hours of active online time. Currently being a normal member, I can only run 1 bot at a time. (code is already there for multiple servers, and as many bots as I want). So giving a good estimate isn't really something I can do. But skills that REALLY set off the ban hammer are woodcutting, mining, and killing chickens. I just recently added runecrafting, so we'll see how that is. But the bot has to get Rune Mysteries done, mine essence, buy an air tiara from the GE and then it can RC. It might be awhile running 1 bot at a time.
  6. Here's a few notes: There are 4.2 billion possible public IP addresses. If you unplug your router/modem for 10 minutes, odds are is that your IP will go back into the dhcp pool (or whatever identical service your ISP's uses) due to inactivity, and you'll get a new one. This being said, I'm sure they track IP's, but it is incredibly inaccurate.. and probably a small part in their anti-bot system. I have gotten over 1k suicide bots banned on my home IP (which has not changed in 6 months) and my main has not been banned.. but I do not trade to it, ever.
  7. There's a function: getDialogues().clickContinue(); that you can and should use as needed. Also, items can be put into an array String[] fishitems = {"Bluegill", "Common tench", "Mottled eel", "Greater siren"}; and you can do: if(!inventory.contains("Fish chunks") && inventory.contains(fishitems) Or you can do something like this: if(!inventory.contains("Fish chunks") && inventory.contains("Bluegill", "Common tench", "Mottled eel", "Greater siren") #.contains returns true if you have at least 1 item listed.
  8. This is true. I've only ever encountered this while looking for snippets.
  9. "Invalid Character" You have an invalid whitespace character. You're going to need clear all the whitespace near the error area. It's usually easier to rewrite that line.
  10. If you bot, you will get banned. It's not a matter of "if" it's a matter of "when". If you want to reduce the likelihood of getting banned, write your own scripts. Everyone has their own unique fingerprint. Using public bots is a sure way of getting banned in just a few hours.
  11. Oooh, thank you. It wasn't that I didn't believe you, I just figured maybe there was some config I wasn't aware of or some other flag. This helps a ton.
  12. @Patrick are you able to help a little more? How does OSBot know if you have a random event?
  13. I was wondering if anyone had a snippet of a random event solver/dismisser, I searched the forums and googled it, with no success. I know OSBot has a built in dismisser, but I want to solve the no-brainer ones such as Rick and Genie. I just need a snippet to check if a random event is mine.
  14. Sounds like you need to put a sleep timer after your world hop command
×
×
  • Create New...