[SMAPI] These mods could not be added to your game.[SMAPI] - Animated Lunna Astray Fish because you have multiple copies of this mod installed. To fix this, delete these folders and reinstall the mod: Mods\[CP-A] Animated Lunna Astray Fish, Mods\LunnaAstray_3.4.12\[CP] Lunna.
I fixed it here is the code: So everyone copy and paste this whole code in the appropriate files (Update is out and it works). Be aware it looks like Lunna fish sprites has changed, but they are animated with the old sprites now with this. So if you use visible fish the sprites will be different.
I don't know if this would help but... The spritesheet is located @ \assets\Objects\Objects.png inside of Rafseazz.LunnaCP. The fist are in alphabetical order in the first row, so:
Yea but the sprites have changed, also I dont know why I didnt think of that thanks. Just getting into SDV modding. Yea I got the objects\\objects forgot to add that one in here
[SMAPI] - Animated Lunna Astray Fish because you have multiple copies of this mod installed. To fix this, delete these folders and reinstall the mod: Mods\[CP-A] Animated Lunna Astray Fish, Mods\LunnaAstray_3.4.12\[CP] Lunna.
Thank you, these are some of my favorite looking fish in the game and now they live! Hopefully I can get the issue solved where I only catch trash from Umuwi sources. I think I have about 14 of your mods installed. Thank you for your effort.
19 comments
So everyone copy and paste this whole code in the appropriate files (Update is out and it works). Be aware it looks like Lunna fish sprites has changed, but they are animated with the old sprites now with this. So if you use visible fish the sprites will be different.
content.json
"Format": "2.0.0",
"ConfigSchema":
{
"DewdropFish":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"PurpleSpottedTrout":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"Relicantlette":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"Serafin":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"UmuwiCarp":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
},
"Changes": [
{
"LogName": "Dewdrop Fish",
"Action": "EditImage",
"Target": "LASV/Objects",
"FromFile": "dewdrop_fish.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"DewdropFish": "true"},
},
{
"LogName": "Purple Spotted Trout",
"Action": "EditImage",
"Target": "LASV/Objects",
"FromFile": "purple_spotted_trout.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 16, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"PurpleSpottedTrout": "true"},
},
{
"LogName": "Relicantlette",
"Action": "EditImage",
"Target": "LASV/Objects",
"FromFile": "relicantlette.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 32, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"Relicantlette": "true"},
},
{
"LogName": "Serafin",
"Action": "EditImage",
"Target": "LASV/Objects",
"FromFile": "serafin.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 48, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"Serafin": "true"},
},
{
"LogName": "Umuwi Carp",
"Action": "EditImage",
"Target": "LASV/Objects",
"FromFile": "umuwi_carp.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 64, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"UmuwiCarp": "true"},
}
]
}
Maifest.json
{
"Name": "Animated Lunna Astray Fish",
"Author": "Gervig91",
"Version": "1.1.1",
"Description": "Animates the fish in Lunna Astray",
"UniqueID": "Gervig91.AnimatedLunnaAstrayFish",
"MinimumApiVersion": "2.10.0",
"UpdateKeys": [ "Nexus:6974" ],
"ContentPackFor": {
"UniqueID": "Pathoschild.ContentPatcher",
"MinimumVersion": "1.6.0"
},
"Dependencies": [
{
"UniqueID": "Rafseazz.LunnaCP",
"IsRequired": true
},
]
}
I had to edit some stuff, butt the ToArea I dont know. but there were quite a few errors in the update file
Also need to take out the depedency for json in manifest
The spritesheet is located @ \assets\Objects\Objects.png inside of Rafseazz.LunnaCP.
The fist are in alphabetical order in the first row, so:
// dewdrop_fish
"ToArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
// purple_spotted_trout
"ToArea": { "X": 16, "Y": 0,0 "Width": 16, "Height": 16 },
// relicantlette
"ToArea": { "X": 32, "Y": 0, "Width": 16, "Height": 16 },
// serafin
"ToArea": { "X": 48, "Y": 0, "Width": 16, "Height": 16 },
// umuwi_carp
"ToArea": { "X": 64, "Y": 0, "Width": 16, "Height": 16 },
{
"Format": "2.0.0",
"ConfigSchema":
{
"DewdropFish":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"PurpleSpottedTrout":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"Relicantlette":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"Serafin":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
"UmuwiCarp":
{
"AllowValues": "true,false",
"Default": "true",
"AllowMultiple": "false"
},
},
"Changes": [
{
"LogName": "Dewdrop Fish",
"Action": "EditImage",
"Target": "Mods/Rafseazz.LunnaCP/Objects/Objects",
"FromFile": "dewdrop_fish.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"DewdropFish": "true"},
},
{
"LogName": "Purple Spotted Trout",
"Action": "EditImage",
"Target": "Mods/Rafseazz.LunnaCP/Objects/Objects",
"FromFile": "purple_spotted_trout.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 16, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"PurpleSpottedTrout": "true"},
},
{
"LogName": "Relicantlette",
"Action": "EditImage",
"Target": "Mods/Rafseazz.LunnaCP/Objects/Objects",
"FromFile": "relicantlette.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 32, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"Relicantlette": "true"},
},
{
"LogName": "Serafin",
"Action": "EditImage",
"Target": "Mods/Rafseazz.LunnaCP/Objects/Objects",
"FromFile": "serafin.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 48, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"Serafin": "true"},
},
{
"LogName": "Umuwi Carp",
"Action": "EditImage",
"Target": "Mods/Rafseazz.LunnaCP/Objects/Objects",
"FromFile": "umuwi_carp.png",
"FromArea": { "X": 0, "Y": 0, "Width": 16, "Height": 16 },
"ToArea": { "X": 64, "Y": 0, "Width": 16, "Height": 16 },
"AnimationFrameTime": 20,
"AnimationFrameCount": 4,
"When":
{"UmuwiCarp": "true"},
}
]
}
{
"Name": "Animated Lunna Astray Fish",
"Author": "Gervig91",
"Version": "1.0.0",
"Description": "Animates the fish in Lunna Astray",
"UniqueID": "Gervig91.AnimatedLunnaAstrayFish",
"MinimumApiVersion": "2.10.0",
"UpdateKeys": [ "Nexus:6974" ],
"ContentPackFor": {
"UniqueID": "Pathoschild.ContentPatcher",
"MinimumVersion": "1.6.0"
},
"Dependencies": [
{
"UniqueID": "spacechase0.JsonAssets",
"IsRequired": true
},
{
"UniqueID": "Rafseazz.LunnaCP",
"IsRequired": true
},
]
}