On the Zelda II there isn't a way to view hall of fame server scores, and play back those tapes from servers* due to the fact that there's isn't a HALL OF FAME link in it's main screen.
*(unless a different CUSTOM ARTWORK theme is chosen, but that shows messed up the level ARTWORK when played back)
Is there a good way to view the HALL OF FAME and it's tapes for Zelda II?
Related links, etc...
https://www.artsoft.org/rocksndiamonds/levels/
Zelda
https://api.artsoft.org/levelsets/view/361
https://api.artsoft.org/levels/view/24375
https://www.artsoft.org/RELEASES/rocksn ... -1.0.0.zip
MAIN MENU > Is Link Awake? > ... kind of shows high scores, etc... but score list text doesn't show up
Zelda II
https://api.artsoft.org/levelsets/view/362
https://api.artsoft.org/levels/view/24376
https://www.artsoft.org/RELEASES/rocksn ... -1.0.0.zip
MAIN MENU > SETUP > CUSTOM ARTWORK
MAIN MENU > LEVELSET > ... > ZELDA
MAIN MENU > LEVELSET > ... > ZELDA II
Zelda II, view best scores and tapes, ...
Moderators: Flumminator, Zomis
-
- Posts: 255
- Joined: Mon Nov 13, 2017 4:16 pm
Zelda II, view best scores and tapes, ...
--- Strike a balance between generating new things/ideas, and being good/organized. Pick somewhere between a gibberish mess and nothing said/done. ---
--- Core RnD + lots of RnD downloads completed ---
--- Core RnD + lots of RnD downloads completed ---
- TheOnyxGuy
- Posts: 641
- Joined: Wed Oct 30, 2013 5:32 am
- Location: Russia
- Contact:
Re: Zelda II, view best scores and tapes, ...
Well, it can be sorta updated if instead of hiding the SCORES fonts and using victory screen picture as "background.SCORES", it would keep the scores on screen, but get covered by global animation of same victory screen on SCORESNEW (SCORESNEW is scores shown after completing a level, SCORESOLD is scores viewed from the main menu by clicking on Hall of Fame), also consuming the clicks with ".anim_event: click"
Code: Select all
font.text_1.SCORES.clone_from: font.text_1
font.text_1.active.SCORES.clone_from: font.text_1
font.text_2.SCORES.clone_from: font.text_2
font.text_2.active.SCORES.clone_from: font.text_2
font.text_3.SCORES.clone_from: font.text_3
font.text_3.active.SCORES.clone_from: font.text_3
font.text_4.SCORES.clone_from: font.text_4
font.text_4.active.SCORES.clone_from: font.text_4
font.title_1.SCORES.clone_from: font.title_1
font.title_2.SCORES.clone_from: font.title_2
background.SCORES: background_tiled.pcx
global.anim_1.SCORESNEW.gfx: back_scores.pcx
global.anim_1.SCORESNEW.gfx.width: 548
global.anim_1.SCORESNEW.gfx.height: 548
global.anim_1.SCORESNEW.x: 0
global.anim_1.SCORESNEW.y: 0
global.anim_1.SCORESNEW.anim_event: click
Previously known as Eizzoux (boooo)
-
- Posts: 255
- Joined: Mon Nov 13, 2017 4:16 pm
Re: Zelda II, view best scores and tapes, ...
This fixes the text not showing up in Zelda I scores.Eizzoux wrote: ↑Sat Jan 21, 2023 3:42 am Well, it can be sorta updated if instead of hiding the SCORES fonts and using victory screen picture as "background.SCORES", it would keep the scores on screen, but get covered by global animation of same victory screen on SCORESNEW (SCORESNEW is scores shown after completing a level, SCORESOLD is scores viewed from the main menu by clicking on Hall of Fame), also consuming the clicks with ".anim_event: click"Code: Select all
font.text_1.SCORES.clone_from: font.text_1 font.text_1.active.SCORES.clone_from: font.text_1 font.text_2.SCORES.clone_from: font.text_2 font.text_2.active.SCORES.clone_from: font.text_2 font.text_3.SCORES.clone_from: font.text_3 font.text_3.active.SCORES.clone_from: font.text_3 font.text_4.SCORES.clone_from: font.text_4 font.text_4.active.SCORES.clone_from: font.text_4 font.title_1.SCORES.clone_from: font.title_1 font.title_2.SCORES.clone_from: font.title_2 background.SCORES: background_tiled.pcx global.anim_1.SCORESNEW.gfx: back_scores.pcx global.anim_1.SCORESNEW.gfx.width: 548 global.anim_1.SCORESNEW.gfx.height: 548 global.anim_1.SCORESNEW.x: 0 global.anim_1.SCORESNEW.y: 0 global.anim_1.SCORESNEW.anim_event: click

