Jump to content

lisabe96

Members
  • Posts

    821
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by lisabe96

  1. Try using your hand to move the piece. This has been proven to be a working method.
  2. ~ Tests with a fresh 'tutorial island completed' account ~ Day 1: Lumbridge shrimps fishing Runtime: 7 hours with 3 breaks of ~10 seconds to update the script Status: Not banned Day 2: Fly fishing Runtime: 11 hours with twice a 30min break Status: Not banned
  3. To 38 on shrimps because why not :p Total runtime tonight ~6 hour Got me some ideas on how to tweak/improve the system. Last account i botted on this location was perm'd in 2 hours, ill see how long this one will take.
  4. Alright thanks for that info, will check it out soon
  5. I'll check it out when my current project is finished. I'll update all of my scripts then
  6. It shouldn't do that actually, might be a bug. What is the used location/bank/treetype & axe ?
  7. Worked out a first prototype system for this. Wrote a simple fisher around it for testing. So instead of your "script's working" being the main process. Now the "human behavior" is the main process. If there's no human behavior occurring we allow the script to execute. onLoop() { * human behavior -> return * no human behavior -> handle script process A little example of some "human behaviors" inb4 "this is not right and what the hell is that" -> this is nothing serious yet at this point, no need to cry //Min time (s) | max time (s) | approx frequency / hour | Move mouse out of screen for this behavior LOSE_FOCUS(1, 3, 100, OutOfScreen.SOMETIMES), TOILET(60, 120, 0.35, OutOfScreen.SOMETIMES), BIG_TOILET(200, 750, 0.125, OutOfScreen.SOMETIMES), TEXTING(3, 20, 20, OutOfScreen.NEVER), CALLING(25, 250, 0.1, OutOfScreen.SOMETIMES), GRAB_A_DRINK(50, 200, 0.3, OutOfScreen.SOMETIMES), GET_FOOD(150, 1000, 0.2, OutOfScreen.SOMETIMES), FAP_FAP_FAP_FAP_FAP(200, 1000, 0.05, OutOfScreen.ALWAYS), YELL_FIGHT_WITH_MOM(400, 1400, 0.01, OutOfScreen.NEVER), BROWSING_WEBSITE(20, 75, 30, OutOfScreen.ALWAYS), GET_LOST_IN_A_READ(60, 600, 0.5, OutOfScreen.ALWAYS), SMOKING_OUTSIDE(200, 360, 0.5, OutOfScreen.SOMETIMES); @moving mouse outside screen, i personally don't believe jagex even has a clue about it, but It doesn't hurt and "makes it more human-like" for the state of mind; So yeah, currently testing the system with fishing to get a good view on the system and find out what to change/tweak & whatever... Edit: I just encountered a nice example of something that a human would encounter but a bot usually does not: Ive been standing here for a minute with a full inventory because "I" was at the toilet.
  8. The account is about 2,5 months old. No infractions or anything. 1. Pictures of the account stats 2. Pictures of the login details 3. Pictures of the total wealth (if there is any) None 4. Pictures of the quests completed Only Sheep Shearer and R&J 5. The price you will be starting bids at 1.75m 6. The A/W (Auto-win) for your account 4m 7. The methods of payment you are accepting 07GP 8. Your trading conditions You go first 9. Pictures of the account status 10. Original/previous owners AND Original Email Address Created with a fake email
  9. Thanks, all I needed to know
  10. I noticed in the API that there seems to be base support available for solving randoms. Is this still functional? If so how would I go about using it or extending on it?
  11. Haven't gotten any bug reports anymore since the last time I updated so I assume so
  12. Seems like comfortable shoes for working. I don't know a lot about construction brands or whatever though
  13. Thanks s1 flamer, I forgot about the annotation thing
  14. All default tutorial island accounts have been sold. Stock now contains accounts with tutorial island finished /+ 7 Quest Points For that reason price has increased from 90K/ea to 120K/ea
  15. If you don't want a permanent ban, don't bot. It's that simple.
  16. Can I get a PC on this one: 10+ atk 35 str 40 ranged 43 magic 36 hp 40+ fishing 40+ cooking 60 woodcutting No infractions, no quests.
  17. True when I post what I use I get lambda-lovers on my back RS2Object booth = null; for (RS2Object obj : getObjects().getAll()) { if (bankArea.contains(obj) && obj.getName().equalsIgnoreCase("Bank booth")) { if (obj.hasAction("Bank")) { if (booth == null || getMap().distance(booth) > getMap().distance(obj)) { booth = obj; } } } } if (booth == null) { log("Error, no bank booth found to use."); //Return } booth.interact("Bank");
  18. This, that's why I added action checking in my code. I ran into this problem at draynor where it wanted to bank with the "bank booth" that isn't a bank :p
  19. First of all, don't use ID's as it can change when RS is updated. This also accounts for items as I see you're using ID's everywhere. Second, the API has bank areas already so you don't need to define them yourself. Area bankArea = Banks.YOUR_BANK; Next do something similar to this (might want to use sleep): if (getWalking().webWalk(bankArea)) { if (!getBank().isOpen()) { RS2Object bankbooth = getObjects().closest("Bank booth); if (bankbooth != null && bankbooth.hasAction("Bank")) { bankbooth.interact("Bank"); } } } Btw, use code tags so we can read your code more easily
  20. Version 2.5: - Fixed a possible situational bug - NOW TURNS OFF MUSIC Click here to download!
  21. lisabe96

    Menu

    trim doesn't remove "that bs", trim removes spaces To remove "that bs" you probably gonna have to use a substring //X = length of <col=fff> String name = menu.name.substring(X, menu.name.length); if (name.equalsIgnoreCase(...
×
×
  • Create New...