-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyboard: give more spaces on password and saved game name #3
Comments
Player nameIt can not be increased since it's stored in the save file (at 0x4) encoded with a custom table, as I said in #2. The problem is that there are reserved only 8 bytes... So the workaround could be move that name to another position in the save file, but first it would be good to know the full file structure to not override anything. In fact I don't know what is after the name in the save, I only know that the game reads 8 bytes. Password textIn this case, since it's stored in the scripts the text limit is just internal, so it could be done. We should just where that constant is stored and change it. First we would need to finish the keyboard hacks. |
Thanks for the info. I will give it a try 👍 |
The size of "questions" is also documented, so it could be changed easily as requested in #3. Furthermore, it could be enabled the button to enable lower case chars in the questions layout.
Finally, the maximum size for the player name (keeping the original position in the save) is 7 bytes (7 chars + null char) and this is going to be the value for the Spanish translation. Anyway, before moving it for others translations I would like to understand 100% the save file to make sure it's a free place (maybe that bytes in some place in the game are used, for instance to know how many missions are left before something happens...). About the password or response for quiz, it could be easily changed in the file Assembly/keyboard/textbox_longNames.asm. I have not tested it, so I don't know if it would need more changes to make it work. |
Hi,
I open another issue :
I have said
"You can improve this game by doing a similar hack of fix_familiar_length (names with 7 chars instead of only 4) on the three ways the kerboard is used: The savedgame name could use 11 chars instead of only 6, and password when you catch the cauldron in bikini to 19 chars instead of 10. If you can know where that values are, it will be perfect to customize them."
For the saved game name, it could be useful to give users a way to add their real name in.
For french, you have 'Jean-jacques' or for spanish 'Cristobal' that the game could save without hang and the japanese limitation abort this try.
And if this is not a real name, a long nickname couldn't be saved too, like 'Ouioui2003' or 'Pleonex'...
For the password, the french translation for the Cauldron password in bikini is "Belle-âme, ouvre toi", so 20 chars (Remember: I translate this game with all materials picked up in the PS3 version). For now, there is no way to use it.
I have hack your keyboard to use it with my own fonts, and i can put 8 chars (the max) on the familiars name (It's because my keyboard use only 1 byte chars). So, with a fix_password_length hack, i hope i could use 20 chars on passwords and put the PS3 translation in.
But I need you for that work, because i don't know how to use a debugger with DS games.
I don't know for now how to find the offset of that values.
Regards
The text was updated successfully, but these errors were encountered: