Earlier quoted context omitted.
Thanks for the feedback! The level generation probably still needs tuning to avoid those kinds of levels. Daily leaderboard is a great idea!
Reading the other comments I tried the tutorial (who plays tutorials?!). They did feel faster (and thus relatively more difficult) than the random levels. Is inertia and gravity the same on all levels? And tutorials 8 and 9... they are intended for someone to implement automation, aren't they?
Show HN: Rocket Drone, a lunar lander type game for the web
41–50 of 96 posts
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#42Is the acceleration constant or does it dependent on fuel remaining like real rockets?
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#43Earlier quoted context omitted.
Thanks for the feedback! The level generation probably still needs tuning to avoid those kinds of levels. Daily leaderboard is a great idea!
How do you implement a leaderboard that can’t be spoofed with REST POST calls from curl or postman?(Genuine question for my own JavaScript game) doesn’t need to be perfect just a barrier that makes it painful to spoof easily
Then don't accept dupes and make the leaders winning flights watchable.
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#44Classic problem of the game is too easy for the developer because they've been playing it for so long. The controls are unintuitive but fun if you're willing to take a beating for a while. Even after a long time learning tho there's a strong lack of control, a little bit of rotational friction tending to keep the ship upright would go a long way
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#45Earlier quoted context omitted.
How do you implement a leaderboard that can’t be spoofed with REST POST calls from curl or postman?(Genuine question for my own JavaScript game) doesn’t need to be perfect just a barrier that makes it painful to spoof easily
Include the complete inputs for the solution, and verify on upload. Then don't accept dupes and make the leaders winning flights watchable.
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#46Awesome! Great work. Reminds me of Landing Confirmed on android on which I have extensive flight experience, but this particular tuning of the physics feels more difficult. Is the acceleration constant or does it dependent on fuel remaining like real rockets?
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#47The controls get stuck on my Android phone. It'd be much more fun if that didn't happen. The fact you have to land fully in the 'landing pad' is also immensely annoying. With a more play testing and better controls it could be fun. I'm really tempted to make a clone in React.
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#48Earlier quoted context omitted.
Reading the other comments I tried the tutorial (who plays tutorials?!). They did feel faster (and thus relatively more difficult) than the random levels. Is inertia and gravity the same on all levels? And tutorials 8 and 9... they are intended for someone to implement automation, aren't they?
Inertia and gravity are the same on all the levels. I don't know why it would feel different... Yes, levels 8 and 9 are meant to be more challenging. you might encounter obstacles like that in the random levels. Each level of the tutorial is meant to give you practice tackling different kinds of obstacles. I would love to see what automatic inputs can do for some of these levels :)
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#49Earlier quoted context omitted.
How do you implement a leaderboard that can’t be spoofed with REST POST calls from curl or postman?(Genuine question for my own JavaScript game) doesn’t need to be perfect just a barrier that makes it painful to spoof easily
Include the complete inputs for the solution, and verify on upload. Then don't accept dupes and make the leaders winning flights watchable.
Re: Show HN: Rocket Drone, a lunar lander type game for the web
#50Awesome! Great work. Reminds me of Landing Confirmed on android on which I have extensive flight experience, but this particular tuning of the physics feels more difficult. Is the acceleration constant or does it dependent on fuel remaining like real rockets?
Thanks! I didn't know about Landing Confirmed. It looks pretty cool too. The thrust is constant. With both sides firing it has a 2:1 thrust to weight ratio.