Laxard

Member
Sep 5, 2018
475
381
why would they have save protection? I thought its made with renpy? renpy can save
He probably means that the game will think that save is corrupted if you edit it wiyh RenPy save editor like some never Winter Wolf games and refuse to load.
 

CellSunz

Newbie
Feb 15, 2024
31
26
This has been great but I keep getting an error during the second assignment for the mages faction. Might need to do a few more run throughs and try different things.
 

Laxard

Member
Sep 5, 2018
475
381
Some cheats for dev console (activated as usual):

Increase money by 500:
p_MC.money+=500

Faction rep increases:
p_MC.sheoryaA += 30
p_MC.yutaineA += 30
p_MC.ilsenovaA += 30
p_MC.garrisonA += 20
p_MC.alchemistA += 20
p_MC.magesA += 20

Additional factions rep (use with caution, untested)
p_MC.svalA += 20
p_MC.councilA += 20

Increase elements:
Fire
p_MC.valor += 190
Water
p_MC.anthemn += 190
Wood
p_MC.mynd += 190
Wind
p_MC.spirri += 190
Light
p_MC.mirag += 190
Darkness
p_MC.roon += 190

It's better to increase magic stats with += than straight up setting it with =

For character behaviour it's p_MC.statname like p_MC.intimidating += 30 but I don't see much use for it.

For army related stats military called combat. Scouting called strategy. Provision is still provision.
Character names are
p_Emrys
p_Iris
p_Darryl

So if you want to add 12 Scouting to Iris (which is equivalent of "training" Iris in it for 6 times) you are using
p_Iris.strategy += 12


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

dy10rqnz60b1

New Member
Jul 2, 2024
1
0
Some cheats for dev console (activated as usual):

Increase money by 500:
p_MC.money+=500

Faction rep increases:
p_MC.sheoryaA += 30
p_MC.yutaineA += 30
p_MC.ilsenovaA += 30
p_MC.garrisonA += 20
p_MC.alchemistA += 20
p_MC.magesA += 20

Additional factions rep (use with caution, untested)
p_MC.svalA += 20
p_MC.councilA += 20

Increase elements:
Fire
p_MC.valor += 190
Water
p_MC.anthemn += 190
Wood
p_MC.mynd += 190
Wind
p_MC.spirri += 190
Light
p_MC.mirag += 190
Darkness
p_MC.roon += 190

It's better to increase magic stats with += than straight up setting it with =

For character behaviour it's p_MC.statname like p_MC.intimidating += 30 but I don't see much use for it.

For army related stats military called combat. Scouting called strategy. Provision is still provision.
Character names are
p_Emrys
p_Iris
p_Darryl

So if you want to add 12 Scouting to Iris (which is equivalent of "training" Iris in it for 6 times) you are using
p_Iris.strategy += 12


You don't have permission to view the spoiler content. Log in or register now.
Sorry but are there specific instructions for this!? (I used a translation program to write these sentences sorry if there are any grammar mistakes )
 

Laxard

Member
Sep 5, 2018
475
381
Sorry but are there specific instructions for this!? (I used a translation program to write these sentences sorry if there are any grammar mistakes )
Find inside
\renpy\common
a file named
00console.rpy
Find a line with
config.console = False
change it to
config.console = True
Save the file.

You also can use Unren or other automatic tool to do the same (I don't because I don't like to enable developer mode alongside console).

Anyway, reminder that console is called by pressing Shift+O and you can exit it by literally writing "exit".
 
  • Yay, new update!
Reactions: dy10rqnz60b1
5.00 star(s) 1 Vote