Ask for help

ms_v

Newcomer
hi,I'm new to modding.Recently working on my custom Npc.
At the moment I've finished editing the contet and it's in beta.
The problem I'm having right now is that my mod shows up in the smapi as this
[SMAPI] Loaded 1 content packs:
[SMAPI] ms_v's Custom NPC Mod 1.2.1 by ms_v | for Content Patcher | A mod that adds in a custom NPC named Simon
Enter the game and my custom Npc is nowhere to be found.
 

kdau

Tiller
Hi! There could be several different things going on. Can you do these steps to provide more info?
1. Load your save and go to where you wanted your NPC to spawn.
2. Type patch summary directly into the SMAPI window and press enter.
3. Upload your SMAPI log to https://smapi.io/log (see instructions on that page).
4. Upload your content.json file to https://smapi.io/json/content-patcher (see instructions on that page).
5. Post the links from steps 3 and 4 here.
 

ms_v

Newcomer
Hi! There could be several different things going on. Can you do these steps to provide more info?
1. Load your save and go to where you wanted your NPC to spawn.
2. Type patch summary directly into the SMAPI window and press enter.
3. Upload your SMAPI log to https://smapi.io/log (see instructions on that page).
4. Upload your content.json file to https://smapi.io/json/content-patcher (see instructions on that page).
5. Post the links from steps 3 and 4 here.
3. https://smapi.io/log/1f0d191c24734a3f984287a2afebf5eb
4.https://smapi.io/json/content-patcher/fa6d86a69b12441ea1d92fcecad9a66d
 

kdau

Tiller
Thanks for the details. There are two things that need to be fixed in your manifestations: the optimism values are missing and the datable values are misspelled. If you want Adam to have "neutral" optimism (the other options are "positive" and "negative"), here are how the three different lines should look:
JSON:
"Adam": "teen/neutral/shy/neutral/male/not-datable/null/Other/winter 28//Mine 15 4/???"
"Adam": "teen/neutral/shy/neutral/male/datable/null/Other/winter 28//AdventureGuild 12 13/亚当"
"Adam": "teen/neutral/shy/neutral/male/not-datable/null/Other/winter 28//Mine 15 4/亚当"
 
Top