Node Blaster: An intense bullet hell space shooter.

Show off your games, demos and other (playable) creations.
User avatar
Kingdaro
Party member
Posts: 395
Joined: Sun Jul 18, 2010 3:08 am

Node Blaster: An intense bullet hell space shooter.

Post by Kingdaro »

A game I've been working on over the course of these past couple days. The objective is simple; you shoot everything that moves, until you fall under pressure and eventually get barraged by suicidal enemies. Also, be careful of the massive laser that starts going after you when you play for a bit.

Screenshot:
Image

Bitbucket page:
https://bitbucket.org/Kingdaro/node-blaster

Download:
node-blaster.love
(3.74 MiB) Downloaded 325 times
Note: the gray enemies shown in the screenshot do not appear in the game. Enemies simply flash gray when they are being shot.
Last edited by Kingdaro on Sat Jul 20, 2013 3:28 pm, edited 3 times in total.
User avatar
NightKawata
Party member
Posts: 294
Joined: Tue Jan 01, 2013 9:18 pm
Location: Cyberspace, Room 6502
Contact:

Re: Node Blaster: An intense bullet hell space shooter.

Post by NightKawata »

I can't shoot at all.
Apparently Z/X are both broken here.
"I view Python for game usage about the same as going fishing with a stick of dynamite. It will do the job but it's big, noisy, you'll probably get soaking wet and you've still got to get the damn fish out of the water." -taylor
User avatar
Kingdaro
Party member
Posts: 395
Joined: Sun Jul 18, 2010 3:08 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by Kingdaro »

NightKawata wrote:I can't shoot at all.
Apparently Z/X are both broken here.
Odd...could it be an issue with differing operating systems? It works fine for me.
User avatar
seanmd
Prole
Posts: 35
Joined: Sat Jun 22, 2013 7:47 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by seanmd »

Way awesome. I think I got carpal tunnel from hitting z/x so fast. How do you feel about autofire?
User avatar
Kingdaro
Party member
Posts: 395
Joined: Sun Jul 18, 2010 3:08 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by Kingdaro »

seanmd wrote:Way awesome. I think I got carpal tunnel from hitting z/x so fast. How do you feel about autofire?
Thanks!

I thought about autofire, but that doesn't really make the game as...exciting I suppose. Maybe I could make it an option, where autofire would fire much slower than if you were to mash like hell.
User avatar
seanmd
Prole
Posts: 35
Joined: Sat Jun 22, 2013 7:47 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by seanmd »

Sounds like a nice in-between solution.

What triggers weapon upgrades? It was tough to pay attention once the big laser came in :)
User avatar
Davidobot
Party member
Posts: 1226
Joined: Sat Mar 31, 2012 5:18 am
Location: Oxford, UK
Contact:

Re: Node Blaster: An intense bullet hell space shooter.

Post by Davidobot »

THIS. IS. AWESOME. The LÖVELINESS Chrome extension played it for me... Also LÖVELINESS can also now save data!!!! I think it's time to make LÖVE flash-like games! Like this one!!!! Just as long as I find a method to embed a .love file into an existing web-page... :o:
Attachments
My first score
My first score
Безымянный.png (6.57 KiB) Viewed 7283 times
PM me on here or elsewhere if you'd like to discuss porting your game to Nintendo Switch via mazette!
personal page and a raycaster
User avatar
Kingdaro
Party member
Posts: 395
Joined: Sun Jul 18, 2010 3:08 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by Kingdaro »

seanmd wrote:Sounds like a nice in-between solution.

What triggers weapon upgrades? It was tough to pay attention once the big laser came in :)
You get an extra "gun" every three levels (at level 4, level 7, level 10, etc.).
Davidobot wrote:THIS. IS. AWESOME. The LÖVELINESS Chrome extension played it for me... Also LÖVELINESS can also now save data!!!! I think it's time to make LÖVE flash-like games! Like this one!!!! Just as long as I find a method to embed a .love file into an existing web-page... :o:
Haha, nice!
User avatar
SneakySnake
Citizen
Posts: 94
Joined: Fri May 31, 2013 2:01 pm
Contact:

Re: Node Blaster: An intense bullet hell space shooter.

Post by SneakySnake »

NightKawata wrote:I can't shoot at all.
Apparently Z/X are both broken here.
This is caused by, yet again, the implicit vararg parameter (Removed in Lua 5.1) not being supported in LuaJit.
Here is the patch:

Code: Select all

diff --git a/extra.lua b/extra.lua
index 8691a84..a9d1547 100644
--- a/extra.lua
+++ b/extra.lua
@@ -1,5 +1,6 @@
 -- function for creating "sets", where each index = true
 function set(...)
+       local arg = {...}
        local t = {}
        for i=1, #arg do
                t[arg[i]] = true

I agree that this game is very hard on the fingers. I couldn't last 3 minutes because my fingers started hurting.
You can get to much more "intense" levels of action with automated keymashing:
Image
User avatar
Kingdaro
Party member
Posts: 395
Joined: Sun Jul 18, 2010 3:08 am

Re: Node Blaster: An intense bullet hell space shooter.

Post by Kingdaro »

Updated. I removed sets entirely, as they were being used for something that could easily be replaced with a loop.

Also, added a slow(er) autofire, where you can just hold either shooting key down, or you can still mash like crazy.

And yes, I'm fully aware people can use an automated key relay. Doesn't matter, as it's their game, not mine.
Post Reply

Who is online

Users browsing this forum: No registered users and 25 guests