Jump to content

Bank scrolling broken


Recommended Posts

Posted

None of the questions from the report template are really relevant here.. so..

 

Description:

Banking uses a scroll button mouse-event to scroll in the bank. Mirror mode does not pick this event up, so it gets stuck scrolling.

 

Can this be fixed already? Was reported ages ago

 

I also experience this, also doesn't scroll with world hopping. (Only in mirror mode)

Posted (edited)

API says that clickToSlot has a 1/6 chance to not use mouse wheel.

 

Thats scrollToSlot not clickToSlot:

 

  • clickToSlot public void clickToSlot(int slot,

    int absoluteSlot)

    Scrolls to the specified slot by clicking the scroll arrow buttons
    Parameters: slot - slotToScrollTo

 

  • scrollToSlot public void scrollToSlot(int slot,

    boolean forceMouseScroll,

    int absoluteSlot)

    Scrolls to the specified slot either by scrolling the mouse or clicking the scroll arrow buttons, randomized with 5/6 chance of mouse scrolling. THIS IS RECOMMENDED METHOD
    Parameters: slot - The slot to scroll to. forceMouseScroll - If true the method will be forced to scroll using the mouse scroll wheel instead of randomizing usage of the scroll button and the arrow marker buttons.
Edited by SkylerSel
  • Like 1
Posted

 

Thats scrollToSlot not clickToSlot:

 

  • clickToSlot public void clickToSlot(int slot,

    int absoluteSlot)

    Scrolls to the specified slot by clicking the scroll arrow buttons
    Parameters: slot - slotToScrollTo

 

  • scrollToSlot public void scrollToSlot(int slot,

    boolean forceMouseScroll,

    int absoluteSlot)

    Scrolls to the specified slot either by scrolling the mouse or clicking the scroll arrow buttons, randomized with 5/6 chance of mouse scrolling. THIS IS RECOMMENDED METHOD
    Parameters: slot - The slot to scroll to. forceMouseScroll - If true the method will be forced to scroll using the mouse scroll wheel instead of randomizing usage of the scroll button and the arrow marker buttons.

 

 

clickToSlot is likely just a handler for scrollToSlot + interact.

  • Like 1
Posted

A similar issue (probably caused by same problem of tab, scroll wheel and spacebar not being registered) arises when using 

 

keyboard.typeString(String s);

 

where s has a space in it eg:

 

String s = "hello hello";

 

the script will type

 

"hellohello" because space cannot be pressed 

 

apa

  • 3 weeks later...
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...