- Joined
- Jun 20, 2015
- Messages
- 161
- Thread Author
- #1
How would I use the area teleports in Trailblazer league? It needs to click the quest point tab, then the league sub-tab, click Areas, choose an area then teleport. I guess I'd have to do this with interface IDs as there's probably no inbuilt method, but how do I find the IDs of the buttons I want to click? Thanks
e: I found the InterfaceComponent IDs with visual developer, they are:
Questlog button: 164, 55
League tab: 629, 28
League tab Areas button: 656, 28
Area menu: 512
You just use:
InterfaceComponent component = Interfaces.getAt(a, b);
then:
component.click()
e: I found the InterfaceComponent IDs with visual developer, they are:
Questlog button: 164, 55
League tab: 629, 28
League tab Areas button: 656, 28
Area menu: 512
You just use:
InterfaceComponent component = Interfaces.getAt(a, b);
then:
component.click()
Last edited: