123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- -- title: game title
- -- author: game developer, email, etc.
- -- desc: short description
- -- site: website link
- -- license: MIT License (change this to your license of choice)
- -- version: 0.1
- -- script: lua
- t=0
- x=96
- y=24
- function TIC()
- if btn(0) then y=y-1 end
- if btn(1) then y=y+1 end
- if btn(2) then x=x-1 end
- if btn(3) then x=x+1 end
- cls(13)
- spr(1+t%60//30*2,x,y,14,3,0,0,2,2)
- print("HELLO WORLD!",84,84)
- t=t+1
- end
- -- <TILES>
- -- 000:6666666666666666666666666666666666666666666666666666666666666666
- -- 001:6666666666666666666666666666666666666666666666666666666666666666
- -- 002:3333333333333333333333333333333333333333333333333333333333333333
- -- 003:3333333333333333333333333333333333333333333333333333333333333333
- -- 004:3333333333333333333333333333333333333333333333333333333333333333
- -- 005:3333333333333333333333333333333333333333633333336333333363333333
- -- 006:3333333333333333333333333333333333333333333333663333333333333333
- -- 007:3333333333333333333333333333333333333333633333336333333363333333
- -- 008:3333333333333333333333333333333333333333333333663333333333333333
- -- 009:3333333333333333333333333333333333333333633333336333333363333333
- -- 016:6666666666666666666666666666666666666666666666666666666666666666
- -- 017:6666666666666666666666666666666666666666666666666666666666666666
- -- 018:3333333333333333333333333333333333333333333333333333333333333333
- -- 019:3333333333333333333333333333333333333333333333333333333333333333
- -- 020:3333333333333333333333333333333333333333333333333333333333333333
- -- 021:6333333363333333633333336333333333333333333333333333333333333333
- -- 022:3333336633333363333333633333336633333333333333333333333333333333
- -- 023:6333333333333333333333336333333333333333333333333333333333333333
- -- 024:3333336633333333333333333333336633333333333333333333333333333333
- -- 025:6333333363333333633333336333333333333333333333333333333333333333
- -- </TILES>
- -- <WAVES>
- -- 000:00000000ffffffff00000000ffffffff
- -- 001:0123456789abcdeffedcba9876543210
- -- 002:0123456789abcdef0123456789abcdef
- -- </WAVES>
- -- <SFX>
- -- 000:000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000304000000000
- -- </SFX>
- -- <TRACKS>
- -- 000:100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- </TRACKS>
- -- <PALETTE>
- -- 000:1a1c2c5d275db13e53ef7d57ffcd75a7f07038b76425717929366f3b5dc941a6f673eff7f4f4f494b0c2566c86333c57
- -- </PALETTE>
|