Jump to content

adc

Members
  • Posts

    135
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by adc

  1. Dosage and the particular person really affect side effects, it's not down to just the medication.
  2. the conversation went like this: "Okay, well I'm going to give you $20 for coming over" "If you insist, but it's really not necessary" "I insist" "K" It also helps that she's a painter that owns her own gallery, and I'm not exactly sweating cash
  3. Make a new text (.txt) file and paste this into it: cd C:\Program Files\Java\jre7\bin java -jar C:\Users\YOUR_NAME_HERE\OSBOT_FILE_LOCATION\osbot.jar and save the file as a .bat file It's possible the version of java you want is in a different location, so if the cmd window that pops up says something about being able to find the program, make sure that the first line directs to your java bin folder and that the second line directs to the osbot jar. Also ensure that you use the EXACT name of your osbot jar (i.e. if it is named oSbOt_1_2_3.jar, rename the jar file or use exactly that name in the .bat file. Also, you can run osbot with java 8, so there's really no need for this.
  4. >mom has taken up writing the community newsletter, adds part about me being "good with computers" >get a call, someone's computer is "dead" >drive 2 minutes, walk in, press power button >drive away with $20
  5. Does it support stamina pots? I'd think they would increase chests/hour pretty greatly for a relatively low cost.
  6. Looks amazing will be using it once I get my second main up to snuff.
  7. The message has to do with the removal of mandatory randoms, hence why right next to the message is an ent and a magic box.
  8. First and foremost, help us help you by formatting your code in a readable fashion: public boolean killbeast() throws InterruptedException { NPC beast = npcs.closest("beast"); // Player p = myPlayer(); Mylog("2"); loot(); Mylog("3"); if (combat.isFighting()) { Mylog("4"); Mylog("Already attacking beast"); spec(10); if (random(100) == 1) { combat.getFighting().interact("Attack"); } if (fillLootingBag()) { lootingBagEmpty = false; } return true; } Mylog("5"); if (!beast.isVisible()) { camera.toEntity(beast, true); } Mylog("6"); if (beast.isVisible()){ return beast.interact("Attack"); } return false; } You don't appear to have any sleeps, so that's not exactly helping your cpu usage. You should find your target NPC in a seperate method from the one you use for interaction, as your target shouldn't be changing between interaction loops (assuming the first was successful), i.e. NPC beast; if(!beast.isAValidTarget) { beast = npcs.getClosest("beast"); } killBeast(beast);
  9. I appreciate the kind words but it's probably broken as I haven't updated it for about 10 osbot patches now due to not having an account to test it with currently. I'm working on another main now, though, so I should be able to update it in a month or less.
  10. Turn a bad situation into motivation; high cholesterol is a really good reason to eat as healthy as your financed allow (if you don't already).
  11. Joke's on you, I don't have a lunch break
  12. I'm 100% sure that 90% of bans are because an account is too fresh. The banned account and my replacement for it are both over 8.5 years old.
  13. Probably, I've been botting that account every night for probably 6 months now, haven't been using breaks for the last month or so.
  14. http://i.imgur.com/5ZVHeRX.png?1 Took them forever, been botting 10 hours a night every night. Oh well, time for account #2
  15. True pros don't use breaks
  16. Can you be hacked by java based scripts if you don't have java installed on your computer? 1) "Java based scripts" are not standalone programs on their own, they're run by a Java program which is run by Java 2) No
  17. Think of bans as population control. If even half the bots that have been banned by now hadn't been, the value of everything bottable would be much lower.
  18. I feel like there'd have to be some sort of legal repercussions if they were to search your computer's files freely without it being in the ToS. ...Right?
  19. I max out at 1mb/s down if nothing else is using bandwidth
  20. I've been botting one account really consistently for around 6 months now, what I've botted for profit on it includes: thieving gems in the rogue's den blue dragons woodcutting fletching hunter I've gotten a single 2-day ban because I was reported by a pmod at blue dragons as for my setup, I do 8-10 hours a day almost every day of the week.
  21. Oh yeah, it's definitely not their most efficient way of banning people for sure, but it seems they're using it anyway to catch anyone dumb enough not to use stealth.
  22. They're still actively trying it as of the most recent update apparently :P
  23. Well from what I can tell, jagex is basically pinging at the client, trying to get a response from bot methods such as client.getBot(). Injection stealth blocks these requests, forcing them to return null as they would if there was no bot client on the other side. This is just my assumption on how it works based on the fact that ever few minutes I get a list of warnings in the client output telling me that "Attempt to access injected method [client-related method] has been blocked!". Edit: It's a condom for your bot-dick to prevent bot-HIV. Not being able to put it on is not an excuse for unprotected bot-sex.
×
×
  • Create New...