uhm, excuse me. I can't do "Load JSON" with this plugin.
I tried making JSON and load it but don't work. Then I try yours from github.com/FrenchYann/JSON_for_construct2 but still won't work.
It gave me message above.
But it worked with event
Where did I go wrong? How to fix this? Thank you <img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt=":D" title="Very Happy" />
Here is the input:
"{
"Wizard": {
"stats": {
"hp":80,
"mp":120,
"str":2,
"dex":2,
"int":16
},
"spells": [
"Fireball",
"Poison",
"Meteor",
"Ice Storm"
]
}
}"
EDIT
nevermind.
I changed the jSON to below and works.
{
""Wizard"": {
""stats"": {
""hp"":80,
""mp"":120,
""str"":2,
""dex"":2,
""int"":16
},
""spells"": [
""Fireball"",
""Poison"",
""Meteor"",
""Ice Storm""
]
}
}