- Aug 4, 2020
- 925
- 1,460
Hello, everyone, again.
Well, I'll see if I'm lucky enough to get your help again.
As some of you already know, I usually do non-automatic translations of the games into Spanish and, besides that, I like to give them my personal touch.
I'm translating a game in which every time the MC does something wrong, the output is:
That code is not right, I have tried to say it, but as I am not his patron I cannot do it, by other means he does not pay any attention to me. The correct code would be:
Because without the "" the game passes the gameover screen without stopping and is not seen.
In all the game outputs it uses that code. And the scene gameover has it defined in its script.rpy like this:
The image game_over.jpg in a simple sign with that phrase GAME OVER, and that seems to me something boring. There aren't many exits from the game and it wouldn't cost me any work to make a custom one indicating why the game is finished, luckily, working with Gimp I like it very much and I don't do it very badly. I would like to make a screen for each exit of the game that would say something like: "You're an idiot when "doing this" and therefore, the game is over".
If I would modify the original code of the game I would have it very easy, but as I don't want to do it, my problems start there, I don't know how to do it with a patch and I don't even know if it can be done.
Some time ago I saw this in a patch of a game and I saved it, but I don't remember what game it was, and I haven't been able to check if it works or not:
I've tried to do something similar with the gameover scenes I want to change, but I haven't done it well and it doesn't work for me.
So here I am again, asking for your help.
Can I do what I want or not?
Thanks for your help.
Well, I'll see if I'm lucky enough to get your help again.
As some of you already know, I usually do non-automatic translations of the games into Spanish and, besides that, I like to give them my personal touch.
I'm translating a game in which every time the MC does something wrong, the output is:
Code:
scene gameover
return
Code:
scene gameover
""
return
In all the game outputs it uses that code. And the scene gameover has it defined in its script.rpy like this:
Code:
image gameover = "images/game_over.jpg"
If I would modify the original code of the game I would have it very easy, but as I don't want to do it, my problems start there, I don't know how to do it with a patch and I don't even know if it can be done.
Some time ago I saw this in a patch of a game and I saved it, but I don't remember what game it was, and I haven't been able to check if it works or not:
Code:
init 99 python:
config.label_overrides = {
"label1" : "label1Patched",
"label2" : "label2Patched",
"label3" : "label3Patched"
}
init 99:
$ rb = ("brother")
$ rs = ("sister")
$ rbb = ("big bro")
$ rss = ("little sis")
label label1Patched:
mc 'Well, we’re not together. I mean we are living together, but we are not together "together". *sigh* I mean, she\'s my sister.'
becca "Ah! Well then, she’s lucky to have such a caring brother."
jump beccaFlirting
label label2Patched:
jump scene0204Cont
label label3Patched:
scene 0202059 with dissolve
becca "Oh! Hey, you must be Sarah!"
return
label label4Patched:
mc "I never understood much of what she was saying, but that was always her biggest passion."
mc "Though I think she should spend some more time understanding what \"ethical hacking\" means..."
jump scene7cont
So here I am again, asking for your help.
Can I do what I want or not?
Thanks for your help.