1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Resolved [Banned] Client is obviously detectable.

Discussion in 'Client & Site Support' started by jangan, Nov 20, 2015.

Thread Status:
Not open for further replies.
  1. jangan

    Joined:
    Nov 12, 2015
    Messages:
    10
    Likes Received:
    0
    So... I decided to join this community and actually write my own "Flax & Tanning" script bot.

    And im obviously using a brand new account and training in BURTHORPE.

    I managed to write the function to move from the bank -> Spinner and back.. been writing for around 30-45 minutes. Then all of the sudden... Banned for MACROING MAJOR??? on bloody darkscape?

    Its sad... I just paid 10 dollars to support this site thinking its the real deal... please stop fooling your members.

    anyone that reads the below code, will realize that its not even complete yet... but somehow on a brand new level 3 account i get banned for macroing major.

    and please, dont bother with the non-sense of my whatever is flagged..

    Code (Text):
    1. private final Area BURTHORPE_BANK_AREA = new Area.Rectangular(new Coordinate(2885, 3541, 0), new Coordinate(2892, 3531, 0)),
    2.             BURTHORPE_SPINNING_AREA = new Area.Rectangular(new Coordinate(2890, 3496, 0), new Coordinate(2880, 3493, 0)),
    3.             BURTHORPE_FLAX_AREA = new Area.Rectangular(new Coordinate(2882, 3460, 0), new Coordinate(2889, 3467, 0));
    4.  
    5.     @Override
    6.     public void onStart(String... args) {
    7.         System.out.println("New Script");
    8.         setLoopDelay(500);
    9.         getEventDispatcher().addListener(this);
    10.     }
    11.  
    12.     @Override
    13.     public void onLoop() {
    14.         LocatableEntity closestBank = Banks.getLoaded().nearest();
    15.         GameObject closestSpinner = GameObjects.getLoaded(66850).nearest();
    16.  
    17.         // Interface - 1370, 38
    18.  
    19.         if(Interfaces.getAt(1370, 38) == null && !Bank.isOpen() && Inventory.getItems("Flax").size() != 0 && closestSpinner.distanceTo(Players.getLocal()) > 10){
    20.             RegionPath.buildTo(BURTHORPE_SPINNING_AREA).step();
    21.         }else{
    22.             if(!closestSpinner.isVisible()){
    23.                 Camera.turnTo(closestSpinner);
    24.             }else{
    25.                 closestSpinner.click();
    26.             }
    27.         }
    28.  
    29.         // Need to add a handler for the Bowstring
    30.         if (Inventory.getItems("Flax").size() == 0 && closestBank.distanceTo(Players.getLocal()) > 10) {
    31.             RegionPath.buildTo(BURTHORPE_BANK_AREA).step();
    32.         }else {
    33.             if (!Bank.isOpen()) {
    34.                 Bank.open();
    35.             } else {
    36.                 if (!Inventory.isEmpty() && Inventory.getItems("Flax").size() != 28){
    37.                     Bank.depositInventory();
    38.                 }else {
    39.                     if (Bank.withdraw("Flax", 28)) {
    40.                         Bank.close();
    41.                     }
    42.                 }
    43.             }
    44.         }
    45.     }


     
  2. Best Answer:
    Post #3 by Cloud, Nov 20, 2015
  3. Microsoft

    Microsoft Ex-Staff

    Joined:
    Apr 19, 2015
    Messages:
    540
    Likes Received:
    95
    Closed to prevent misinformation.
    Arbiter will reply.
     
  4. Cloud

    Cloud Engineer

    Joined:
    Jul 28, 2013
    Messages:
    2,777
    Likes Received:
    1,124
    Your code isn't great but there was another unexpected issue that was addressed quickly after it was identified but not until later in the day.
     
Thread Status:
Not open for further replies.

Share This Page

Loading...