Log In  
Follow
Xero0

R0549n-23

A basically finished game

I guess I could add some new enemy types, script some new levels, maybe add some new drops, powerups, emp, maybe add some story, asteroid level, maybe a planet with gravity, new playable ships, protect mission, and idk maybe a racing minigame. I'll just keep adding stuff until I run out of tokens


Cart #r0549n_23-6 | 2025-04-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11


update Apr 28: Leaderboard, updated UI, BETA RELEASE YAYYYYY


update Apr 27: Added wave counter


update Apr 22: Added credit, Bugfix


update Apr 21, 2025: Added music, sfx, and endless mode. I didn't end up remaking it on picotron, but that could still happen.


update Dec 26: no progress- i will wait for picotron and make it on there. the higher resolution will be a benefit to this game.

[ Continue Reading.. ]

11
2 comments



A helpful function to create a scrolling menuitem.

function menu(i,opt,func)
	local indx=0
	menuitem(i,"< "..opt[1].." >",
		function(b)
			if(b==112)then
				func(opt[indx+2])
				return
			end
			indx+=b*4-6
			indx%=#opt
			menuitem(i,"< "..opt[indx+1].." >")
		end
	)
end

Demo:

Cart #dobuidowat-0 | 2021-04-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
1 comment