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.
[VX] [TUTORIAL] Making autorun spikes

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 64
RMRK Newbie
Hi, this is my first tutorial. I'm gonna show you how to make autorun spikes.

First, create a parallel process event.
Then, create 4 variables:
-Player X
-Player Y
-Spikes X
-Spikes Y
On the parallel process event, put this:
Code: [Select]
Variable: 0001:Player X = Player X on map
Variable: 0002:Player Y = Player Y on map
Variable: 0003:Spikes X = Spikes X on map
Variable: 0004:Spikes Y = Spikes Y on map
Next, create the spikes event, it should be a parallel process event below player. On 1st page put the spikes "down" sprite and put this:
Code: [Select]
Wait XX frames (I prefer 60)
Self switch A is ON
On 2nd page it's also below player and a parallel process, but in this put the spikes "up" sprite and put this:
Code: [Select]
Conditional Branch: Variable 1 (Player x) = Variable 3 (Spikes x) Then
    Conditional Branch: Variable 2 (Player x) = Variable 4 (Spikes x) Then
         Play SE: 'Sword3'
         Move Player
               :Go Back one step
         Change HP: All Party, -50
    End
End
Wait XX Frames (I prefer 35)
Self Switch A is OFF
And that's it. I added a demo if you didn't understand me. http://www.mediafire.com/?6eij73s879n9zac
Sorry for my bad english  :-[
« Last Edit: February 23, 2014, 03:56:05 PM by modern algebra »