RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Jumping [Tut.]

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 84
First make a common event Trigger parallel switch something like jump.
Make a new conditional branch if button L is being pressed or whatever you like without else handler.now make 4 more conditional branches without else handlers have them be
button left is being pressed,right,up,down
inside left would be move player jump -2,+0(first is x coordinate and 2nd is y coordinate)
right would be +2,+0
Up would be +0,-2
Down would be +0,+2
It would look like this:
----------

@>Conditional Branch: The L button is being pressed
  @>Conditional Branch: The Down button is being pressed
    @ Set move route:Player
     :                      :$jump: +0,+2
    @>
  : Branch End
  @>Conditional Branch: The Up button is being pressed
    @ Set move route:Player
     :                      :$jump: +0,-2
    @>
  : Branch End
  @>Conditional Branch: The Left button is being pressed
    @ Set move route:Player
     :                      :$jump: -2,+0
    @>
  : Branch End
  @>Conditional Branch: The Right button is being pressed
    @ Set move route:Player
     :                      :$jump: +2,+0
    @>
  : Branch End
 @>
: Branch End
@>
----------

(L defaults to Q in game)
LOLZERSMATICITICION