Jump to content

Zezurge

Members
  • Posts

    77
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Zezurge

  1. Zezurge

    Stealth Quester

    I think as many as you want as long as you have OSBot VIP+
  2. Zezurge

    Stealth Quester

    When I use this script with moderation and safe botting practices, I have received no bans in the few weeks I've owned. Solid script. But please add Fairy Tales Pt. I Sir Token!
  3. I had two accounts on separate proxys that i had just bonded get banned using this script only to 25 theiving (about 1 hour)
  4. trying to make a glove maker but when i go it goes to the interface it just scrolls over gloves and doesnt click anything. if (inventory.contains("Thread") && inventory.contains("Needle")){ if (inventory.contains("Leather")){ interactItems("Needle", "Leather"); sleep(random(500,800)); RS2Widget craft = getWidgets().get(154, 127); if (craft != null){ craft.interact("Make All pairs of"); sleep(random(1000,2000)); } any help is appreciated
  5. Oh gotcha, you ever think about adding full ge support? Where instead of logging out when out of choco bars it sells them and buys more, so you can infinitly run it with little starting cash.
  6. Sweet! I may add that thanks for the suggestion, i figured that they wouldn't be worth too much I'll look into it edit: turns out they are worth more wtf! I will add that.
  7. ZeFishLooter Just finished lil script. Tested at 30k gp per hour. Run on 5 accounts and start rolling in those Ms. Features: - Picks up fish at barb village fishing area. - Banks in Edgeville. - Prioritizes fish that are worth the most for max cash. - START ANYWHERE, WITH ANYTHING! - Super Simple Paint. Download: https://www.dropbox.com/s/shd8k7djulkzx01/ZeFishLooter.jar?dl=0
  8. ZeFishLooter Just finished 3rd script. Couldn't test gp/h but i'd guess 30k-40k. Run on 10 accounts and start rolling in. Features: - Picks up fish at barb village fishing area. - Banks in Edgeville. - Prioritizes salmon for max cash. - START ANYWHERE, WITH ANYTHING! DL: https://www.dropbox.com/s/4vc1l8ypu8nohra/ZeFishLooter.jar?dl=0
  9. ZeBoneBury Second Release! What is does: - Picks up bones at lumby chickens - Buries them - START ANYWHERE! - Tracks # of bones & EXP gain - Amazing dank ultra paint included! GET THOSE EZ PRAYER LEVELS!!!!!! Oh yeah also have at least 1 open inv space, didn't want to drop anything cuz people could have valueables DL - https://www.dropbox.com/s/h8iufwiowwrly0c/ZeBoneBury.jar?dl=0
  10. Haha i don't mind very simple script i feel most people could do! Apeac and Explv both have very nice beginning scripting guides here -
  11. import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.map.constants.Banks; import org.osbot.rs07.api.model.Player; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.api.ui.Message; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Zezurge", info = "Potato pickin first script!", name = "ZezurgePotatos", version = 1.0, logo = "") public class main extends Script { int picked = 0; @Override public void onStart() { log("Let's get started!"); } private enum State { PICK, BANK }; private State getState() { if (inventory.isFull()) return State.BANK; return State.PICK; } @Override public void onMessage(Message message) throws InterruptedException{ if(message.getMessage().toString().contains("You pick a potato.")){ picked = picked+1; } } @Override public int onLoop() throws InterruptedException { Player p = myPlayer(); Position position = myPosition(); Area pfeild = new Area(3136, 3292, 3158, 3266); RS2Object tater = getObjects().closest("Potato"); switch (getState()) { case PICK: if (!p.isAnimating() && !p.isMoving()){ if (pfeild.contains(position)){ if (tater != null) { tater.interact("Pick"); sleep(random(1200,1700)); } }else{ getWalking().webWalk(pfeild); } } break; case BANK: if (Banks.DRAYNOR.contains(p)){ RS2Object booth = getObjects().closest("Bank booth"); booth.interact("Bank"); sleep(random(1500, 2000)); getBank().depositAll(); }else{ getWalking().webWalk(Banks.DRAYNOR); random(200,500); } break; } return random(200, 300); } @Override public void onExit() { log("Thanks for running my PotatoPicker!"); } @Override public void onPaint(Graphics2D g) { g.drawString("Potatos Picked: " + picked, 50, 50); } } Im working on a bone picker & burier for fresh spawns to get a little prayer exp as we speak.
  12. ZePotatoPick I was bored wanted to learn how to make a script. Here's the result. What it does: - Picks Potatos - Banks - Also features the most complex paint you've ever seen. - Makes you up to 30k/ph, ran this on 10 bots made a few Ms in a day. DL: https://www.dropbox.com/s/i3dnzma983ki2cd/ZePotatoPick.jar?dl=0 YAY I FINISHED A SCRIPT!
  13. you can have a habit to anything... I have a habit to drink a glass of water before I go to bed, and water is "non-addictive and non-habit forming"
  14. Zezurge

    Molly's Thiever

    Could I have a 24 hour trial? thx bb
×
×
  • Create New...