-
-
Notifications
You must be signed in to change notification settings - Fork 250
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/values
directory (select Settings -> Open json data folder in ASB to open the json
folder, then open the values
folder in it) and add an entry for it into your own custom _manifestCustom.json
. Instructions for adding to the custom manifest are below.
These files may not be up-to-date with the mods as they are only updated manually.
Mod ID | Name | File | Date | State |
---|---|---|---|---|
538986229 | Annunaki Genesis | 538986229-Genesis.json | 2020-12-16 | Untested |
843960973 | Dragontail | 843960973-Dragontail.json | 2020-12-16 | Untested |
916417001 | Ebenus Astrum | 916417001-EbenusAstrum.json | 2020-12-16 | Untested |
972887420 | Jurassic Park Expansion | 972887420-JPark.json | 2020-12-16 | Untested |
1169020368 | Ark Creatures Rebalanced | 1169020368-Trex.json | 2020-12-16 | Untested |
1188224480 | Tamable Alphas by Ogdaonly | 1188224480-OgAlphas.json | 2020-12-16 | Untested |
1558114752 | Dino hybrids & more | 1558114752-Radioactive.json | 2020-12-16 | Untested |
1564620729 | Phoenix Fix | 1564620729-PhoenixFix.json | 2023-06-02 | Tested |
1679826889 | Caballus | 1679826889-Cavallus.json | 2021-05-15 | Untested |
1838617463 | Fjordur | 1838617463-Fjordur.json | 2021-12-11 | Untested |
1880357240 | Sanctuary Overhaul | 1880357240-SanctuaryOverhaul.json | 2020-12-16 | Untested |
1912090921 | Scratchy Claws Improved Flyers | 1912090921-WNRQdinos.json | 2020-12-16 | Untested |
1979037318 | Shad's Critter Reworks | 1979037318 | 2022-04-16 | Untested |
1989252120 | ARK Reclamation | 1989252120-Ark-Reclamation.json | 2020-12-16 | Untested |
2212177129 | Sids Hybrids | 2212177129-Hybridthing.json | 2020-12-16 | Untested |
Mod ID | Name | File | Date | State |
---|---|---|---|---|
1083349027 | Naj's Speedy Flyers (with ini defaults included -thanks to Jilreign) |
NSFU-SpeedyFlyersUpdate.json | 2020-12-09 | Reported good |
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/values
directory).
An example empty _manifestCustom.json
file would look like:
{
"format": "1.14-flyerspeed",
"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, so the complete file looks like:
{
"format": "1.14-flyerspeed",
"files": {
"1679826889-Cavallus.json": {
"version": "327.19.1620885431",
"format": "1.14-flyerspeed",
"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/.