DayZ
BaseBuildingPlus
ftuga 2022년 2월 16일 오전 4시 15분
Help please
Having some server issues keep getting this crash report.


JSON ERROR:
Missing a comma or ']' after an array element.
Function: 'Error'
Stack trace:
scripts/1_Core/proto\endebug.c:92
scripts/3_Game/tools\jsonfileloader.c:29
BaseBuildingPlus/scripts/3_Game/bbp_config.c:81
BaseBuildingPlus/scripts/3_Game/bbp_config.c:68
BaseBuildingPlus/scripts/3_Game/bbp_config.c:61
BaseBuildingPlus/scripts/5_Mission/mission\missionserver.c:7
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:373
< >
전체 댓글 2개 중 1~2개 표시 중
Array 2022년 2월 23일 오전 1시 15분 
I think your issue is due to, as the error msg says, a JSON formatter error.
I assume that you've done some changes in a JSON file and didnt format it the right way.

Try and upload BBP_Setting.json located in the profiles folder in a JSON validator and see if you get any errors. (Example: https://jsonformatter.curiousconcept.com)

Each array element (unless its the last one) needs to end with a , sign.

Example (NOT the complete file, only an example).
This will produce an error since theres missing a , sign on line 6.

{
"g_BBPTier3RaidToolDamage": 1000,
"g_BBPTier1RaidTools": [
"HDSN_BreachingCharge",
"HDSN_BreachingChargeHeavy"
]
"g_BBPTier2RaidTools": [
"HDSN_BreachingCharge",
"HDSN_BreachingChargeHeavy"
]
}

Correct formatted:

{
"g_BBPTier3RaidToolDamage": 1000,
"g_BBPTier1RaidTools": [
"HDSN_BreachingCharge",
"HDSN_BreachingChargeHeavy"
],
"g_BBPTier2RaidTools": [
"HDSN_BreachingCharge",
"HDSN_BreachingChargeHeavy"
]
}
ftuga 2022년 3월 1일 오후 2시 32분 
yea when i vaslidate the jsons no error i think its files i cant access.
< >
전체 댓글 2개 중 1~2개 표시 중
페이지당 표시 개수: 1530 50