As for the narration reads for timing...The answer depends on whether you could give me a quick lesson in Renpy or enough steps to use a text editor to be able to search the code. I happened across those in play testing, but seeing as there is apparently still quite a bit of this game I have never seen in all my time exposed to it...I cannot expect to come across them all that way...so a search would let us finish this. It would also let me find scenes like the Tails Scene and I could "patch" a re-write, as long as I am educated enough to not break code while doing it.
You can open all the codes in the .rpy files in the game folder. These can be open even with just notepad. Notepad++ is better.
For just simple text dialogue coding,
(CHARACTER NAME) ("TEXT DIALOGUE")
Example:
Cream "Hi there Mr. Sonic. Would you like to play dolls with me?"
In BSC, Cream has already been defined as:
define c = Character("Cream", who_suffix=":", who_color="#f59342", who_outlines=[ (3, "#000000", 1, 1) ])
It's to make it easier to refer to the character. So you can just write-
c "Hi there Mr. Sonic. Would you like to play dolls with me?"
-instead.
You can find all the definitions in script.rpy
Tho, for you doing the Tails scene, probably only need to know these 3:
define s = Character("Sonic", who_suffix=":", who_color="#52baff", who_outlines=[ (3, "#000000", 1, 1) ])
define tl = Character("Tails", who_suffix=":", who_color="#FFFACD", who_outlines=[ (3, "#000000", 1, 1) ])
define x = Character(None)
x is used for narration or just for the text with no character name.
Please note: I have not been able to replicate this particular scenario yet, and I accidentally purged the save while looking to clear out some other crap, and all my saves for like every game on the computer in question are now zapped. Luckily...I game mostly on a different system these days, except for niche things like this. As I indicated, I think it is likely a rare one that almost no one else will ever find, and might not be worth altering a lot of code, will keep trying as time allows along with looking for other bugs.
It's already been fixed for Vanilla's room, Cream's room and another place. The code alteration by MrFluffums has been applied, so it shouldn't happen post v0.3.3/v0.4.
I found a 4th wall break where the "Narrator" speaks directly to you and then there's code altering the menu in that part of the game...(at least temporarily)
I don't know this one. Don't think I've ever encountered it before.