JackB8E4's Forum Posts

  • 4 posts
  • You do not have permission to view this post

  • Thanks for the advice! I was luckily able to pick up the full version of construct 3 so it doesn't matter anymore. Still really appreciative of the support.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Hi,

    Just getting back into construct and I started making an RPG following a tutorial. After setting up movement and animations as well as 1 mechanic I hit 50 events. Is it possible to make this more compact? I'd like to add movement, animations, checkpoints, simple shop system, collectables and enemies.

    Is it possible and can anyone recommend any good tutorials?

    Thanks.

  • if i script this how do I make it so my code is actually referencing the keyboard is pressed functions and stuff?

  • Hey dudes I'm currently working on a game using physics and I need to make a cooldown between jumps because currently if you spam the up arrow key you will literally just fly. The only thing I can think of is something like

    Global variable jumpCooldown = 0;

    keyboard, key is pressed -

    if (jumpCooldown = 0) {

    apply physics force etc..

    }

    keyboard, key is pressed - wait 0.1 seconds - set jumpCooldown = 1;

    wait 2 seconds - set jumpCooldown = 0;

    this is super flawed but the only thing i could really think of

    (When the up arrow is pressed it sets the jumpCooldown variable to 1 after 0.1 seconds and reverts to 0 after say 2 seconds. Then an if statement checks if the variable is equal to 0 and then applys the physics force to create the jump, if it equals 1 it does nothing.)) and im fine trying to learn how to script this if i have to

    I'd be super grateful for any help.

  • 4 posts