Difference between revisions of "Custom cars"
Jump to navigation
Jump to search
DiRTyDRiVER (talk | contribs) (Created page with "== ACC Custom Cars Handbook == === create File “entrylist.json” === create File “entrylist.json” in Folder “cfg”, with the following content: { "entries": [...") |
DiRTyDRiVER (talk | contribs) |
||
Line 4: | Line 4: | ||
create File “entrylist.json” in Folder “cfg”, with the following content: | create File “entrylist.json” in Folder “cfg”, with the following content: | ||
− | { "entries": [ | + | <source lang=json> |
− | + | { "entries":[ | |
− | + | { "drivers": [ | |
− | + | { "playerID": "S765611xxxxxxxxxx1"} | |
− | + | ], | |
− | |||
− | |||
"overrideDriverInfo": 0, | "overrideDriverInfo": 0, | ||
"overrideCarModelForCustomCar": 1, | "overrideCarModelForCustomCar": 1, | ||
"customCar": "exampleCar.json", | "customCar": "exampleCar.json", | ||
− | + | }, | |
− | + | { "drivers": [ | |
− | + | { "playerID": "S765611xxxxxxxxxx2"} | |
− | + | ], | |
− | |||
− | |||
− | |||
"overrideDriverInfo": 0, | "overrideDriverInfo": 0, | ||
"overrideCarModelForCustomCar": 1, | "overrideCarModelForCustomCar": 1, | ||
Line 27: | Line 22: | ||
] | ] | ||
} | } | ||
+ | </source> |
Revision as of 10:26, 19 October 2019
ACC Custom Cars Handbook
create File “entrylist.json”
create File “entrylist.json” in Folder “cfg”, with the following content:
{ "entries":[
{ "drivers": [
{ "playerID": "S765611xxxxxxxxxx1"}
],
"overrideDriverInfo": 0,
"overrideCarModelForCustomCar": 1,
"customCar": "exampleCar.json",
},
{ "drivers": [
{ "playerID": "S765611xxxxxxxxxx2"}
],
"overrideDriverInfo": 0,
"overrideCarModelForCustomCar": 1,
"customCar": "exampleCar2.json",
}
]
}