Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. That's what the door handler class is mainly built out of.
  2. Turn on the debug position for camera. Find the best part for you. Record it and uses a simple boolean to see if it is the same camera angle.if not move it there. Using getCamera
  3. Joseph

    Explv's Walker

    The second the last picture is that map cut up into regions?
  4. those methods all fall back to the health bar your character displays on top of its head when in combat. SO for example if you are fighting and you can see it. You will get the right values. If the hp bar goes way and you eat food. It will still have the old value instead of the new updated values. When the hp bar Is visible again the value gets updates.
  5. that parameter uses your array of filters not as one but instead separately. It will return the first found filter. for example: getInventory().getItem(string...array); will return the first found item by name. just because you added different 2 filters does not mean it will combine them into one. should be RS2Object objects = getObjects()............... the rest. not array
  6. use 2 variables startAmount, currentAmount. state the startAmount when you start. currentAmount should be what you have now then to get the right amount of stuff do. Real amount - currentAmount - startAmount = real amount tracked
  7. you don't see it in the api documents but it still part of osbot. example call conditional sleep to have it wait if (getInventory().contains(getEnergy())) { getBank().depositAll(); new ConditionalSleep(2000, 100) { @Override public boolean condition() throws InterruptedException { return getInventory().isEmpty(); } }.sleep(); }
  8. Ddm is another 07 version that give you like 5 exp rate. You start from scratch. It's practically pvp everywhere but with some safe zones. If you get skulled and go to the safe zone then you get attacked by high level guards. You die you lose nose of your banks. Someone kills you with no skull they take like most of your bank too. It's different look it up
  9. No need for checking an object visibility cause that's what interaction event does for us. And object.interact (action) come from interactionEvent
  10. This is much better than intellji version
  11. Let me give you some wisdom. Override the onMouseClick() And use that method to do what you want. There is no way to tell if it's a human clicking or the bot. But there is a way to tell if human input is enable or disabled. So you could use that boolean with maybe another boolean (clicking shape). getBot().isHumanInputEnabled () No need to implement mouselistener since it is already implemented in scripts. Finally for it to activate. On the onstart you should enable it by using. getBot ().add Mouse Listener (listener )
  12. if you neeed a bitch account lmk. I have a decent account with no quest done
  13. He's scripts are still on the sdn :p look for it.
  14. See of this trick works Be on the client. Have the login part ready. Have your keyboard on the password part. Use osbot auto login. Hopefully here. We can get the osbot to type the username in the password box. And then it should type the password in the username spot. And you should visibly see the password
  15. I ask Santa Claus for a month trial on a vip rank. I hope I get one tomorrow.
  16. Personally the more unique the better. Unless you are one of the first script to in your category. People aim for more of the basic scripts. For example fletching. But nobody does farming. Everybody does woodcutting but nobody does fire making. I have a woodcutting with a fletcher, but no body does that. I was the first
  17. I'd buy for 2 mill if it came with email
  18. What happens when you hit like -1 attack and strength
  19. ,Grab both items, null check both items. Then you can interact with the items. Helper: getInventory()isItemSelected
×
×
  • Create New...