Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. lb25

    Question Adding BasicObjectVertex with requirements

    Sorry to reiterate again. In the first set of sample code in the first post, the final line (12) shows that I parse in the WebRequirement and it it added the to the BasicObjectVertex upon creation. Following your possible issue with the questing, I mentioned that I changed this to a...
  2. lb25

    Question Adding BasicObjectVertex with requirements

    I don't believe so. The only reason is, that I have also changed the WebRequirement to be something as simple as SkillRequirement s = new SkillRequirement(Skill.AGILITY, 75); and it still passes. To confirm my WebRequirement was correct, I did the following: - serialised - restarted bot -...
  3. lb25

    Question Remotely stop session?

    Bugger I was thinking of the Push notifications originally. Well that is only for information, not interaction, my bad :<
  4. lb25

    Question Remotely stop session?

    Isn't there the feature in the client to remotely manage your bot?
  5. lb25

    Bug Game Binding Error

    I have no idea why...Based on the above it looks like you're trying to write your own script and debug with elipse or similar IDE - correct me if I am wrong. Does it work outside of debug mode? This is what my startup looks like, interesting to see your home directory is all in lower case :/...
  6. lb25

    Question Adding BasicObjectVertex with requirements

    I felt this was more appropriate being on the forums than on discord, since I needed to post a bit of code. I have created a basic function to add BasicObjectVertex to my own web and it works relatively ok for basic doors and gates. Though I am struggling with the WebRequirement. No matter what...
  7. lb25

    OSRS 3T Mining

    For power mining?
  8. lb25

    Question Anyone got a basic 07 treebot i can look at?

    Cut and Drop? Follow Snufalufugus'zzz vid to set up your code and be able to debug. Then you can use the below as a basic chop and drop script. final String dropList[] = {"Logs", "Oak logs", "Willow logs", "Maple logs", "Yew logs", "Magic logs", "Redwood logs"}; final String target_tree =...
  9. lb25

    Question Navigation to specific coordinate on minimap

    For anyone that finds this in the future, im a bit of a peanut... Coordinate c = new Coordinate(3267, 3232, 0); c.minimap().click();
  10. lb25

    Ironman Hosidius Fruit Stall Thieve And Banker.

    isnt there already a public one available that does this?
  11. lb25

    Question Wintertodt Spot animations

    Hi team, Not sure if anyone has really tried to deal with the spot animations at wintertodt yet...but I can't seem to detect the difference SpotAnimations above the brazier. Both the extinguish and Brazier breaking spot animations are all exactly the same. Their hashcode is different, though...
  12. lb25

    Question Interact with GameObject while player us moving

    I like your thinking, skip the animation check if the object never clicked successfully. Just FYI it doesn't always return true, even if it did successfully click on it ;) nonetheless i'll keep you posted. Doing some timing on how long certain tasks for taking in my bot, it appears from the...
  13. lb25

    Simpes Quester [Deleted]

    Just following up if this bot did end up going open source?
  14. lb25

    Question Interact with GameObject while player us moving

    The debug message "burning 3 click on fire" appears, but does not click. If I change this line to obj.click instead, it will click past the object if my player is moving GameObject fire_position = GameObjects.newQuery().names("Brazier", "Burning...
  15. lb25

    Question Interact with GameObject while player us moving

    This is more conclusion by observation. Though it appears when I query for a GameObject, it returns the correct one. If i do obj.interact("interaction...") it looks like it will only interact with the object of the "interaction" is still at the old mouse position. But if the player was to move...
  16. lb25

    OSRS Pest control bot request

    he will always jump onto the ship and into the game no worries. sometimes he runs around a little too much because I put in too much logic and too many checks. So it tries to focus on the objectives instead of the enemies around him. Thus 25% of the time it doesn't get the points you need. Since...
  17. lb25

    Question Help with first script

    First just try to get your IDE setup and be able to launch runemate in debug mode. It will probably take a few outs to get that going once you know what you're doing. Have you chosen what IDE you want to use? There was a tutorial somewhere on this website for getting started with one of them...
  18. lb25

    end of the road.

    Sad to see people leave. But with good reason. Best of luck mate!
  19. lb25

    BinaryWalker [Deleted]

    I am pleasantly suprised with how well your bot walks me around the map! May I ask, are you generating your own custom paths and pathing api? Or you you using something like webpath and other inbuilt API's? Map navigation seems to be my down fall at this stage :(
  20. lb25

    Bug WebPath returning null...again

    I am having issues doing some basic navigation on osrs in Ardougne. I am trying to walk between the stalls and the north bank. Starting with an easy test, moving 6 tiles it appears to work fine, but when I try to move a few more both in pretty empty space, it returns null. I put my client...
Top