- Apr 23, 2019
- 1,285
- 1,688
Look at this chad boasting! Welp, you should officially not have any issue now. Enjoy Christmas, FOR IRELAND!The event went just fine. Was there some issue I should have come across? Also thank you again for your help.
Look at this chad boasting! Welp, you should officially not have any issue now. Enjoy Christmas, FOR IRELAND!The event went just fine. Was there some issue I should have come across? Also thank you again for your help.
Seriously. That Irish lass was dead bottom of my "favorites" list, but rose like a meteor after that godly halloween Kazillionbillion scene and that latest For Ireland! sceneLook at this chad boasting! Welp, you should officially not have any issue now. Enjoy Christmas, FOR IRELAND!
NO! NOT FOR IRELAND! (Had to do it)Look at this chad boasting! Welp, you should officially not have any issue now. Enjoy Christmas, FOR IRELAND!
Yea that did the trick. got a whole flood of events after completing that one event.Yea its a button you wouldn't think to press if your really farming affection lvl. worked right away for me when I did. hate watching them tho.
In the weekend, go to your computer. You can change your "lust names" of each girl there.Hey,
I have a dumb issue with the game.
When Ami offer us to change the name she'll call us ... I missed that event by mashing the "Enter" button too much... So now, there is only a "blank" when she talks to us ... I noticed that too late i made too much progress with the other girls before realising my mistake.
Is there a way to change the way she call us afterward ? I tried to edit the save withYou must be registered to see the linksbut it's not possible tthat way.
Thanks.
Like a failsafe or something? if you are missing an event that is stopping you from progressing it procs after a set amount of days or something?IMHO there should always be a default value. Think about it as help for people with lack of imagination, something that would represent author's true vision, or whatever. Or just something as simple that people like when they can do something, but not that much when they have to do something.
The default is set to "Sensei" but I didn't realize hitting enter without typing anything would overwrite that. I also didn't think anyone would just hit enter without typing anything.IMHO there should always be a default value. Think about it as help for people with lack of imagination, something that would represent author's true vision, or whatever. Or just something as simple that people like when they can do something, but not that much when they have to do something.
And if alex2011 answers that choosing the name myself is important part of the experience, then I'm officially declaring that I don't understand this game (but I don't see that as problem).![]()
Ho ho...You forgot about me...?*evil laugh*I also didn't think anyone would just hit enter without typing anything.
Thats what I always do to find out whats the "canon name" and just rollback if I find an empty space.The default is set to "Sensei" but I didn't realize hitting enter without typing anything would overwrite that. I also didn't think anyone would just hit enter without typing anything.
Yeah that never even occurred to me. I thought people would just type in Sensei if they wanted to stay Sensei. That's why there's always special dialogue for that name, hahaThats what I always do to find out whats the "canon name" and just rollback if I find an empty space.
Never underestimate peoples' capacity to be lazy.The default is set to "Sensei" but I didn't realize hitting enter without typing anything would overwrite that. I also didn't think anyone would just hit enter without typing anything.
See, someone gets i-Never underestimate peoples' capacity to be lazy.
Its more about how coding works.Never underestimate peoples' capacity to be lazy.
Welcome to IT Dev - you can never make things Idiotproof - they always make better idiots ...The default is set to "Sensei" but I didn't realize hitting enter without typing anything would overwrite that. I also didn't think anyone would just hit enter without typing anything.
I was referring to Selebus' comment about not thinking people would just hit enter.Its more about how coding works.
As far as I know, you basically write the different reactions to, for example, master.ami.
You write "if master.ami = daddy + script for the reaction"
After you are done with the different "ifs" you write "else master.ami = Sensei + she says 'so, like always?'"
What Sel did was putting an if for "ami.master = sensei" and for the "else" he just went on without any reaction, skipping to the rest of the evnt with no scripted reaction.
I dunno if there is a way to code "if left an empty space, ami.master = Sensei" but there should be, since you still need a "no reaction script for when you weite something like "Johnny" or whatever you want to name MC.
$ amimaster = renpy.input("Enter a name for Ami to call you...") or "Sensei"
$ amimaster = amimaster.strip()
$ amimaster = renpy.input("Enter a name for Ami to call you...")
$ amimaster = amimaster.strip()
if !amimaster:
$ amimaster = "Sensei"
# Continue the code as normal from here.
$ amimaster = renpy.input("Enter a name for Ami to call you...").strip() or "Sensei"