Release

Hive Assault

3

Tinycloud778 2019-05-17 20:28 (Edited)

Travel through asteroid belts, attack alien attack’s and destroy alien hives to save the galaxy.

An arcade game where you go trough 3 sections repeatedly (like donkey kong) in the first section you go through an asteroid belt then fight an alien ship, and finally shoot the hive

Hive Assault (3).nx | Open in app
2019-05-22 15:52
Hive Assault (3).nx | Open in app
2019-05-22 13:57
Hive Assault (3).nx | Open in app
2019-05-22 02:39
Hive Assault (3).nx | Open in app
2019-05-21 20:36
Hive Assault (3).nx | Open in app
2019-05-21 18:50
Hive Assault.nx | Open in app
2019-05-19 22:08
Hive Assault.nx | Open in app
2019-05-19 21:57
Hive Assault.nx | Open in app
2019-05-19 16:35
Hive Assault.nx | Open in app
2019-05-19 02:00
Hive Assault.nx | Open in app
2019-05-18 23:38
Hive Assault.nx | Open in app
2019-05-18 16:20
Hive Assault.nx | Open in app
2019-05-18 15:28
Hive Assault.nx | Open in app
2019-05-18 13:39
Hive Assault.nx | Open in app
2019-05-18 02:08
Hive Assault.nx | Open in app
2019-05-18 00:46
Asteroid Belt.nx | Open in app
2019-05-17 23:44
Asteroid Belt.nx | Open in app
2019-05-17 21:08
Asteroid Belt.nx | Open in app
2019-05-17 20:28

Tinycloud778 2019-05-18 01:25

I’m thinking of doing where instead of only dodging every level a different scenario is chosen like an asteroid belt, or a battle section, or for the end an attack on the alien Hive


Timo 2019-05-18 10:21

Just had a look at your code. Keep in mind that all you draw on a BG will stay there until you change it. The command SCROLL just moves the visible area (a BG is bigger than the screen), so you don't have to clear and redraw all the screen just to scroll. Sprites are completely independent from the BGs, too.
Here for example is the improved code for the title (actually I just moved down the DO):

TITLE:
CLS
BG COPY 0,0,32,30 TO 0,0

PRINT" HIVE ASSAULT"
PRINT""
ATTR(2,0,0,0)
PRINT" DESTROY THE ALIEN!"
PRINT" HIVE!"
PRINT""
PRINT" PROTECT THE GALAXY"
ATTR(1,0,0,0)
PRINT""
PRINT""
PRINT" PRESS 'Z' TO PLAY!"

DO
SCROLL 0,0,SY
SY=SY-0.2

IF BUTTON(0,0) THEN GOTO PLAYED

WAIT VBL
LOOP


By the way, I don't want to criticize your coding style at all, so don't let you get demotivated. I just want to help everyone to understand the system of NX :)


Tinycloud778 2019-05-18 13:39

Ok thanks


Tinycloud778 2019-05-18 17:15

Update:
Added the attack scenario and tweaked some things


Tinycloud778 2019-05-19 19:16

Update:
Now Its Completely playable


dredds 2019-05-19 20:38

I like the way the ship moves. The star field effect is lovely, especially the way you zoom it fast after the title screen. Little details like that really add polish to a game.

One suggestion: use ‘button A’ and ‘button B’ instead of ‘Z’ and ‘X’. Z & X make no sense on a phone.


Tinycloud778 2019-05-19 21:56

Oh ok thanks


Tinycloud778 2019-05-21 18:51

Update:
Added some music and sound effects


Timo 2019-05-21 18:55

I like sound :)


Tinycloud778 2019-05-22 01:48

Thanks


Tinycloud778 2019-05-22 15:53

Update:
Added now feedback when fighting the colony


Log in to reply.