Scoreboard question
Posted: Thu May 14, 2015 7:16 am
Hello, im trying to add a scoreboard, but i dont know how to store values on a table permanently. How can i do this?
Code: Select all
local serialize = require 'ser'
function love.load()
local ok, chunk = pcall(love.filesystem.load, 'highscores.lua')
if ok then
highscores = chunk()
else
highscores = {}
end
end
function love.quit()
love.filesystem.write('highscores.lua', serialize(highscores))
end