Me and a friend are making a server and we want to make a content pack for it.
When we try to make a .gma file it comes up with an error.
the error says
addon.json ; Couldn't parse json
the addon.json file has in it
{
"title" : "Rainbow Content One"
"type" : "model"
"tags" : ["fun"]
"ignore" :
[
"*.psd"
"*.vcproj"
"*.svn"
]
}
We cannot seem to find the problem please help.
Thanks
[QUOTE=Danny2142;46432549]Me and a friend are making a server and we want to make a content pack for it.
When we try to make a .gma file it comes up with an error.
the error says
addon.json ; Couldn't parse json
the addon.json file has in it
{
"title" : "Rainbow Content One"
"type" : "model"
"tags" : ["fun"]
"ignore" :
[
"*.psd"
"*.vcproj"
"*.svn"
]
}
We cannot seem to find the problem please help.
Thanks[/QUOTE]
There are missimg commas practically everywhere, it should be something like this:
[code]
{
"title" : "Rainbow Content One",
"type" : "model",
"tags" : ["fun"],
"ignore" :
[
"*.psd",
"*.vcproj",
"*.svn"
]
}
[/code]
for the love of god please use the "ServerContent" tag when uploading SERVER CONTENT
it exists
trust me
Sorry, you need to Log In to post a reply to this thread.