Jump to content

dokato

Members
  • Posts

    129
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by dokato

  1. What is the best code to use if i'd like to interact with my amulet of glory in my house?

    Because if i try this: 

     

    objects.closest("Amulet of Glory").interact("Karamja");

     

    it will fail to click on it and it takes like a minute or more till it finaly clicks right.

  2. I use this:

    	public void onMessage(Message message) throws java.lang.InterruptedException {
    		String txt = message.getMessage().toLowerCase();
    		if (txt.contains("the fire catches")) {
    			firesMade++;
    		}
    	}
    

    Good luck!

     

    works fine for me

    THX alot bro

  3. If i'd like to capture when i recieve for example willog logs, is this the correct code to use?

     

    public void onMessage(String message) throws InterruptedException{
        if(message.contains("logs")){
        amountOfLogs++;
         }
    }
     
    i saw it this way in some other guides but it doesnt work
  4. How can i let the bot do something in my house (from construction).

     

    if(/*I'm in the house (what code?)*/){

           ...

     

    what should i write there?

     

    because i noticed the Area coördinates change or are my eyes malfunctioning?

  5. I noticed the mouse moves around the screen randomly when u let it do something, it doesnt go straight the fastest way or am i wrong?  If not, is the mouse speed random as well?

  6. I'd like to know whats the default mouse speed (if there is any) or a mouse speed that is considerd "human". like:

     

    setSpeed(/*what number?*/);

     

    Or any tips to make it move more human?

     

     

  7. if i want to activate a prayer Piety i put in for example:

     

    prayer.set(/*what comes here?*/, true);

     

    and what should i put on top?

    ive looked in the API but i still dont get it.

     

  8. for example,

    there are multiple objects with the same id in a certain location. But I only want to interact with the object that has a specific position x,y,z. What code could i use for this?

     

    Because it will automatically interact with all he objects... something i dont want :(

×
×
  • Create New...