OSRS Plugin API
    Preparing search index...

    Enumeration POINTER_RELEASE

    Event id for releasing the pointer from the screen. Calls the PointerReleaseCallback.

    -- Create a function
    local 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 function
    osrs.Events.subscribe(pointerRelease, osrs.Events.POINTER_RELEASE)