Jump to content

AdhesiveBandage

Members
  • Posts

    7
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

AdhesiveBandage's Achievements

Newbie

Newbie (1/10)

2

Reputation

  1. This solved my problem. Thanks for the help!
  2. I was reading through the api and was wondering if there is a way to fetch other peoples level and stats rather than just fetching my own. I was planning on using it to avoid players in PVP worlds while looting. From what I am reading on https://osbot.org/api/org/osbot/rs07/api/Skills.html it seems to only refer to my Player.
  3. Welp, future knowledge I guess. Thanks for the help.
  4. Caught me a little late, as I had already learned how to use a basic filter. It's actually pretty simple and you should definitely learn their functionality. I shoved this into my onloop after defining my designated area: Filter<GroundItem> LocationFilter = new Filter<GroundItem>() { @Override public boolean match(GroundItem GroundItem) { return myArea.contains(GroundItem) ; } }; I then ran this in my code GroundItem Loot = getGroundItems().closest(LocationFilter); This ended up picking up all loot in the designated area which I will then have to include/exclude certain items at a later time.
  5. Hello everybody, I recently decided to begin botting once more and thought it would be interesting to make some basic scripts. I am currently working on a looting script that will pick up items near varrock west bank and bank them. The issue is some items are found inside the G.E. walls and the bot will run inside and loot them then return to it's designated location. Is their anyway to prevent the bot from travelling outside of it's designated area entirely rather than running outside and returning?
×
×
  • Create New...