Jump to content

Easy

Trade With Caution
  • Posts

    192
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Easy

  1. On 9/21/2017 at 2:14 PM, botting123 said:

     

    Tried to edit it to work with zombies across the river in varrock sewers but when I go to save it I get "KillHandler.java This file is set to read-only, try again with a different name." Also can't find "coop" anywhere in the file.

    3

    That read-only issue is operating system related: http://www.dummies.com/computers/operating-systems/windows-xp-vista/how-to-change-the-read-only-attribute-on-files-and-folders/

    And, sorry for the "coop" confusion, that was a mistake on my part. The variable's name is actually "npcArea", not coop. I've edited the thread, good luck!

  2. 1 hour ago, Potenti said:

    If not, then I don't know how you can guarantee someone you won't recover an account. There is always a risk when buying or selling on the black market. Regardless of what's going to happen, I'm still just price checking...

    you could sell account recovery info with the account, like acc creation date, isp used to create and play on acc, previous passwords, etc.

  3. @yibster2009 Remove all of this code from your script

    1.                 int waittime = random(500,10000);
    2.                 int angle = random(0, 360);
    3.                
    4.              sleep(waittime);
    5.              
    6.              if (antiban == 1);
    7.                 camera.moveYaw(camera.getYawAngle()+angle);
    8.                 }
    9.         //-------------------------------------
    10.             int checktab = random(0,1000);
    11.        
    12.             if (checktab % 6 ==0){
    13.        
    14.             tabs.open(Tab.SKILLS);
    15.             getSkills().hoverSkill(Skill.FISHING);
    16.             tabs.open(Tab.INVENTORY);

    Replace your static sleep call with a conditional sleep if the interaction was successful. Now you might be asking yourself "What is a conditional sleep, Easy?" That's a great question yibs. A conditional sleep is a sleep that waits for a condition to be met. It's like saying "Sleep until... this happens". In your power fisher, it would make the most sense to interact with the fishing spot, then wait until the character has begun fishing.

    So your interaction logic and method calls should look like this:

    if (interaction was successful) {
         conditional sleep until player.isAnimating() OR until 7 seconds has elapsed;
    }

    Be sure to always use a conditional sleep after a successful interaction. This will prevent 99% of spam clicking and greatly improve the efficiency of your scripts.
  4. Giveaway

    At 3:30pm EST I will randomly pick an OSBot member to receive a free $20 script of their choice.

     

    How to Enter

    Contest entry is simple. Just leave the following message on my private scripting thread, and I'll add your name to the list of contestants:
    "I would like to enter Easy's Private Script Giveaway."

     

    Contestants

    @Deceiver @kazemaru @fstyle @Team Cape @Juggles @ForBobo @ootd @Sofakin @Chris @skillerkidos1 @jessefeiken5 @jamieonfire123 @pappis315 @emigdiodia @Sysm @Mio @coliver

     

    Winner

    @ForBobo

     

    Private Scripting Thread

     

    • Like 2
  5. Mio aims to please with yet another breathtaking release! Upon running Mio's Water Sheep, it is immediately made clear that Mio isn't afraid to go the extra mile to deliver an unparalleled botting experience to her users. The experience is what can only be described as a seamless blend of efficiency and human simulation. I would gladly run this script overnight. 5/5 stars

    • Like 1
  6. You haven't declared a goldRock variable. You're trying to reference it but it doesn't exist, thus the "Symbol cannot be found" error.

    What you need to do is declare a variable of the same type as the return value from getObjects#closest. The return type is RS2Object, so the code should look like:
    RS2Object goldRock = getObjects().closest( obj -> Rock.GOLD.hasOre(obj));

    • Like 1
  7. The .zip file attached to this thread contains all of the java source files needed to compile this script. Just unzip, and drag the "CockKiller" folder into a pre-existing project src folder and you should be good to compile/run.

     

    Features: 

    - Webwalking

    - Flawless combat handling

    - Easy to use paint

    - Experience counter/calculator display

     

    Screenshot:

    3MOPIWY.png

     

    If you'd like the script to attack a different npc at a different location, just modify your "KillHandler" class by changing the "npcArea" and "npcName" variables.

        //Below is our predefined npc Area. The script will walk to this area if your character isn't already in it.
        private final Area npcArea= new Area(new Position[]{new Position(3186, 3295, 0), new Position(3187, 3296, 0), new Position(3187, 3297, 0), new Position(3186, 3298, 0), new Position(3186, 3299, 0), new Position(3186, 3300, 0), new Position(3184, 3301, 0), new Position(3183, 3303, 0), new Position(3182, 3303, 0), new Position(3181, 3304, 0), new Position(3180, 3304, 0), new Position(3179, 3303, 0), new Position(3179, 3304, 0), new Position(3179, 3308, 0), new Position(3173, 3308, 0), new Position(3173, 3303, 0), new Position(3171, 3302, 0), new Position(3170, 3301, 0), new Position(3170, 3300, 0), new Position(3169, 3299, 0), new Position(3170, 3298, 0), new Position(3170, 3296, 0), new Position(3170, 3295, 0), new Position(3169, 3293, 0), new Position(3169, 3292, 0), new Position(3169, 3291, 0), new Position(3170, 3290, 0), new Position(3171, 3289, 0), new Position(3174, 3289, 0), new Position(3175, 3287, 0), new Position(3176, 3287, 0), new Position(3177, 3288, 0), new Position(3184, 3289, 0), new Position(3184, 3290, 0), new Position(3186, 3291, 0)});
        
        //Below is our predefined target npc name. The script will search for an npc with our target npc name.
        private final String npcName = "Chicken";
        private final int maxNpcDistance = 7;

     

    Online Preview of Source: https://gist.github.com/anonymous/200b90618f94b9ef4f9181754b78164f

     

    CockKiller.zip

    • Like 4
×
×
  • Create New...