Jump to content

adc

Members
  • Posts

    135
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

1330 profile views

adc's Achievements

Steel Poster

Steel Poster (4/10)

14

Reputation

1

Community Answers

  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.
×
×
  • Create New...