Event id for wheel scroll events. Calls the WheelScrollCallback.
-- Create a functionlocal wheelScroll = function(delta) osrs.print("Wheel Scrolled: " .. tostring(delta))end-- Subscribe to the functionosrs.Events.subscribe(wheelScroll, osrs.Events.WHEEL_SCROLL) Copy
-- Create a functionlocal wheelScroll = function(delta) osrs.print("Wheel Scrolled: " .. tostring(delta))end-- Subscribe to the functionosrs.Events.subscribe(wheelScroll, osrs.Events.WHEEL_SCROLL)
Event id for wheel scroll events. Calls the WheelScrollCallback.
Example