OSRS Plugin API
    Preparing search index...

    Enumeration KEY_UP

    Event id for key up events. Calls the KeyUpCallback.

    -- Create a function
    local keyUp = function(keyCode)
    osrs.print("Key Up: " .. tostring(keyCode))
    end
    -- Subscribe to the function
    osrs.Events.subscribe(keyUp, osrs.Events.KEY_UP)