Language…
23 users online: Abdu, anonimato,  Anorakun,  Children's Playmate Magazine, CroNo486, Enan63, ForthRightMC,  idol, Jackhilo, JeepySol, katun24, Knight of Time, lo fang 123, Nitrogen, OEO6, RetroYuuki, RXDARK, Stivi, TheOrangeToad, TheXander, wye, yoshiatom, zAce08xZ - Guests: 178 - Bots: 113
Users: 69,240 (2,377 active)
Latest user: da_phiiil

Tightrope

SMW Blocks → Tightrope

Submission Details

Name: Tightrope
Author: Bio
Added:
Act As: 25
Includes GFX: No
Description: Done at S.N.N. request.

Mario may travel on this block if he is slow (walking), but will fall off if he is running.
Tags: fall lorom sa-1 speed
Comments: 3 (jump to comments)
Rating:
4.0 (1 rating)
No rating
Download 463 bytes | 630 downloads

Screenshots

Comments (3)

 Blind Devil Link
Added screenshot and SA-1 support.
Final Theory Link
Here is a video of the block in action.

https://www.youtube.com/watch?v=NTuqaRQFDH4&feature=youtu.be
inwencja2009 Link
My Blockreator code for tightrope:
db $42

JMP MarioBelow : JMP MarioAbove : JMP MarioSide
JMP SpriteV : JMP SpriteH
JMP Cape : JMP Fireball
JMP MarioCorner : JMP MarioHead : JMP MarioBody

MarioBelow:
RTL

MarioAbove:
LDA $7B ; \ If the player's x speed is less than 30...
CMP #$1E ; |
BPL Label_0000 ; /
LDA $7B ; \ If the player's x speed is greater than -30...
CMP #$E2 ; |
BMI Label_0000 ; /
BRA Label_0001
Label_0000:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
Label_0001: ; > --------


MarioSide:
SpriteV:
SpriteH:
Cape:
Fireball:
RTL

MarioCorner:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
RTL

MarioHead:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
RTL

MarioBody:
LDA $7B ; \ If the player's x speed is less than 30...
CMP #$1E ; |
BPL Label_0002 ; /
LDA $7B ; \ If the player's x speed is greater than -30...
CMP #$E2 ; |
BMI Label_0002 ; /
BRA Label_0003
Label_0002:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
Label_0003: ; > --------
RTL