Log In  

Just putting this here for now.

Needs a little more polish, including some more sfx here and there.

Momentum beginning to fade though. Not really sure where I'm going any more.

Any feedback welcome. I've a few hundred tokens left to play with IIRC.

Controls should be easy to work out, except ⬇ (down) which will throw grenades (unlimited right now).

Cart #runjumpdie-7 | 2019-08-10 | Code ▽ | Embed ▽ | No License
6

Edit 1: Used existing sfx where there were previously none in place. Could do with some slight variations for hits and explosions.
Edit 2: Added slight delay to secondary damage giving a chain reaction effect.
Edit 3: Increased smoke when crates and barrels explode.

P#66437 2019-08-07 13:23 ( Edited 2019-08-10 11:35)

Update this game so that level 10 is way easier!

P#66463 2019-08-08 22:04

@StinkerB06 The difficulty should ramp up linearly.

What was it that you didn't like? Too many exploding barrels or were the enemies too hard?

I'm actually just quite pleased that you persisted that far. :)

EDIT: Perhaps the player's maximum health should increase before then, or the medkit pick-ups should increase in frequency.

P#66478 2019-08-09 18:37 ( Edited 2019-08-09 18:50)

I keep dying on level 6/7, and I couldn't get past 10.

P#66537 2019-08-11 02:41

So make the yellow guys start to appear on level 10, NOT level 6.

P#66602 2019-08-12 05:36

OK, thanks!

Yeah the different grunts (I think there's 5 or 6 types with subtle differences) could possibly do with tweaking. The guys with yellow helmets, as you are no doubt aware, shoot explosive bullets.

There are 4-6 attributes that can be adapted per enemy, like how likely they are to shoot, what they shoot, whether they can jump, etc.

P#66606 2019-08-12 08:28

Not bad at all! Somehow could be a companion game (cave?) to Nuklear Klone :)

Couple of comments:

  • I like your coding style.
  • true games are in 60fps :)
  • jump particle effect is overdone! I had expected my jump to be able to blast stuff (it can't)
  • too easy to zip until level 6/7 by simply staying on ground while auto-firing :/
  • it is impossible to dodge bullets (cause platforms). Yellow dude feels overpowerd (faster than me)
P#66607 2019-08-12 08:35 ( Edited 2019-08-12 08:41)

@freds72 Thank you!

The jump (from high) effect is a bit over the top - my wife said the same thing. I was toying with the fact that a high fall could damage enemies. I need to either reduce the effect or make it cause damage.

OK, definitely sounds like I need to tweak my level progression from feedback so far. I must admit I hadn't spent much time tweaking/testing it.

Dodging bullets: I did wonder about a shield ability, maybe by pressing up. It's a good point that you can't dodge if you have a roof above. Needs consideration.

Thanks again. :)

Edit: I had thought a little about players just staying on the ground. There needs to be some mechanic to encourage them to climb. Maybe jump damage would do that. At the moment there is no score; if I did add a score perhaps there should be special items to shoot that would get you more points. The medkits will encourage climbing but that's probably not enough.

P#66609 2019-08-12 08:47 ( Edited 2019-08-12 08:53)

Hmm.. I see I am posting from two different accounts.

There is nothing nefarious about this: I ended up having to create a second to attach my purchase to an account (Or at least that was the conclusion I came to).

P#66610 2019-08-12 08:49

Yay!

Great game!!!

P#67020 2019-08-29 21:44

Does this game take place on Jupiter ? Every time he jumps he crashes down very quickly and heavily BOOM !

Every step he takes or when he shoots the gun he's bleeding hard radiation (random sparks constantly).

Might also use BTN() instead of BTNP() for both jumping and shooting.

P#67036 2019-08-30 05:39

@dw817 I'm not using BTNP() AFAIK, I'm using my own code to restrict both actions accordingly.

Shooting has a counter that counts down every shot before the button can be checked again. You can still hold down fire, it just won't shoot every frame.

Jumping is also not so simple: I've implemented both cayote time and pre-jump to try to make it feel nicer. Guess I failed. XD

You can't hold down jump to just keep jumping (intended) but the pre-jump check will mean that you can hit it around the time you're about to hit the ground and you should jump again immediately.

EDIT: It is set on Jupiter and it's very dusty on Jupiter.

P#67037 2019-08-30 06:25 ( Edited 2019-08-30 20:16)

Here's the code for shooting. The code for jumping is way more complex and not worth getting into. This is pretty self contained so hopefully you can see my intention.

   -- fire
   if btn(pad.btn2) and self.shoot==0 then
    bullet:create(
     self.x+(face==dir.left and 0 or 8),
     self.y+5,
     face,
     self.weapon.bullet_type
    )
    shells:create(
     self.x+(face==dir.left and 2 or 4),
     self.y+4,
     1,
     {col=9}
    )
    self.shoot=self.weapon.rate
    sfx(self.weapon.sfx)
   end
   if self.shoot>0 then self.shoot-=1 end
P#67038 2019-08-30 06:42

Well if it =IS= Jupiter then this game is quite original ! The Jovian gravity is just about perfect.

Jumping shouldn't be that difficult. Let me see ... Don't want to hijack your thread. Think I'll post a cart to demonstrating at least one correct way to do this.

P#67044 2019-08-30 17:50

I was going to call it run.jump.die.on.jupiter but unfortunately a high token count forced me to reconsider.

I've yet to work out exactly what your issue is with the jump. You obviously can jump because you're complaining about the gravity. Your suggestion of using btn() suggests that you want to be able to hold down jump, and have the player jump again when you hit the ground. I've stated that this doesn't happen by intention. If you time your press right you can jump as soon as you hit the ground with a second press (demonstrated below).

I very much look forward to seeing what a "correct" jump is.

P#67048 2019-08-30 18:54

OK. I think I'm happy being incorrect to be honest.

I have no major issue with your implementation, I just find mine more enjoyable and dynamic, which is completely what I'm after. I agree that gravity feels high, but that choice was made to let the player quickly move from one level to another (see screenshot). I'm not after Earth-realistic settings (I get enough of that in real life) and would point out that he also jumps about five times his own height and fights giant spiders.

I will concede that it's by no means perfect, but it's as close to what I want for this game as I got.

Of course the majority - like you - may disagree. :)

EDIT: Is it worth pointing out that Super Mario Bros does not let you hold down A to jump continuously, and also uses a pre-jump mechanic to help the player jump a second time?

P#67053 2019-08-30 20:14 ( Edited 2019-08-31 09:21)

To anyone who is interested in this discussion, I found this article (or it may have been a similar one) useful. When I use the term "pre-jump" above I mean "Jump Input Buffering" discussed here.

https://www.gamasutra.com/blogs/LisaBrown/20171005/307063/GameMaker_Platformer_Jumping_Tips.php

The video below also discusses these topics.

P#67074 2019-08-31 09:43 ( Edited 2019-08-31 09:47)

I'm not a fan of 'hold jump' to auto jump next time your feet touch the ground. This seems very PC/repeated-key bug to me rather than intentional operation.

P#67907 2019-09-19 19:36

@hseiken Agreed. It just looks so wrong and also I think it can lead to "overbounce" - if the player hits a roof before they release the button for example.

P#67934 2019-09-20 08:40
1

i jumped i died and i ran. 10/10

P#129073 2023-04-27 05:29

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 15:29:36 | 0.035s | Q:47