Page 1 of 1

Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 6:12 pm
by Hblade
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!

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 6:34 pm
by Hblade
High score: 104852
Score.JPG

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 6:45 pm
by lcl
Nice game. :D
Very good job! :D

Nice to see something you've done, it's been too long from the last time. :lol:

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 6:52 pm
by Hblade
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 ^^

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 8:10 pm
by lcl
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

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 8:15 pm
by Hblade
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;
}

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 8:24 pm
by lcl
Ok, nice work! :D

Btw, look here if you want: viewtopic.php?f=4&t=9246 :P
Not that you might need it... :lol:

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Tue Oct 19, 2010 9:14 pm
by Hblade
thanks ^^

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Wed Oct 20, 2010 7:35 am
by rykein
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.

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Wed Oct 20, 2010 2:14 pm
by Hblade
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

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Wed Oct 20, 2010 3:11 pm
by Bee-Ant
Add "Winter" before the "Blast" it would make it even cooler :P
Finally...
Nice game :D

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Wed Oct 20, 2010 4:49 pm
by Hblade
lol thanks xD Soon I'll upload screenshots of part 2 :3

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Thu Oct 21, 2010 2:55 am
by Chai
Two thumps up man.
You make a shadow following a ship very nice.
The clound graphic is nice.

Re: Blast - The free, Survival Arcade Shooter

PostPosted: Thu Oct 21, 2010 5:21 am
by Hblade
Thanks, chai :)

The next version will have ship graphics, and will have better looking clouds. It will also have a shield xD