Welcome!

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

Sign up now!

V1.1.4

Engineer
Joined
Jul 28, 2013
Messages
2,776
Changelog

API
  • Fixed "Could not initialize OSRS" error
  • Removed author attribute from Manifest (Security issue)
  • Enabled com.runemate.game.api.client.BotPane
  • Updated Tabs API
  • Added ChatBox API
  • Added Viewpoint API (For screenshots)
  • Improved Skills API and structure
  • Added CombatGauge API (i.e. Actor.getHealthGauge())
  • Added Keyboard support for '@'
  • Added Item interface (To abstract GroundItem and SpriteItem)
  • Added (Projectiles/Npcs/Players).(getLoaded/Nearest)(Actor target)
  • Added (Npcs/GameObjects/GroundItems/Projectiles).getLoaded(int... ids)
  • Added (Npcs/Players/GameObjects/GroundItems/Projectiles).getNearestTo(Locatable)
UI
  • Store the login dialog username between sessions
  • Limited bank pin field to 4 numeric characters
  • Added transitions to windows
Developer Toolkit
  • Added basic Widget debugger
  • Improved Npc and Player debugger
Random Handlers
  • Added BankPin handler
 
Last edited:
Engineer
Joined
Jul 28, 2013
Messages
2,776
he probably means stuff like GameObjects.getNearest(String... names
The problem is more often than not, the definitions and names are null, so it's a very unreliable form of entity search. The only type of entity that even has reliable names are Player. Npcs are relatively reliable compared to objects and items, but it's still not a very good form of search.

Edit: I'm going force the names to load in the next update, so I'll add support then.
 
Last edited:

fox

Joined
Nov 3, 2013
Messages
41
The problem is more often than not, the definitions and names are null, so it's a very unreliable form of entity search. The only type of entity that even has reliable names are Player. Npcs are relatively reliable compared to objects and items, but it's still not a very good form of search.

Edit: I'm going force the names to load in the next update, so I'll add support then.
Sounds great
 
Joined
Nov 3, 2013
Messages
277
The problem is more often than not, the definitions and names are null, so it's a very unreliable form of entity search. The only type of entity that even has reliable names are Player. Npcs are relatively reliable compared to objects and items, but it's still not a very good form of search.

Edit: I'm going force the names to load in the next update, so I'll add support then.
afaik objects are the only ones that have a lot of nulls, and you can fix that by calling a method in the client
 
Top