Ark Shop

Welcome!

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

SignUp Now!
Status
Not open for further replies.

Tigels

Well-known member
Joined
Mar 22, 2018
Messages
3
HI

I have shop running with default files. Crashes the server after i change to my own .Config
I ran through a Json validate, all was ok

as soon as I use /shop command server times out

any help please. I cant see the problem in the code
 
wow, it needs some rework of this config file. I don't know if I should get a pizza and fix it for you or if you should buy a pizza for me! ;)
 
I can get plenty of pizza.

This is part from and old version that worked fine. but now with the new version i can't see where i am going wrong. Sure i can fix it if i knew where i am going wrong.
 
I can get plenty of pizza.

This is part from and old version that worked fine. but now with the new version i can't see where i am going wrong. Sure i can fix it if i knew where i am going wrong.
Yeah, I started to clean up the json code a bit and find the first issue.

Wrong:
JSON:
    "ShopItems":{
        "gateremote":{
            "type":"item",
            "description":"Stargate Remote",
            "price":50,
            "items":[
                {
                    "quality":0,
                    "forceBlueprint":false,
                    "amount":1,
                    "blueprint":"Blueprint'/Game/Mods/StarGates/Blueprints/Items/PrimalItem_WeaponSGRemote.PrimalItem_WeaponSGRemote'"
                }
            ]
        },


Correct:
JSON:
    "ShopItems":{
        "gateremote":{
            "Type":"item",
            "Description":"Stargate Remote",
            "Price":50,
            "Items":[
                {
                    "Quality":0,
                    "ForceBlueprint":false,
                    "Amount":1,
                    "Blueprint":"Blueprint'/Game/Mods/StarGates/Blueprints/Items/PrimalItem_WeaponSGRemote.PrimalItem_WeaponSGRemote'"
                }
            ]
        },

Change every value so it is not a small letter. So for example type should be Type and so on.


//Foppa
 
AH Doh!
Thanks a lot. I knew it would be simple. I Can see it now
 
Status
Not open for further replies.
Back
Top