ich habe diesen Block auf SMWC gefunden:
Code
Wenn man auf diesen Block steht und nach unten drückt, fällt man durch. Beim durchfallen kommt aber so ein Blington und ich möchte gar keinen Ton. Was muss ich in den Code löschen damit garkein Ton kommt? ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Press Down to Fall Through Platform
;Blocktool Super Delux version
;By Sonikku (Original Blocktool version by S.N.N.)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
db $42
JMP Ledge : JMP PressDown : JMP Ledge : JMP Ledge : JMP Ledge : JMP Ledge : JMP Ledge : JMP PressDown : JMP Ledge : JMP Ledge
PressDown:
LDA $15
AND #$04
BNE DownPass ;Go to DownPass if Mario is pressing button
BRA Ledge ;If not, act like ledge
DownPass:
LDA #$25 ;Act like tile 25 (Air)
STA $1693
LDA #$29
STA $1DFC
RTL ;Return
Ledge:
LDY #$01 ;Acts like tile 100 if Mario isn't pressing down
LDA #$00 ;Or if a sprite is touching it.
STA $1693
RTL ;Return