Typing Game

Press the keys in sequence within the given time.

-- @param1 difficulty (easy, medium, hard)
-- @param2 duration (second)

local success = exports['rm_minigames']:typingGame("easy", 20)
if success then
    print("SUCCESS")
else
    print("FAILED")    
end

Last updated