RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

{RPGMAKERXP}Move block minigame

Started by Epischdrew, January 01, 2011, 08:06:06 AM

0 Members and 1 Guest are viewing this topic.

Epischdrew

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.


&&&&&&&&&&&&&

Easy.

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

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-

        >IF player is looking left
             THEN move right, repeating until cannot.
        ETC...
&&&&&&&&&&&&&&&&

Epischdrew

Do you have a crate character set by any chance?

&&&&&&&&&&&&&

Just use paint, take the tile set and make one.
&&&&&&&&&&&&&&&&