Welcome!

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

Sign up now!

Resolved Runescape.logout() can't find button for logout interfacewindow on OSRS Fixed Screen

Joined
Aug 23, 2015
Messages
1,970
IntelliJ output says
Code:
00:01:32 TRACE    [ControlPanelTab] Side-panels are configured, using alternate InterfaceComponent for LOGOUT
00:01:32 TRACE    [ControlPanelTab] Opening LOGOUT using component: InterfaceComponent [164, 29]

OIE shows [164,29] as being over the chatbox, which is where the mouse is moving around.

Resizeable works fine.

Reproduce by calling "Runescape.logout()" in fixed screen mode on OSRS.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
You must have side panels enabled
Code:
 if (OptionsTab.isUsingSidePanels()) {
                Environment.getLogger().fine("[ControlPanelTab] Side-panels are configured, using alternate InterfaceComponent for LOGOUT");
                return Interfaces.newQuery().types(InterfaceComponent.Type.SPRITE).grandchildren(false).containers(164).actions("Logout").results().first();
            }
If you patch it or can find another logical flaw than I'll gladly include it in the next update.
 
Try 2.59.1 and let me know if it's resolved or not, you actually found an interesting edge case that nobody else noticed since resizable was released in OSRS.
 
Top