Coding Help My NPC doesn't do their schedules and can't interact. How to solve?

Kawfstel

Greenhorn
Hi! I'm a new modder, and my NPC mod somehow doesn't interact and doesn't do his schedules ☹

I don't know what the issue could be, but I already have the necessary files to make the NPC work, all I lack are the festival files, heart events, and the spouse room files.

Do any of you know what the issue could possibly be 😞?
 

MoonyBeasty

Greenhorn
Is your schedule.json loaded in somewhere? If it's not loaded, it should look something like this:
JSON:
    {
      "LogName": "Schedule",
      "Action": "Load",
      "Target": "Characters/schedules/NPCname",
      "FromFile": "assets/schedules/schedule.json"
    }
If you have that, then can you show an example of what your NPC's schedule looks like?
 

Kawfstel

Greenhorn
Is your schedule.json loaded in somewhere? If it's not loaded, it should look something like this:
JSON:
    {
      "LogName": "Schedule",
      "Action": "Load",
      "Target": "Characters/schedules/NPCname",
      "FromFile": "assets/schedules/schedule.json"
    }
If you have that, then can you show an example of what your NPC's schedule looks like?
Oh I used the include instead of load coz I just followed the instructions on how to mod TT
JSON:
    {

      "LogName": "Blade Schedule",
      "Action": "Include",
      "FromFile": "assets/data/schedule.json"

    }
This is how it looked like, should I use load instead of include?
 
Last edited:

Kawfstel

Greenhorn
Oh I used the include instead of load coz I just followed the instructions on how to mod TT
JSON:
    {

      "LogName": "Blade Schedule",
      "Action": "Include",
      "FromFile": "assets/data/schedule.json"

    }
This is how it looked like, should I use load instead of include?
Oh, I already figured out the issue, I just didn't have the blank.json file, I accidentally skipped tht part 😭🙏
 
Top