Jump to content

Novak

Members
  • Posts

    1583
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Novak

  1. isVisible doesn't work for game objects, interactions with objects seem slower
  2. yeah i just noticed this too, it always seems to think objects are visible that are not. hope they fix it asap i made an error report too, i couldn't see you made one
  3. linked lists are usually better performance when doing a lot of adding/removing from the lists
  4. don't worry, he's been working on the web walker for 2 years now!111!!!!111oneone11!
  5. a 3 script task based one, where you could switch between scripts, kind of like master race omega
  6. thanks for being a troll, I'm sure everyone appreciates it.
  7. Back in the day (6-7 years ago), i was the noobiest of noobs. I lurked the pb forums and leeched like nobody business. I eventually started buying premium scripts, thinking i could never learn to do what these guy can. Lets skip forward to current day, I can pretty much do whatever I want with java related to runescape. So many of you may be asking, how did this happen? the answer is hard work. I took multiple courses in java and c++, and really dedicated myself to learning programming. tl;dr if you wanna do something, work hard at it and it will happen obviously this was just a proof of concept, but tile and animation eventually got hooked. never give up on your dreams never in a million years did i think i could start making my own bot and hooking different functions
  8. just use gyazo or lambda lmfao
  9. position.interact(Walk here) seems to work. However, i need local walker too when it isn't visible on the minimap (and i don't want to start having to make paths and a custom walk method for it to work) can we expect an update to local walker for this?
  10. neither localWalker or map.walk work on al kharid rooftop. it just does nothing. anyone else experience this/have a workaround? edit: seems like it doesn't work on varrock rooftop either. it works on pollnivneach though, which is weird
  11. the osbot 2 area class does not support planes, so i made my own package data; import org.osbot.rs07.api.map.Position; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.utility.Area; public class RS2Area { public final Area area; public final int plane; public RS2Area(Area area, int plane) { this.area = area; this.plane = plane; } public boolean contains(Position pos) { return area.contains(pos) && pos.getZ() == plane; } public boolean contains(Entity entity) { return area.contains(entity) && entity.getPosition().getZ() == plane; } }
  12. Novak

    Hello

    so you intend to elsewhere?
  13. lmfao last time i gave my snapchat out to someone on osbot they spammed me for nudes for like a week
  14. whats the fun in playing a game that you can beat in a short amount of time?
×
×
  • Create New...