Language…
20 users online:  Anorakun, BOEMEF,  Erik,  Fernap, ForthRightMC, Gamet2004, Green Jerry, ioscotty, Jaozin712, Josyenew,  Kevin, kurtistrydiz, mangort,  Saphros,  Segment1Zone2, TavernaMugiwara, TheMURAmatsu, TheSpreee333, X11Gbyte, zAce08xZ - Guests: 131 - Bots: 104
Users: 68,867 (2,332 active)
Latest user: ColbertMcD

Revival Block

SMW Sprites → Revival Block

Submission Details

Name: Revival Block
Author: TheBiob
Added:
Version History: View
Tool: PIXI
Type: Standard
Dynamic: No
Disassembly: No
Includes GFX: Yes
Description: If the player is dead and touches this sprite it'll revive the player

Update:
- Fixed issues with having multiple blocks in the same level
- Added AddMusicK compatibility

Note that the game will freeze for a bit when using AddMusicK

Requested by maro
Tags: death lorom revival sa-1
Comments: 7 (jump to comments)
Rating:
4.0 (1 rating)
No rating
Download 1.81 KiB | 923 downloads

Screenshots

Comments (7)

spooonsss Link
This has a bug when the level header Layer 1 Vertical Scrolling is set to: No Vertical or Horizontal scroll. When mario revives, the game is locked (due to $9D).

To fix it change

Code
+	STZ $71		; > Set mode to "move freely"
	LDA #!invul	; \ Set flashing invulnerability timer


Code
+	STZ $71		; > Set mode to "move freely"
	LDA $1411
	BNE +
	STZ $9D 	; reset "lock sprites" flag; it is not reset at $00CDE8 if horizontal scroll is set to none
+	LDA #!invul	; \ Set flashing invulnerability timer
JamesD28 Link
Edit: Fixed an issue with the ZIP, either needing 7-zip for extraction or not extracting at all.
SmokyShroom Link
I don't know what the hell you did, but I had to repair the zip the moment I downloaded it. Good block otherwise.
Vivian Darkbloom Link
This block also causes a softlock in vertical levels.
Vivian Darkbloom Link
This sprite seems to permanently despawn once you go to another screen, which I've never seen before. Is this intentional? I haven't put in custom music and there's only one block in the level.
 Sonikku Link
Seems to work fine. To anybody intending to use this, make note of the description: it only will revive the player if they're in the death animation and they happen to touch this sprite.

As a suggestion for any future versions, it'd be neat to give it a feature (maybe via extra bit) that if Mario touches it and dies, he'll appear back where it is (assuming it's nearby).
Akaginite From older version: Revival Block Link
Never do place this inside a lava or block. it would be steal all player's lives.

works fine. also I did modded a little.
-Changed to skip off screen and solid block process when game is locked.
-Changed to use actual cfg setting in GFX process.