4.40 star(s) 38 Votes

aesir150

Active Member
Jul 5, 2017
555
1,003
No, there is no way to go back to previous nations without hacking the game. The reason is because of Izuin's age progression locks out each zone and you can't repeat scenes of her as a child while she is an adult since the games story is really linear and typically moving to each new Zone locks you out of the previous zone. You will have to either have multiple saves or replay the game.
Is this the first time you have played a Renpy game? Cause I am literally asking for console commands. Which is as you describe "hacking" the game to manipulate game variables to do things that you wouldn't normally be able to do.

And as I described in my original post yes you can go back to previous zones by simply changing the variables in the screenshots to either a 1 or a 0. Only problem is Yalen doesn't have a similar variable.

1744549420352.png

For instance Eldrien is a Zone 1 area where Izuin is kid and I was able to go back to it by setting the variable to a 1 (inEldrien = 1 and nation = 3) while setting the zone 2 area I was in to 0 (inFernia = 0) where she is a adult. I manage to retroactively go back to Eldrien and acquire Zoe (Nadine's succubus sister) this way. Izuin is still an adult and everything functions fine and has nothing to do with the issue I am trying to resolve which is tricking the game to think I am in Yalen so that I can trigger the Grifix event.

When setting all the variables in the screenshot above to 0 and setting nation = 2, the game thinks you are in Yalen again for the most part. Since it will show you the Yalen backgrounds when you go to the city or walk in the forest. Problem is there is no "inYalen" variable like the other countries, so its not displaying the Yalen background while walking around the camp, and the script to trigger Grifix isn't looking for a "inYalen" variable like Zoe's condition which was looking for "inEldrien = 1" or "nation = 3".

You don't have permission to view the spoiler content. Log in or register now.

So in other words I am simply looking for whatever the devs considered the Yalen equivalent of the "inEldrien" variable assuming that they coded everything consistently. If they didn't code everything consistently then I am looking for which variables / flags conditions I need to manipulate to simply trigger the event.
 
Last edited:
  • Like
Reactions: Artix0

Bektos

New Member
May 13, 2018
5
1
Is this the first time you have played a Renpy game? Cause I am literally asking for console commands. Which is as you describe "hacking" the game to manipulate game variables to do things that you wouldn't normally be able to do.

And as I described in my original post yes you can go back to previous zones by simply changing the variables in the screenshots to either a 1 or a 0. Only problem is Yalen doesn't have a similar variable.

View attachment 4740798

For instance Eldrien is a Zone 1 area where Izuin is kid and I was able to go back to it by setting the variable to a 1 (inEldrien = 1 and nation = 3) while setting the zone 2 area I was in to 0 (inFernia = 0) where she is a adult. I manage to retroactively go back to Eldrien and acquire Zoe (Nadine's succubus sister) this way. Izuin is still an adult and everything functions fine and has nothing to do with the issue I am trying to resolve which is tricking the game to think I am in Yalen so that I can trigger the Grifix event.

When setting all the variables in the screenshot above to 0 and setting nation = 2, the game thinks you are in Yalen again for the most part. Since it will show you the Yalen backgrounds when you go to the city or walk in the forest. Problem is there is no "inYalen" variable like the other countries, so its not displaying the Yalen background while walking around the camp, and the script to trigger Grifix isn't looking for a "inYalen" variable like Zoe's condition which was looking for "inEldrien = 1" or "nation = 3".

You don't have permission to view the spoiler content. Log in or register now.

So in other words I am simply looking for whatever the devs considered the Yalen equivalent of the "inEldrien" variable assuming that they coded everything consistently. If they didn't code everything consistently then I am looking for which variables / flags conditions I need to manipulate to simply trigger the event.
Wouldn't this cause glitches in the game that shouldn't be there if you mess with the variables based on how they coded the game? I mean especially when they update the game. They have said multiple times that old saves will cause issues with new updates so they always recommend doing a new game with every update. Also I'm sure they developed cheats to get all the girls. Also I think Ashtera and Yalen are technically a zone 0 not a zone 1 even though the map shows Zone 1 having Ashtera, Yalen, Eledrin, and Nocvirchis all in Zone 1 so maybe it's in the prolog?...
 
Last edited:

aesir150

Active Member
Jul 5, 2017
555
1,003
Wouldn't this cause glitches in the game that shouldn't be there if you mess with the variables based on how they coded the game? I mean especially when they update the game. They have said multiple times that old saves will cause issues with new updates so they always recommend doing a new game with every update. Also I'm sure they developed cheats to get all the girls. Also I think Ashtera and Yalen are technically a zone 0 not a zone 1 even though the map shows Zone 1 having Ashtera, Yalen, Eledrin, and Nocvirchis all in Zone 1 so maybe it's in the prolog?...
No it won't cause glitches because you can undo what you did since they are harmless variables.

Editing certain variables is like save game editing basic things like your current gold, health, etc...

In this game all you're editing is your location which you can undo at any time.

Anyways I found the variables that need to be changed after going back and forth comparing my current save and my earlier save for what variables were added throughout the play through.

To simulate that you're back in Yalen to get the Gifrix event

day = 7
actionPoints = 1
Zona = 0
nation = 2
inEldrien = 0
inFernia = 0
inNocverchis = 0
etc...

Then if I want to basically go back to where I was as if nothing happened in Fernia.

day = 67
Zona = 2
nation = 5
inEldrien = 0
inFernia = 1
inNocverchis = 0

The "Zona" variable was what was preventing the game from thinking I was fully in Yalen when all the "inXcountry" variables set to 0, despite telling the game that I was in nation = 2.

Also note you don't need the day variable to be exactly "day = 7" to get Gifrix, you just need it to be equal to or higher than 7.

So you could be on like day 90 and still type in the following commands, then go for a walk and still get Gifrix assuming that you aren't further along and need to find some other variables to set to 0.

actionPoints = 1
Zona = 0
nation = 2
inEldrien = 0
inFernia = 0
inNocverchis = 0
etc...
 
Last edited:
  • Like
Reactions: Artix0
4.40 star(s) 38 Votes