Event id for releasing the pointer from the screen. Calls the PointerReleaseCallback.
-- Create a functionlocal pointerRelease = function(p, bt, x, y) osrs.printf("Pointer: %i Button: %i move to X: %i Y: %i", p, bt, x, y)-- Subscribe to the functionosrs.Events.subscribe(pointerRelease, osrs.Events.POINTER_RELEASE) Copy
-- Create a functionlocal pointerRelease = function(p, bt, x, y) osrs.printf("Pointer: %i Button: %i move to X: %i Y: %i", p, bt, x, y)-- Subscribe to the functionosrs.Events.subscribe(pointerRelease, osrs.Events.POINTER_RELEASE)
Event id for releasing the pointer from the screen. Calls the PointerReleaseCallback.
Example