Frogun에서 더 많은 코인을 얻는 방법

Learn how to locate and edit your save file, and maybe give yourself some extra coins?

Locate your save file

On Windows you should find your file in the following location:

씨:\Users\YOUR_USER\AppData\LocalLow\Molegato\Frogun\PlayerPrefs.dat

Make sure to make a backup copy of this file if you plan on editing your save.

Opening and editing your save

Make sure your game is closed before editing this file!

Despite having adatextension, the contents of the file are plaintext rather than binary data. Open this file in your text editor of choice. I recommend VS Code/VS Codium. The file is really just a JSON file, though your editor might not detect it as such right away. You can change the working language in VS Code with the shortcutCtrl+K M”, and selecting JSON. After this, you can choose to format your document, so it’s easier to work with it. The end result should look something like this:

{
    "StringData": [
        {
            "열쇠": "언어",
            "값": "안에"
        },
        {
            "열쇠": "Save_Slot1",
            "값": "hasSeenIntro;1\nlastLevel;Ruins5\ncoins;435\nhat;34\nLevel1;1;17.23509;1;1;1;1;1;1;1;\n(etc...)"
        }
    ],
    "IntData": [
        {
            "열쇠": "ResolutionWidth",
            "값": 2560
        },
        {
            "열쇠": "ResolutionHeight",
            "값": 1600
        },
        {
            "열쇠": "FullScreen",
            "값": 1
        },
        // etc...
    ],
    "FloatData": [
        {
            "열쇠": "MusicVolume",
            "값": 1.0
        },
        {
            "열쇠": "SoundVolume",
            "값": 0.8827723860740662
        },
        // etc...
    ],
    "BoolData": []
}

이 지점에서, you can change any values you want around to edit your save. While I don’t think it’s strictly necessary, I recommend minifying the JSON before saving the file.

Extra coins

Editing your save is definitely considered cheating! If you’re okay with this, 읽어.

The absolutely most annoying part of going for 100% in this game is grinding for coins in order to buy all gallery items and hats. You can easily spend twice the time or more you spent completing everything else just grinding away. 고맙게도, you can edit your save to give yourself as many coins as you want! This will save you a ton of time on what many consider a pointless grind.

Open your save file following the previous section. You’ll find your coin count inside a very, very long string in the save file. Look for the data underStringData”. You’ll find some key-value pairs; find the one of the save slot you want to edit. In my case it was the one with “열쇠”: “Save_Slot1”. You’ll find the really long string in the part that says “값”. Your coins are saved in a part that says “동전;123\n” (however many coins you had). Just change this number to a ludicrous amount of coins and save your file as per the previous section.

결과

And you’re done! Enjoy not grinding for hours!

이 가이드는 Frogun 에 의해 작성되었습니다 Pwnage Block. 여기에서 원본 간행물을 방문할 수 있습니다. 링크. 이 가이드에 대해 우려 사항이 있는 경우, 주저하지 마시고 연락주세요 여기.

저자 소개