Jump to content

Jones

Members
  • Posts

    42
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Jones

  1. Does anyone here have experience with autoclicking / botting ardy knights?

     

    It's 253k xp / hour with perfect ticks (no fail at 95 thieving. If someone else fails, you can't pickpocket for 2 game ticks (0.6 seconds each tick)).

     

    for reference, see this: 

  2. Thinking of starting a new account and training it up, without botting and then selling it to someone.

     

    Which account builds do you think are in popular demand? I was thinking of a Zerker but I'm unsure.

     

    Thanks!

  3. Could somebody please help with the formula for a prayer alerter?

    'One dose of a prayer potion restores Prayer points rounded down using this simple equation, where x is equal to your Prayer level:'

    7+(x/4)

     

    How would I incorporate this into a piece of code, do I replace X with a method to grab the prayer level?

     

    Cheers.

     
  4.  

    I dont know if this would Help but here is a quick look at the base of scripts skeleton

    import org.osbot.script.Script;
    import org.osbot.script.ScriptManifest;
    
    @ScriptManifest(name = "Script Name", author = "Authors name", info = "description aboutthe script", version = 1.0)
    public class ScriptName extends Script {
    
        //The method that get exectued on the start of the script
        @Override
        public void onStart() {
    
        }
    
        //Main script loop, all the action goes here
        @Override
        public int onLoop() throws InterruptedException {
            return 0;
        }
    
        //similar to the onStart() but it gets executed on the end.
        @Override
        public void onExit() {
    
        }
    
        //Paint method
        @Override
        public void onPaint(Graphics a) {
    
        }
    
    }
    
    

     

    Yeah I appreciate that, I started writing a thiever but I was using 'else if' statements etc, I know there are better methods for this.

     

    Do you mind PMing me your Skype mate?

  5. Can anyone help me out here, I'm looking for some tutorials as I want to start scripting for OSBot due to the low script base.

     

    Or if anyway has an example script with comments that explain what's going on etc I'd appreciate it.

     

     

×
×
  • Create New...