Log In  

Current Version:

Cart #48046 | 2018-01-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

Update V1.2 - End Screen was still skipable with the (X) key, which lead to it being skipped and the end score being lost.

Update V1.1 - Fixed the ending sequence so that its actually happening now! Thank for the feedback!

Hello Pico8 Friends!
This is the first ever game I've released, an im quite proud of it.
The code is pretty messy and uncommented, so sorry for that(I'm on a tight schedule!)!
I hope you enjoy my little game, and don't forget to share your highscore!

Old Versions:

Cart #47893 | 2018-01-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10


Cart #47879 | 2018-01-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

P#47880 2018-01-05 02:57 ( Edited 2018-02-20 17:42)

Good work on your first release -- it's fun!

Here's my feedback:

  • I like the player ship design a lot
  • The sfx are good - the tones you made feel like a rhythm once you get a lot of things happening at once. It could still use proper music, though.
  • I got a score of 4270.. And around then new enemies stopped spawning. You may want to add a 'level over' state (or maybe you already have that and I just didn't trigger it somehow?)
  • The red enemy bullets.. I feel like those should be flashing or something so they are easier to see? But honestly even with all of the other particles on screen I never had much of a problem. The big life bar helps with that too.
P#47885 2018-01-05 08:53 ( Edited 2018-01-05 13:53)

Thanks for the feedback enargy!
I wasnt able to get a soundtrack in because im terrible with the tracker and still haven't fully understood how it actually works!
The bug with the ending is fixed now!
I had a flashing bullet in earlier stages of developement, and it kind of didnt really work out. It made it hard to spot and focus on it!

Again thank you so much :)

P#47895 2018-01-05 15:24 ( Edited 2018-01-05 20:24)

Nice pacing ! The enemy bullets are a bit hard to spot though...

P#47909 2018-01-06 03:06 ( Edited 2018-01-06 08:06)

plays smooth. nice particles n such!

P#48036 2018-01-10 14:29 ( Edited 2018-01-10 19:29)

Hey thanks for your nice comments everyone!
@firefly, i had the choice of having it semi hard to spot, or being too big and making the game too easy. I went for the more hardcore route!

P#48047 2018-01-10 16:49 ( Edited 2018-01-10 21:49)

Won!. 949 shipps killed ( first time playing)
was fun thanks!

P#48095 2018-01-12 18:37 ( Edited 2018-01-12 23:37)

Nice job!

You should be more explicit about how you handle repeat fire, though.

Right now, at least in the web player, I can either hold the fire key down and get a fresh shot every time key repeat kicks in, or I can hammer the key myself and get a constant cascade of shots.

That being said, moving up or down interrupts the key repeat, which is a bit of a problem.

A game like this would typically consider these options:

  • disallow btnp()-based keyrepeat and force manual repeating
  • use a custom btn()-based auto-repeat method
  • possibly repeat with unlimited shots on screen
  • possibly repeat with limited number of shots
  • possibly limit the frequency of shots - introduces questions like, "if they hit the key again too soon, do I queue the next shot or ignore the key?"

The problem, I think, is that (at least in the web player) pico-8 pulses btnp() for keyrepeat events, which I personally think it shouldn't (or there should be an API setting for it). So you'd want to do your own debouncing and only read btn(), which I'm pretty sure doesn't pulse off/on for key repeats.


By the way, a quick tip I give to a lot of people: You don't need to compare booleans to true or false.

This:

    if scoreprnt==true then 

Can just be:

    if scoreprnt then 

Can save a few tokens here and there, if you need 'em.

Same for checking for nil and non-nil, by the way.

The only time you really need to check specifically for nil or true/false is when you have a boolean value that may not yet exist, e.g.:

    if invert_y==nil then
        invert_y=ask("Invert Y axis?")
    end
P#48152 2018-01-14 00:42 ( Edited 2018-01-14 05:47)

Thank you so much for your feedback! I'm definitely going to do a sequel to this game and implement your ideas!

Have a nice day! :)

P#48192 2018-01-15 01:17 ( Edited 2018-01-15 06:17)

This is a really lovely first PICO-8 game! I especially like the pink puffy smoke from the thrusters. Nice job!!

P#49453 2018-02-20 12:42 ( Edited 2018-02-20 17:42)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-29 08:50:13 | 0.026s | Q:35