̬̬̬̈̬̬̬̬̈̬̬̬̬̬̪쬪̬̬̬̪쬪_ 8 4|lL 80x8  6x$^d ||"8$"> 4~ D L4<D0~,,FZN6RJ 2~l<FC$Q<c<0|l(@@8 @$@$B $$R<,R8\0$ $><0$fCr > """" "!! "  """"""!  "  !" " " """""""" "!!"! " " " !" "!"""!"  """!""! " "" "" """ "!"!"""" "  "" ""!!"" !" ! """ """  !!"  "  ""!"   X-- title: Tule tekemaan peli -- author: PKJedi -- desc: an invite to come make a game in finnish -- site: https://fraktio.fi/ -- license: MIT License (change this to your license of choice) -- version: 0.1 -- script: lua f=0 t=0 x=96 y=24 function set1bpp() poke4(2 * 0x3ffc, 8) end function set4bpp() poke4(2 * 0x3ffc, 2) end set1bpp() w=100 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) -- set1bpp() t=time()/10 cls(0) tx=240-t%(2*w) ty=64+56*math.sin(t/60) poke4(0x3ff0*2+1,1) w=font("TULE TEKEMAAN PELI FRAKTION PELIKOODAUSKERHOSSA",tx+2,ty+2) poke4(0x3ff0*2+1,2) font("TULE TEKEMAAN PELI FRAKTION PELIKOODAUSKERHOSSA",tx+1,ty+1) -- set4bpp() -- t=t+1 f=f+1 end