-
-
Notifications
You must be signed in to change notification settings - Fork 248
Unsupported Mod Values
This page contains values files for mods that are not supported and will not be updated regularly, but still may be useful.
To use one of these files you need to download it to your ASB's json
directory (select Settings -> Open json data folder in ASB to find it) and add an index for it into your own custom _manifestCustom.json
. Instructions for adding to the custom manifest are below.
Mod ID | Name | File | Date | State |
---|---|---|---|---|
1679826889 | Caballus | 1679826889-Cavallus.json | 2020-12-16 | Untested but should work |
For ASB to recognise any of these custom values files you download they must be added to a file _manifestCustom.json
(also within the json
directory).
An example empty _manifestCustom.json
file would look like:
{
"format": "1.12",
"files": {
}
}
To add downloaded values files to the manifest you need to copy the version
, format
and mod
sections from the head of the mod file to the manifest's files
section.
As an example, to add the Caballus values file you would take the header fields from 1679826889-Cavallus.json
and add them into the manifest's files
section with the filename as key:
{
"format": "1.12",
"files": {
"1679826889-Cavallus.json": {
"version": "319.29.1605273806",
"format": "1.13",
"mod": {
"id": "1679826889",
"tag": "Cavallus",
"title": "Caballus Custom Map - The Equestrian Land"
}
}
}
}
Please ensure your file contains valid JSON using a tool such as https://jsononline.net/json-validator or https://jsonlint.com/.