ZLP1/scripts/score.lua

8 lines
173 B
Lua

function AddScore()
if Score-ScoreShown > 150 then
ScoreShown = ScoreShown + 150 --math.floor(1/5 * (Score - ScoreShown))
else
ScoreShown = math.floor(Score)
end
end