Log In  

Cart #zodujazuhu-1 | 2022-09-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
12

Fixed the bug (I had an older verison of pico8 and the sub() function behaved differrently, thanks to @choo-t for the solution)

(The game was made for the basic shmup showcase jam following the lazydev'tutorials)

My thoughts on the game:

I followed the tutorials without a lot of changes to the game so at the start of the jam I had to choose what to do with the game I already had, I felt really inspired playing stick it to the stickman and I wanted some similar mechanics in my game, I decided to keep the wave game mode as some kind of "campaign" in which u could win the game and then add the mechanic I wanted in a new infinite game mode. I considered having just one game mode but I didn't think it would change remarkably in terms of token because for the new game I'd still have to copy most the code (I also considered starting from scratch but it seemed to much work), I struggled a little with the token limit in the last days but I guess that no matter what I would still probably have reached it.
Also a few times I lost sight of the vision and just started to add whatever came to mind in the game, I think I should have dedicated more time in the beginning into planning what power ups I wanted in the game and how they could interact with each other (e.g., the xp boost is almost useless it just makes you go faster through the game I thought it made sense when I introduced it in the game because the difficulty was time based while now is level based but still it didn’t really add much to the gameplay)
One interesting tradeoff I had is that the token limitation made me think about writing most of the code in a string and then turning it into code with a function, turning for example an array in a string and then have a function go through it and create the array or do it for function parameters, decreasing the readability of the code. (I only reached the limit toward the end so I only used it in a few arrays that I knew I would probably never modify again)
(English isn’t my first language and I’m writing this after testing and debugging the game if there are some mistakes I’m sorry and pls let me know)

my itch.io page

P#117704 2022-09-20 18:21 ( Edited 2022-09-22 07:46)

I sadly got a bug on startup, but your insights on your process were very nice

P#117711 2022-09-20 18:30

What bug?

P#117715 2022-09-20 18:47

The bug is called an error. Errors are something which was invalid or incorrect.

P#117742 2022-09-21 00:38
1

If I start playing in "wave" mode, this error message appears after a few seconds.

If I select "arcade" mode I can play a bit, and it is fun. But if I shoot down all the enemies, so there are none left on the screen, the same error happens. So I think there must be a way for myen to be defined but to have its hp or type be nil.

This happened on the Web player. Sometimes people find errors appear in different places between the Web player and the standalone application.

For anyone wanting to include a screenshot like this with your bug reports, see the Pico-8 Manual on Screenshots and GIFs.

Good luck as you investigate this problem.

P#117748 2022-09-21 04:47

Thanks for the feedback

P#117753 2022-09-21 06:48
2

@dan789678264 Found your problem :

• Update your local PICO-8 to the latest version (0.2.5c at the time of writing)

• Replace one single line of code :

Line 1773, replace

en=tonum(sub(lvl,i,_))

by

en=tonum(lvl[i])

It's because sub() behavior have been changed in PICO-8 0.2.5, so your game work on your itch.io because you exported the html player with version 0.2.4c, but here on the BBS, the player is always up to date.

@zep

Seem lot of people used the non-digit parameter trick on sub() (myself included), is it possible on the BBS to grep for sub\(([^,]+),([^,]+),\D\) and replace with $1[$2] or warn the author about the change affecting their cartridge ?

P#117786 2022-09-22 07:14 ( Edited 2022-09-22 07:23)

Oh ok thank you

P#117791 2022-09-22 07:20
1

The range of different upgrades is impressive. I like how some only show up after a few rounds, like selecting what the "x" ability is. Gold star. I lasted quite a while before they just got too much health to handle:

P#117848 2022-09-23 13:00

Thanks! That's a remarkable highscore

P#117849 2022-09-23 13:21

Hey @dan789678264

Fellow shmup maker -- I read your code and the "to string" for the placeens waves is an awesome super simple optimization from the tutorial.

Do you mind if I use it to optimise my game?

P#117970 2022-09-26 03:43

not at all, feel free to use it

P#117977 2022-09-26 07:09 ( Edited 2022-09-26 08:34)

si cool, really juicy...

P#117980 2022-09-26 08:32

thanks

P#117981 2022-09-26 08:34
1

This is my favorite game in the PICO SHMUP Jam. I love the art, the feel, and the progression in arcade mode. And the bullets look divine. I absolutely love this game.

P#118248 2022-09-30 22:27

Thank u :)

P#118263 2022-10-01 07:30

This game is amazing! I love how you can make your own build and customize your ship's stats to your liking! Also, the explosion effects are perfect! 10/10, take my star.

P#119330 2022-10-19 19:33 ( Edited 2022-10-19 21:09)

Thank u so much

P#119378 2022-10-20 08:37

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 14:34:39 | 0.083s | Q:44