У нас вы можете посмотреть бесплатно My Quest for a Commodore 64 Ultimate Begins или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
I’m starting a new journey — can I make enough money from creating games and zines to finally buy my dream machine, the Commodore 64 Ultimate? 🎮✨ In this series, I’ll be sharing my progress as I design games for the Commodore 64, create retro-inspired zines, and see if I can turn my passion into enough to fund this ultimate piece of hardware. If you love retro gaming, C64 development, or just enjoy following creative projects, join me on this quest! 👉 What do you think — can I pull it off? Let me know in the comments! 🔗 Follow the journey: Subscribe for updates: / @spellthorn Check out my store: https://spellthorn.com/ #Commodore64 #C64 #RetroGaming #GameDev #Zines 🕹️ Simple game I was coding in the background (not great lol) I had to replace the angled brackets, so if you see {LT} you have to replace that with Less Than Sign and if you see {GT} replace it with Greater Than Sign 10 PRINT CHR$(147);"CATCH THE STAR!" 20 PRINT "USE A/D KEYS TO MOVE" 30 PRINT "PRESS SPACE TO START" 40 GET A$:IF A${LT}{GT}CHR$(32) THEN 40 50 X=10:SC=0 60 SX=INT(RND(1)*38)+1:SY=2 70 HEIGHT=24 100 REM MAIN GAME LOOP 110 PRINT CHR$(147); 120 PRINT "SCORE:";SC 130 FOR L=2 TO HEIGHT-1 140 IF L=SY THEN PRINT TAB(SX);"*" 150 IF L{LT}{GT}SY THEN PRINT 160 NEXT L 170 PRINT TAB(X);"O" 180 GET A$:IF A$="A" AND X{GT}1 THEN X=X-1 190 IF A$="D" AND X{LT}38 THEN X=X+1 200 SY=SY+1 210 IF SY{GT}=HEIGHT THEN IF X=SX THEN SC=SC+1 220 IF SY{GT}=HEIGHT THEN SY=2:SX=INT(RND(1)*38)+1 230 GOTO 110 5 POKE 53280,0 6 POKE 53281,0 7 POKE 646,1