Zach Attakk Codes
Zach Attakk Codes
  • Видео 36
  • Просмотров 2 944
Making Snake in TIC-80 - Part 15, Combo meter
Increase the combo meter every time a player scores, then show a timer that runs down before it resets.
Find the code here: bit.ly/classic_snake
- Lua cheatsheet: devhints.io/lua
- TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/
TIC-80:
- Official website: tic80.com/
- Wiki Documentation: github.com/nesbox/TIC-80/wiki
Chapters:
00:00 - Debug misplaced fruit
06:00 - Combo meter line
18:21 - Make it work
23:00 - Make progress bar... progress
Просмотров: 37

Видео

Making Snake in TIC-80 - Part 14, Better High Score Entry
Просмотров 5221 день назад
The process of entering your name for high scores needs to be more intuitive. Also sound effects are nice... Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Blinking cursors 04:51 - Stop cur...
Making Snake in TIC-80 - Part 13, Saving High Scores (pt3?)
Просмотров 44Месяц назад
Save to persistent memory and load it on next startup. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Intro 01:17 - How Save ID works 03:23 - How pmem() works 04:34 - Save function 16:56 - ...
Making Snake in TIC-80 - Part 12, High Scores pt2
Просмотров 30Месяц назад
Make the name input a little nicer, and then actually add the name to the high score list Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Better input UI 02:34 - Read inputs 10:53 - Actually...
Making Snake in TIC-80 - Part 11, High Scores pt1
Просмотров 37Месяц назад
Show a list of high scores, show a prompt for the player to enter their name. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Show high score list 11:20 - Reset score on game over 12:00 - ¿C...
Making Snake in TIC-80 - Part 10, Countdown to start
Просмотров 32Месяц назад
It helps if there's a countdown before the game starts... This was more complicated than I thought... Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Add gamestates 02:07 - New update and dr...
Making Snake in TIC-80 - Part 9, Boundary checks, game over, looks
Просмотров 33Месяц назад
We make the edges of the grid dangerous, and start desining the "game over" screen. We can also make it look nicer. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - State machine 06:08 - Refa...
Making Snake in TIC-80 - Part 8, Bigger snake
Просмотров 212 месяца назад
First some actual fruit (and more of it), then make the tail grow, then start handling game-over conditions. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - I did an art! 01:53 - Different f...
Making Snake in TIC-80 - Part 7, Eating and score
Просмотров 282 месяца назад
Eat the fruit and increment the score. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - check_eat() 08:15 - Score 11:14 - Remove eaten fruit 16:26 - Place new fruit
Making Snake in TIC-80 - Part 6, Not quite fruity fun
Просмотров 242 месяца назад
Prevent the snake from doubling back on itself, and then start adding something the snake can eat. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Fix snake tail 01:00 - Fix turning 03:20 - ...
Making Snake in TIC-80 - Part 5, If it looks like a snake...
Просмотров 392 месяца назад
... and it slithers like a snake... let's make it look like a snake. Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - Overlapping circles 09:33 - Make tail shorten 15:14 - Mansplaining my cod...
Making Snake in TIC-80 - Part 4, Move your body!
Просмотров 342 месяца назад
First we add DEBUG mode, then we make the snake body update according to the position of the head Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: github.com/nesbox/TIC-80/wiki Chapters: 00:00 - DEBUG mode 09:35 - Move segments 12:20 - Ani...
Making Snake in TIC-80 - Part 3, Add snake tail
Просмотров 1182 месяца назад
Make some tweaks to snake head so the tail pieces can have the same data, then make an array that will hold all our snake segments, and draw it to screen. They don't move yet though... Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wiki Documentation: githu...
Making Snake in TIC-80 - Part 2, Snake head object and better movement
Просмотров 392 месяца назад
First we make a helper function to translate grid coordinates to screen coordinates, then we change how the snake head is drawing. Then we introduce the timer to help with animations. Also we give it a face! Find the code here: bit.ly/classic_snake - Lua cheatsheet: devhints.io/lua - TIC-80 cheatsheet: skyelynwaddell.github.io/tic80-manual-cheatsheet/ TIC-80: - Official website: tic80.com/ - Wi...
Making Snake in TIC-80 - Part 1, Snake head, grid, basic movement
Просмотров 1352 месяца назад
Let's get something moving on screen, draw a grid for it to move on, and then store inputs until we need to change direction. Find the code here: bit.ly/classic_snake - TIC-80 Dev Mode: ruclips.net/video/LU0NZ-gvvHQ/видео.html - TIC-80 Console Commands: ruclips.net/video/gAaifeCTwko/видео.html - TIC-80 Sprite Editor: ruclips.net/video/cIm3VA-WUs4/видео.html - Lua cheatsheet: devhints.io/lua - T...
How to TIC-80 - Music Editor
Просмотров 1963 месяца назад
How to TIC-80 - Music Editor
How to TIC-80 - SFX Editor
Просмотров 853 месяца назад
How to TIC-80 - SFX Editor
How to TIC-80 - Tilemap Editor
Просмотров 813 месяца назад
How to TIC-80 - Tilemap Editor
How to TIC-80 - Sprite Editor
Просмотров 1903 месяца назад
How to TIC-80 - Sprite Editor
How to TIC-80 - Code Editor
Просмотров 1163 месяца назад
How to TIC-80 - Code Editor
How to TIC-80 - Console Commands
Просмотров 3404 месяца назад
How to TIC-80 - Console Commands
How to TIC-80 - A Better Coding Experience
Просмотров 2554 месяца назад
How to TIC-80 - A Better Coding Experience
Making Pong in TIC-80 - Part 13, Add curve balls and publish
Просмотров 384 месяца назад
Making Pong in TIC-80 - Part 13, Add curve balls and publish
Making Pong in TIC-80 - Part 12, Make start menu
Просмотров 314 месяца назад
Making Pong in TIC-80 - Part 12, Make start menu
Making Pong in TIC-80 - Part 11, On screen controls, keyboard controls
Просмотров 464 месяца назад
Making Pong in TIC-80 - Part 11, On screen controls, keyboard controls
Making Pong in TIC-80 - Part 10, More start screen improvements
Просмотров 254 месяца назад
Making Pong in TIC-80 - Part 10, More start screen improvements
Making Pong in TIC-80 - Part 9, Fix score, let players serve, better controls
Просмотров 324 месяца назад
Making Pong in TIC-80 - Part 9, Fix score, let players serve, better controls
Making Pong in TIC-80 - Part 8, Start screen, wait for player input
Просмотров 104 месяца назад
Making Pong in TIC-80 - Part 8, Start screen, wait for player input
Making Pong in TIC-80 - Part 7, Bug fixing collisions and speeding up
Просмотров 204 месяца назад
Making Pong in TIC-80 - Part 7, Bug fixing collisions and speeding up
Making Pong in TIC-80 - Part 6, Reset function and keeping score
Просмотров 214 месяца назад
Making Pong in TIC-80 - Part 6, Reset function and keeping score