Jump to content

oTroll

Members
  • Posts

    755
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by oTroll

  1. Nah, games been out for so long now, everyone has had ample amount of time to make maxed accounts. Not to mention that the exp rates in rs3 are ridiculously fast. It'll be very hard to find a seller, and even harder on this forum.

  2.  

    package Clayminer;
     
    import java.awt.Graphics2D;
     
    import org.osbot.rs07.api.Bank;
    import org.osbot.rs07.api.Inventory;
    import org.osbot.rs07.api.map.Area;
    import org.osbot.rs07.api.model.Entity;
    import org.osbot.rs07.api.model.Player;
    import org.osbot.rs07.api.model.RS2Object;
    import org.osbot.rs07.script.Script;
    import org.osbot.rs07.script.ScriptManifest;
     
    @ScriptManifest(author = "Spooder", info = "Mines clay in varrock west", logo = "", name = "ClayMiner + banking", version = 1)
     
    public class ClayMiner extends Script {
    final int clay = 7454;
    final Area CLAY_AREA = new Area(3183, 3378, 3183, 3378);
    final Area BANK_AREA = new Area(3185, 3445, 3182, 3436);
     
     
    @Override
    public void onStart() {
    log("The Script has started");
    }
     
     
     
    @Override
    public int onLoop() throws InterruptedException {
     
    if (!inventory.isFull()) {
    if (CLAY_AREA.contains(myPlayer())) {
    if (!myPlayer().isMoving()) {
    if (!myPlayer().isAnimating()) {
    RS2Object rock = getObjects().closest(clay);
    if (rock != null) {
    rock.interact("mine");
    sleep(random(50, 120));
    }
    }
     
    }else{
    sleep(1000);
    }
     
    } else{
    getWalking().webWalk(CLAY_AREA);
    }
     
    }
     
     
    if (inventory.isFull()) {
    getWalking().webWalk(BANK_AREA);
    if (BANK_AREA.contains(myPlayer())) {
    if (!getBank().isOpen()) {
    getBank().open();
    } else {
    bank.deposit(434, 28);
    }
    }
    }
     
    return 800;
    }
     
    @Override
    public void onPaint(Graphics2D g) {
     
    }
    @Override
    public void onExit() {
     
    }
    }
     
     
     
     
    I changed it up a little bit but im guessing that the myPlayer(), is not grabbing my player, because when i start the script he does absolutely nothing.

     

    You should put logs every where in your code and see which logs execute and which ones don't. Simple debug technique

  3. You don't make instant bank from flipping, if I had to estimate you make 200k max from flipping per hour. And all the items you're trying to flip are already being flipped, so the profit margin just decreases. And I assume you've only been goldfarming for 4 days since you registered on June 19th, you shouldn't quit so easily lol you may have just gotten unlucky

  4. Thank you. He's the original owner has a regular username login and is 12 years old account. 

    thanks for that.

    Might be hard to find a seller tho.

     

    I'm sure if you played runescape for 12 years you've probably moved on and into real life, but the longer the account was the easier it is for the OO to recover it, and the only content left on that account is to reach 99 mining, and then 200M in all skills (although if someone was dedicated to do that, they'd make an account themselves!)

  5. Doesn't matter, You don't have to buy it. Plus was just looking for estimated price range. 

    I've seen max capes go for $2500.

     

    At your current state, I think if you can provide enough information so that the seller can perform a successful recovery test, you can easily auction it for 1500m A/W

    • Like 1
  6. If you want to write an efficient anti-ban you should first think about how a bot detection system is implemented. Most important thing you should know before this, which most people don't, is that jagex has no way to track mouse movements. Sending instant input to the client, repetitive mouse patterns, clicking the same pixel 24/7 will not get you banned. Simulating a player that watches youtube in a separate window will therefore not help you at all.

    I just googled it and there's a Mouse-Motion Listener?

×
×
  • Create New...