Added this to the end of the 'font.' section in `~/.rocksndiamonds/levels/Legend_Of_Zelda/graphics/graphicsinfo.conf` Now the text is readable for Zelda I, although the background is from Zelda II instead of I.
To get a Zelda I image in the above, the line
Code: Select all
background.SCORES: background_tiled.pcx
Code: Select all
background.SCORES: gui_back_scores.pcx
Note: Zelda II doesn't even have a show scores button(where tapes could have been played from this list). Anybody know a work around / fix for this?
--- Strike a balance between generating new things/ideas, and being good/organized. Pick somewhere between a gibberish mess and nothing said/done. ---
--- Core RnD + lots of RnD downloads completed ---
--- Core RnD + lots of RnD downloads completed ---
- TheOnyxGuy
- Posts: 641
- Joined: Wed Oct 30, 2013 5:32 am
- Location: Russia
- Contact:
Re: Zelda II, view best scores and tapes, ...
Technically, all levelsets have all main menu buttons, but to choose them, you need to blindly scroll up or down with arrow keys.
So Scores screen can be accessed by scrolling all the way up to Name/Team button (holding up arrow for around second or two) and then pressing down two times and then enter/return, because Hall of Fame is a third button. Same way, Level Creator can be accessed if you press down three times from top, since it's fourth button on main menu.
That way, you can access any blocked off screen (unless they're somewhat locked off in some ways, of which I have at least one example)
So Scores screen can be accessed by scrolling all the way up to Name/Team button (holding up arrow for around second or two) and then pressing down two times and then enter/return, because Hall of Fame is a third button. Same way, Level Creator can be accessed if you press down three times from top, since it's fourth button on main menu.
That way, you can access any blocked off screen (unless they're somewhat locked off in some ways, of which I have at least one example)
Previously known as Eizzoux (boooo)
-
- Posts: 255
- Joined: Mon Nov 13, 2017 4:16 pm
Re: Zelda II, view best scores and tapes, ...
Cool! This together with the code you gave above, works around the issue!

Also, If you know where it is at in this menu you can press up/down the number of times based on where the thing you want is relative to it's current position (without looping around), then press `enter`. If it's not what you want, press `esc` and go from there.
The menu order is (unless changed):
NAME/TEAM
LEVELSET
HALL OF FAME
LEVEL CREATOR
INFO SCREEN
START GAME
SETUP
QUIT
--- Strike a balance between generating new things/ideas, and being good/organized. Pick somewhere between a gibberish mess and nothing said/done. ---
--- Core RnD + lots of RnD downloads completed ---
--- Core RnD + lots of RnD downloads completed ---
Re: Zelda II, view best scores and tapes, ...
Thanks for the explanation and code to re-activate the hidden "hall of fame" screen in Zelda II.
To access the "hall of fame" from the main menu without blindly navigating the main menu entries, it is also possible to add a clickable location on the main menu screen. Alan already did something similar with the "hidden" button for the level editor -- just click on Link's belt button to go to the editor!
To access the "hall of fame" from the main menu without blindly navigating the main menu entries, it is also possible to add a clickable location on the main menu screen. Alan already did something similar with the "hidden" button for the level editor -- just click on Link's belt button to go to the editor!
