Modding Help Converting Json into player

Discussion in 'Starbound Modding' started by Haigens, Feb 2, 2020.

  1. Haigens

    Haigens Intergalactic Tourist

    I tried to convert json into player BUT
    D:\Steam\steamapps\common\Starbound\win32>make_versioned_json.exe 960d5f2ba57e0ff77427d95b4907b242.json 960d5f2ba57e0ff77427d95b4907b242.player
    Error! Caught exception (JsonParsingException) Error parsing json: bad number, must start with digit at 96:90
    [0] 9c0a7a
    [1] 9bf9c8
    [2] 9aa497
    [3] 9b029e
    [4] 981ef2
    [5] 9dd679
    [6] 776e6359 BaseThreadInitThunk
    [7] 77a67b74 RtlGetAppContainerNamedObjectPath
    [8] 77a67b44 RtlGetAppContainerNamedObjectPath
    [9] 9dd6ef

    How can i fix this?
     
  2. bk3k

    bk3k Oxygen Tank

    Ah you also posted this on my mod and I answered it there. But since someone might find this thread while searching for a similar issue, I'll answer it here too

    That is telling you. must start with digit at 96:90
    That's line 96, 90 characters in. It is easier to tell what line and character if you use Notepad++ or or a similarly advanced text editor.

    If might be you use FU, and the solution is a few comments up from yours. But anyone if you have this
    Code:
    "ephemeralEffects" : [{ "duration" : inf, "effect" : "raceability" },
    Then it make it this
    Code:
    "ephemeralEffects" : [{ "duration" : 999999999, "effect" : "raceability" },
    Really it just needs to be a big number, just so long as it is an actual number.
     
    The | Suit and Haigens like this.
  3. Haigens

    Haigens Intergalactic Tourist

    Oh my globe, thank you!
     
  4. lickutung34

    lickutung34 Big Damn Hero

    hey i know this is old and all but i am having a similar issue and the fix above did not help the error i got was this


    C:\Users\lickutung34\AppData\Local\Starbound\win32>make_versioned_json.exe 43b095759e4be62ea10492ca2017047b.json 43b095759e4be62ea10492ca2017047b.player
    Error! Caught exception (JsonParsingException) Error parsing json: Bad integer: (BadLexicalCast) at 139:34
    [0] 790a7a
    [1] 78f9c8
    [2] 77a497
    [3] 78029e
    [4] 751ef2
    [5] 7ad679
    [6] 7669fa29 BaseThreadInitThunk
    [7] 778a7a7e RtlGetAppContainerNamedObjectPath
    [8] 778a7a4e RtlGetAppContainerNamedObjectPath
    [9] 7ad6ef
    can some help?
     
  5. iskander3449

    iskander3449 Space Hobo

    hello space friend

    after trying i got a weird issue

    C:\Users\Utilisateur>"F:\SteamLibrary\steamapps\common\Starbound\win32\make_versioned_json.exe" "F:\starbound backup\8137c06de7928ad06f167384ee363d7a.player" "F:\starbound backup\test.player"
    Error! Caught exception (JsonParsingException) Error parsing json: unexpected character parsing word at 1:1
    [0] ac0a7a
    [1] abf9c8
    [2] aaa497
    [3] ab029e
    [4] a81ef2
    [5] add679
    [6] 771405c9 BaseThreadInitThunk
    [7] 772877ad RtlGetAppContainerNamedObjectPath
    [8] 7728777d RtlGetAppContainerNamedObjectPath
    [9] add6ef

    Anny clue on that ?
     

Share This Page