0,]']Б>Sя}WџЭuЇ№p8Зd%qy)6o;]ЩAІіsяїєєє”АТVl†3=4 and l <=15 then poke(0x3fc0, l*16) end if l>=17 and l <=32 then poke(0x3fc0, -l*16) end if l>=32 and l <=47 then poke(0x3fc1, l*16) end if l>=49 and l <=64 then poke(0x3fc1, -l*16) end if l>=64 and l <=79 then poke(0x3fc2, l*16) end if l>=81 and l <=96 then poke(0x3fc2, -l*16) end if l>=96 and l <=111 then poke(0x3fc0, l*16) end if l>=113 and l <=128then poke(0x3fc0, -l*16) end if l>=96 and l <=111 then poke(0x3fc1, l*16) end if l>=113 and l <=128then poke(0x3fc1, -l*16) end if l>=130 then poke(0x3fc0, 0) end --- line(0,120,240,120,12) --line(0,10,240,10,12) --else -- poke(0x3fc2, 4*color) --end end stars={} --- fill stars table for i=0,200 do star ={ x= math.random(0,220), y= math.random(14,120), sp= math.random(1,4)-- speed } stars[i]=star end function dstars() for s,b in pairs(stars) do b.x = b.x - b.sp if b.y >=120 then b.y=-10 end if b.x >240 then b.x=0 end if b.x <0 then b.x=240 end if b.sp==1 then pix(b.x,b.y,14) end if b.sp==2 then pix(b.x,b.y,13) end if b.sp==3 then pix(b.x,b.y,12) end -- else -- pix(b.x,b.y,13) -- end end end function TIC() cls(15) dstars() print("GIGATRON", 4, 30+32*math.sin(-t2/20), 0,true,5) print("GIGATRON", 2, 31+32*math.sin(-t2/20), 14,true,5) print("2023", 60+32*math.sin(t2/20), 96, 0,true,5) t = t + 0.1 t2 = t2 + 1 -- sfx(0,30,15,1,15) end