Files
mini/data/game.lua
Raimon Zamora c7dcf8bb8e - Implementada polifonia en Chirping
- Arreglats un montó de warnings per lo mon
2023-01-09 17:02:04 +01:00

15 lines
203 B
Lua

x=0
function _init()
text="HOLA MINI"
playchirp("o4w4ce")
playchirp("o4w4go5c")
end
function _update()
cls(20)
prnt(text,x,60)
x=x+1
if x>160 then x=-strlen(text)*4 end
end