f96zonetrooper

Engaged Member
Dec 21, 2018
2,932
2,823
350
I've played all the Season 1, when the season 2 has come out i already resetted my pc, so i don't have a save from the S1. How can i start the S2 with a save or at least with changing the name of the character?
AfaIk :

You can play the game without a save from Season 1.
All 330+ variables taken from Season 1 are initialised with default values in the script before loading.
If loading fails due to a missing "Karlssons.gambit.s1" you get an error which can be ignored.
You will then proceed with default values which will usually give you the default dom events due to how branching is coded. All your rank variables are false, so you usually get the "else"/"elif True" branch.

Example : default -> e8kdomstart

Code:
label eightforkone:

    if k1pro or k2 or k3 or k4:
        jump subisland
    elif True:
        jump e8domstart

...

label e8domstart:

    if k9:
        jump e8k9start
    elif True:
        jump e8kdomstart

2. If you want to change default values, you can do the following :

Place the following file "initialisation.rpy" in your game's "\game" folder.
(Right-click -> Save target as ...)
Use an editor like Notepad++ and edit the (default) values in lines 234 - 571
Rank variables are spread out since all variables are grouped per Episode when first used.
k9 is currently highest rank.
The custom names are last.

Important :
You have to start the game once to get the edited initialisation.rpy compiled to initialisation.rpyc.
Exit KarlssonsGambit.exe and start again so that your edited defaults are used.

Use Start, select "None" and ignore the following error.


If you later want to get rid of this "cheat" :
- delete the *.rpy and the respective *.rpyc file in the "\game" folder.
- delete/move all saves since these saves are likely "corrupt" since they probably do not represent a set of variable values obtained by a regular playthrough.
You don't have permission to view the spoiler content. Log in or register now.

In case you get unexpected results/errors, don't report them in the forum/discord since they are based on "cheating".

Have fun.
 
Last edited:
4.30 star(s) 176 Votes