Jump to content

Muffins

Global Moderator
  • Posts

    6879
  • Joined

  • Last visited

  • Days Won

    24
  • Feedback

    100%

Everything posted by Muffins

  1. big and giant frogs
  2. you can't sell account unless you have 100 post count.
  3. Looks so good i might want to touch tips with you now 10/10 script #EXPLV_OSBOT_CASH_COW
  4. NPC shopkeeper = npcs.closest(shop, "Jiminua"); what function does "shop" have in this.....?
  5. thanks dad, looks awesome!
  6. Change your resolution and text display size.
  7. I'd sell for gp, pm me for names i have.
  8. have you tried the official client
  9. https://vine.co/v/iM0HnpBebd0
  10. can you fix the text so i can read it without getting cancer thank you sir
  11. Muffins

    tune

  12. No he doesn't. Don't lie.
  13. Nike freeruns or Nike air zooms for actual trail running
  14. basic but around 200-300m I'd assume.
  15. pls sir i am just a lowlife skriptor 1 but foreal, I had a blacklist before but i removed it while editing my methods im pretty sure and just cbf to add it back since it was late
  16. Oh, ok! But I just made this because I haven't seen one posted at all
  17. added into the Original Post
  18. Hopefully Father @Alek can look into the OSBot dropping if he ever gets free time
  19. Yo, so during my late night scripting sessions, I was making a fisher for someone and the OSBot dropping method kind of sucks because it looks, well, bot like as fuck. Most players use AHK/MouseKeys and i have't seen a nice snippet for it, so me and @Isolate made one. Now, OSBot count's inventory spaces like this... Provided crudely with this picture made is MSPaint. THIS WILL DEFINE WHAT ORDER, AND WHAT INVENTORY SPACES YOU WANT TO DROP I LEFT OUT SPACES 26 AND 27 DUE TO THEM CONTAINING MY ROD/FEATHERS (FISHING) YOU CAN KEEP ALL SPACES OR TAKE OUT THE ONES YOU WISH DEPENDING ON WHAT KIND OF DROPPING YOU ARE DOING public static final int[] VERTICAL_DROP = new int[]{ 0,4,8,12,16,20,24,1,5,9,13,17,21,25,2,6,10,14,18,22,3,7,11,15,19,23}; Next, When wanting to drop, do this. Note: I am using a Task system made by @Vilius So you will have to implement it into your own code. public void process() { // Here is my order just saved in case: 0,4,8,12,16,20,24,1,5,9,13,17,21,25,2,6,10,14,18,22,3,7,11,15,19,23 for(int i : VERTICAL_DROP){ api.getInventory().interact(i, "Drop"); } Or by using a lambda provided by @Vilius VERTICAL_DROP.forEach(s -> api.getInventory().interact(s, "Drop")); And voila, it does this (or it should, I hope, I kind of suck at this coding thing)
×
×
  • Create New...