• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

JSON output oddity

GMScott

Member
I created 6 characters and output them to JSON. I'm trying to use those JSON files, but I notice a strange discrepency.

All of the objects in actors.actor.1.items have a suffix number on them, and that number does not match from one JSON to the next. For example, Armor Class is stored in the "acArmorClass.69" object for some characters and in the "acArmorClass.70" object for others. This makes it difficult for me to parse the files.

Is there some way to nail these suffix numbers down so I can get consistent output?
 

Attachments

  • hlo-json-strangeness.png
    hlo-json-strangeness.png
    338.7 KB · Views: 7
The purpose of the suffix numbers is in case there's more than one of the same thing, like two daggers, on the character - they'll have the same Id, but different suffixes. The numbers are just generated based on an internal Id, which is somewhat based on the order things are added to the character (with a lot of exceptions, which is why I say "somewhat").
 
Does your parser have the ability to match up to the last "." in the name?

That's a great question... to which I do not know the answer. I'm using Excel's Power Query. More like learning it. I can't seem to figure out how to get it to ignore everything past the period.

Does anyone have any suggestions?
 

Attachments

  • HLO-ExcelPowerQuery.jpg
    HLO-ExcelPowerQuery.jpg
    189.3 KB · Views: 3
That's a great question... to which I do not know the answer. I'm using Excel's Power Query. More like learning it. I can't seem to figure out how to get it to ignore everything past the period.

Does anyone have any suggestions?

I'm not familiar with it, but there's probably something somewhere to split on a delimiter, in which case you could split on the period and just discard the number value.
 
Back
Top