Language…
18 users online:  Atari2.0, DanMario24YT, Dennsen86, derv82, drkrdnk, eltiolavara9, h.carrell, Isikoro, krizeth, masl, MorrieTheMagpie, Serena, Shomi, sinseiga, sparksplit-smw, StarWolf3000, steelsburg, trihex - Guests: 285 - Bots: 323
Users: 64,795 (2,375 active)
Latest user: mathew

disable timer being multiplied by 50 at the end of level? [solved]

since I disable the score, the score multiplier is rendered useless. is there a hex edit to remove that timer x 50 onscreen?

I want it to just say course clear without the timer bonus.
Give thanks to RPG hacker for working on Asar.
Originally posted by GreenHammerBro
since I disable the score, the score multiplier is rendered useless. is there a hex edit to remove that timer x 50 onscreen?

I want it to just say course clear without the timer bonus.

I've seen this asked so many times, it should be put in an F.A.Q. or something.

Patch this:
Code
header
lorom

org $05CC42 	;\
NOP #31 	;/ Hide Timer/Score Tally in Scorecard

org $05CD79 	;\
db $80 		; | Disable Bonus Counter in Scorecard
org $05CDD8 	; | as well as disable Drumroll and Timer/Score tallying
db $80		 ;/

org $05CC66
db $80, $1C 	;stop timer from awarding oneups when timer is certain values

Make a backup just in case something detonates.
thanks!
Give thanks to RPG hacker for working on Asar.