app changes

This commit is contained in:
kepler155c@gmail.com
2019-01-17 23:33:43 -05:00
parent fc4514b6e2
commit 8fed8618d3
3 changed files with 34 additions and 4 deletions

23
games/ccTunes.lua Normal file
View File

@@ -0,0 +1,23 @@
local Sound = require('sound')
local os = _G.os
local tunes = {
'record.11',
'record.13',
'record.blocks',
'record.cat',
'record.chirp',
'record.far',
'record.mall',
'record.mellohi',
'record.stal',
'record.strad',
'record.wait',
'record.ward',
}
while true do
Sound.play(tunes[math.random(1, #tunes)])
os.sleep(120)
end