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.
{RPGMAKERXP}Move block minigame

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 73
RMRK Junior
There is a part in my game when the character must complete a simple puzzle.

The puzzle is to move a block circled in red into goal circled in pink.


*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Biggest Drama Whore2013 Zero to HeroParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
Easy.

In the block event, put a conditional branch checking which direction the player is facing. Then make the block move away.

 
Code: [Select]
Event: On player touch
  Conditional branch
       >IF player is looking left.
            THEN move right.
       >IF player is looking right.
            THEN move left.
       >IF player is looking up.
            THEN move down.
       >IF player is looking down.
            THEN move up.

Not hard. You could also make it slide by doing-
 
       
Code: [Select]
>IF player is looking left
             THEN move right, repeating until cannot.
        ETC...
&&&&&&&&&&&&&&&&

**
Rep: +0/-0Level 73
RMRK Junior
Do you have a crate character set by any chance?

*
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
Rep:
Level 96
&&&&&&&&&&&&&&&&&&&&&&&&&&&
GIAW 14: 2nd Place (Hard Mode)2013 Biggest Drama Whore2013 Zero to HeroParticipant - GIAW 11Secret Santa 2013 ParticipantFor taking arms in the name of your breakfast.
Just use paint, take the tile set and make one.
&&&&&&&&&&&&&&&&