Failed to load Plugin: Arkshop Error code 1114 (Nothing else)

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

creallyb

Well-known member
Joined
Jul 9, 2019
Messages
1
Hello, I am trying to set up my server with ArkApi. So far I have been successful, everything has worked until I tried to edit the configs on ArkShop.
I added about 3 purchasable and sellable items with little trouble last night. This morning I tried to add more and I am getting ONLY this message. I have used Json Parsers and it all checks out, I'm getting no information except error code 1114. I have posted my config, and console log. Any help is greatly appreciated.
 
Hello, I am trying to set up my server with ArkApi. So far I have been successful, everything has worked until I tried to edit the configs on ArkShop.
I added about 3 purchasable and sellable items with little trouble last night. This morning I tried to add more and I am getting ONLY this message. I have used Json Parsers and it all checks out, I'm getting no information except error code 1114. I have posted my config, and console log. Any help is greatly appreciated.
Hello there

The problem is that you didn't' end the last section of Ingots under "sellitems".

So the whole "Messages" section was includes under "sellitems".

So what you did that caused the issue was adding this:
JSON:
     "ingots":{
      "Type":"item",
      "Description":"100x ingots",
      "Price":40,
      "Amount":100,
      "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"

     
     },
And since that the last item under sellitems it should have been without the comma on that closing bracket.
Since there are no other items after "ingots".
But then it there is a missing bracket that closes the whole "Sellitem" selection.
So it should look like this for it to be correct.

JSON:
     "ingots":{
      "Type":"item",
      "Description":"100x ingots",
      "Price":40,
      "Amount":100,
      "Blueprint":"Blueprint'/Game/PrimalEarth/CoreBlueprints/Resources/PrimalItemResource_MetalIngot.PrimalItemResource_MetalIngot'"

     
     }
},
And also never add any more closing brackets in the end. The first closing bracket almost down in the bottom of the config file, Close the message section.
And the last one closes the whole config.

With other words, you only need to remove one there and your config file should be fine.
 
Back
Top