PPJA
PPJA copied to clipboard
Mail Framework Mod Incompatibility (Missing Items in Mail) in DGA - PPJA Redux Fix
Hi. I've had issues with items in mail not showing up as well as recipes. I've found a workaround or fix for seeds and fruit tree saplings but I haven't tested out the ones for recipes.
I fixed it by changing the attachment type to DGA and changing the name to the value path of each seed/sapling.
For example:
Finding the Value Path { "ShopId": "Hospital", "Item": { "Value": "ppja.fruitsandveggies.DGA/Aloe Pod" ||This is the Value Path found in shop-entries.json }, "Cost": 100, "EnableConditions": { "Query: {{Year}} >= 2": "true", "Season |contains=summer": "true" } },
Fixing the MFM mail.json/Items not appearing in mail
I turned this line of code
{
"Id": "ppja.aloepod",
"GroupID": "FruitsandVeggies.Seeds",
"Text": "aloepod.text",
"Title": "aloepod.title",
"Attachments": [{"Type": "Object", "Name":"Aloe Pod", "Stack": 5},],
"LetterBG": "CloudLetterBackground.png",
"Repeatable": false,
"Date": "25 spring Y2",
"Seasons": ["spring"],
"FriendshipConditions":
[
{ "NpcName": "Harvey", "FriendshipLevel": 7 }
],
/"SkillConditions":
[
{ "SkillName": "Farming", "SkillLevel": 1 }
]/
},
into
{
"Id": "ppja.aloepod",
"GroupID": "FruitsandVeggies.Seeds",
"Text": "aloepod.text",
"Title": "aloepod.title",
"Attachments": [{"Type": "DGA", "Name":"ppja.fruitsandveggies.DGA/Aloe Pod", "Stack": 5},],
"LetterBG": "CloudLetterBackground.png",
"Repeatable": false,
"Date": "25 spring Y2",
"Seasons": ["spring"],
"FriendshipConditions":
[
{ "NpcName": "Harvey", "FriendshipLevel": 7 }
],
/"SkillConditions":
[
{ "SkillName": "Farming", "SkillLevel": 1 }
]/
},
is there any way to get the recipes w/o the mail? or u can only get it by mail?