Jump to content

Doout

Members
  • Posts

    184
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Doout

  1. Can someone tell me how to remove the login random then add it back in later?

     

    I have try
    client.getBot().getRandomExecutor().unregisterHook(RandomEvent.AUTO_LOGIN); // Doesnt work

    client.getBot().getRandomExecutor().terminate() // work but no way to add back the random

     

    I even try clearing the random list but that doesnt work

     

  2. Like h ow many skills are there? 24?

     

    This have nothing to do with the script.

     

    If you really want to make a AIO Everything then you have to let the user make their own script with very little work on their part.

    Example- addNode -> addInteraction -> "Cut" id

                   addNode -> addInteraction - > drop id

     

    The user will not even have to write much, there are mostly clicking on stuff like addNode.

     

    Loading and Saving will be there to allow the user to load other people script and as well save their.

     

  3. The script might be something that can crash an item fast if too many people are doing it.

    Also, another example could be that it a easy script but the method make profit.

     

    Once a script is out, many people will try to copy it and put it out for free to increase their self in the forum.

  4. Holy Mackerel ! goodluck with this

    I made one before but that was before the bot nuke

    this type of program require efficient code for it to run like a human.

    one example, in antiban you only want to check the stat that your are training and not something else. this is very easy but how efficient it is, is a different story

  5. hey everyone, some might know me from some of my old script. I have been busy with my life and I have decided to start to script again.

    Everyone can script but only a few are good at it. I am not looking for member who know programming very well. I am looking for a few who know it well enough so they can understand each other code. as well they need to think out side of the box. I'm trying to make this script as efficiency as possible.

    my overall goal to understand the different way of coding. The more ways I learn the better for me,.

    Task require.
    web development
    coding (around 2-4)
    Graphical designer (built paint and code it as well)

    if you only know a small amount in those task, dont worry as I will help out in all of those task

     

    My Skype: Doout1

  6. This part of the script is useless

    		if (System.getProperty("os.name").startsWith("Window")) {
    			filename = "\\OSBot\\scripts\\CMHEssMiner.jar";
    		} else {
    			filename = "/OSBot/scripts/CMHEssMiner.jar";
    		}
    

    just use "/" for both.

  7. sure, but what script?

     

    watch and you might find out

    Can not get it to work :(,

    for anyone with Teamviewer, my meeting ID is m02-023-564 come and watch, will start at 1

  8. Want to see how a real GUI is made?
    Then you have came to the right place,

     

    The GUI I will be making is for a Paid Script and will be release soon. Script is working flawless ATM with no GUI :)

     

    If people want me to steam this live, Leave a comment and it might happen.

  9. 
    

       /**

         * @return The item that is edible to eat.

         * @author Baheer

         */

        public Item getEdibleItem() {

            Item[] is = client.getInventory().getItems();

            for (Item i : is) {

                if (i == null) continue;

                if (i.getDefinition() == null || i.getDefinition().getActions() == null

                        || i.getDefinition().getActions()[0] == null) {

                    continue;

                }

                if (i.getDefinition().getActions()[0].contains("Eat")) {

                    return i;

                }

            }

            return null;

        }

    • Like 1
  10. Becoming one is not as easy as you think.

    Making script is one thing, But laz and maxi are looking for people who think outside the box.

    Example,  Brainfree become a Script Dev before he release one script.

    How you ask, he crack the config for farming and been working on webwalking for a while now.

×
×
  • Create New...