IN DEFENSE OF RETSYMTHENAM

Bamboosword

Member
Jan 2, 2020
185
79
Since I'm pretty silent member of f95 and that could be suspicious I decided to avoid loading any modding tool and just leave here the way to cook that author's games by you own. The method works because author not cuts his content in free versions and just relies on code:
0a. Download free version
0b. Download (dnSpy-net-win64.zip)
0c. In dnSpy: click in the top left corner: File -> Open -> *Game_Directory*/*GAME_NAME*_Data/Managed/Assembly-CSharp.dll
(Next steps you can also see in the attached screenshot)
1. In the left side of the window now appeared a foldable tree named "Assembly-CSharp". Click on "Assembly-CSharp" > "Assembly-CSharp.dll" > "{} -" > "FreeVersionEntity"
2. On the right you can see now opened text editor. Press right mouse button on the line with text "private void Start()" and select option "Edit Method (C#)..."
3. Replace appeared text by next:
Java:
private void Start()

    {

        CORE.Instance.FreeVersion = false; //just add this line

        if (!CORE.Instance.FreeVersion)

        {

            base.gameObject.SetActive(false);

        }

    }
4. Press on the "Compile" button
5. Press on the floppy disk button in the toolbar (top side of the main window)
6. Your version is unlocked now. Congratulations, you little mother hacker.
Thanks man