Blast - The free, Survival Arcade Shooter

Talk about making games.

Blast - The free, Survival Arcade Shooter

Postby Hblade » Tue Oct 19, 2010 6:12 pm

Hello everyone! Hblade here, finally completed my first game.

Remember those Arcade games you used to blow your money on because you sucked at them? Now, you can hone / train your skills with this all new, intense, high speed Arcade Shooter! Level up, get stronger, faster, and better as you work your way up to the high levels and obtain the highest score! Post your score here in this topic for fun! (No cheat engine allowed :P) :3

Trailer:


Download:
WINDOWS
Blast.zip
(1.6 MiB) Downloaded 91 times

MAC
mac.zip
(1.89 MiB) Downloaded 75 times

LINUX
linux.zip
(1.56 MiB) Downloaded 71 times



CONTROLS:

Controller:
    Button 1 - Shotgun
    Button 2 - Speedshot
    Joystick / arrows - movement

Keyboard:
    A, S, D, W - Movement
    K - Shotgun
    L - Speedshot


ENJOY!
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Tue Oct 19, 2010 6:34 pm

High score: 104852
Score.JPG
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby lcl » Tue Oct 19, 2010 6:45 pm

Nice game. :D
Very good job! :D

Nice to see something you've done, it's been too long from the last time. :lol:
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Tue Oct 19, 2010 6:52 pm

Thanks :D you like it? :3

On a scale of 1 to 10, what would you rate this game?

(BTW I CANT GET PASS LEVEL 15 I'm always like around 200 points away :()

Also, in part 2, there will be a multi-dir shooter which shoots 6 shots in all directions ^^
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby lcl » Tue Oct 19, 2010 8:10 pm

Yeah, I like. :D
Maybe 8. :D

This is very hard game. I just got to level 2 and died. :lol:

How did you do that shotgun shooting? I mean those "bullets" go to different directions? :D
I think you made their angles be some different values, but how? :D
Last edited by lcl on Tue Oct 19, 2010 8:18 pm, edited 1 time in total.
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Tue Oct 19, 2010 8:15 pm

How to make them?

Simple xD My code is sloppy, I know
Code: Select all
void CREATE_SHOT(int TYPE) {
    if (TYPE == 0) {
    if (TMP == 0) {
        TIMER = 24;
        TMP = 1;
                  }
    if (TIMER>=48) {
        PlaySound2("data/lazer_shot.wav", 0.700000, 1, 0.000000);
        CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
        sdir=1;
        CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
        sdir=2;
        CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
        sdir = 3;
        CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
        sdir = 4;
        CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
        sdir = 0;
        TIMER = 0;
                  }
                   }
       if (TYPE == 1) {
           if (TMP == 0) {
        TIMER = 24;
        TMP = 1;
                         }
        if (TIMER>=24) {
           sdir = 5;
           PlaySound2("data/lazer_shot.wav", 0.700000, 1, 0.000000);
           CreateActor("SHOT", "item", "(none)", "(none)", 0, 0, false);
           sdir = 0;
           TIMER = 0;
                      }
                      }
                   }


Thats the global Void function. For the bullet actor, called "SHOT", have this in Create Actor
Code: Select all
r = level*24;
g = 255 - (level * 24);
b = 89;
xvelocity = 14;
switch(sdir)
{
    case 0:
    yvelocity = -2;
    break;
    case 1:
    yvelocity = -1;
    break;
    case 2:
    yvelocity = 0;
    break;
    case 3:
    yvelocity = 1;
    break;
    case 4:
    yvelocity = 2;
    break;
    case 5:
    xvelocity = 16;
    yvelocity = 0;
}
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby lcl » Tue Oct 19, 2010 8:24 pm

Ok, nice work! :D

Btw, look here if you want: viewtopic.php?f=4&t=9246 :P
Not that you might need it... :lol:
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Tue Oct 19, 2010 9:14 pm

thanks ^^
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby rykein » Wed Oct 20, 2010 7:35 am

Did you plan for holding down both fire buttons to shoot faster? pretty good start, though I gave up due to boredom after getting level 16, very repetitive.
rykein
 
Posts: 63
Joined: Mon Jul 26, 2010 7:26 am
Score: 6 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Wed Oct 20, 2010 2:14 pm

lol the second version has ships xD

And yeah that was a keyboard cheat o.o It doesnt work for controller xD I got rid of it with part 2.


Part 2 has a shield too xD
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Bee-Ant » Wed Oct 20, 2010 3:11 pm

Add "Winter" before the "Blast" it would make it even cooler :P
Finally...
Nice game :D
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Wed Oct 20, 2010 4:49 pm

lol thanks xD Soon I'll upload screenshots of part 2 :3
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Chai » Thu Oct 21, 2010 2:55 am

Two thumps up man.
You make a shadow following a ship very nice.
The clound graphic is nice.
User avatar
Chai
 
Posts: 361
Joined: Sat Apr 30, 2005 2:26 pm
Location: Thailand
Score: 30 Give a positive score

Re: Blast - The free, Survival Arcade Shooter

Postby Hblade » Thu Oct 21, 2010 5:21 am

Thanks, chai :)

The next version will have ship graphics, and will have better looking clouds. It will also have a shield xD
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score


Return to Game Development

Who is online

Users browsing this forum: No registered users and 1 guest