Custom NPC won't follow the schedule

Hi, i'm working on a mod that adds a npc and some new locations. I created the disposition.json and the schedule.json but the npc won't follow the schedule but it will stay on the starting tile from the disposition. I really need help!
Disposition.json
{
"Changes": [
{
"Action": "EditData",
"Target": "data/NPCDispositions",
"Entries": {
"Martha": "teen/neutral/outgoing/positive/female/non-datable/null/Other/spring 22//StardewSuburbs_ 5 28/Martha"
}
}
]
}
{
"Changes": [
{
"Action": "EditData",
"Target": "data/NPCDispositions",
"Entries": {
"Martha": "teen/neutral/outgoing/positive/female/non-datable/null/Other/spring 22//StardewSuburbs_ 5 28/Martha"
}
}
]
}
schedule.json
{
"Spring": "600 StardewSuburbs_ 5 28 0/1000 StardewSuburbs_ 46 27 0/1300 StardewSuburbs_ 2 24 0"
"Summer": "600 StardewSuburbs_ 5 28 0/1000 StardewSuburbs_ 46 27 0/1300 StardewSuburbs_ 2 24 0"
"Fall": "600 StardewSuburbs_ 5 28 0/1000 StardewSuburbs_ 46 27 0/1300 StardewSuburbs_ 2 24 0"
"Winter": "600 StardewSuburbs_ 5 28 0/1000 StardewSuburbs_ 46 27 0/1300 StardewSuburbs_ 2 24 0"
}
content.json
{
"Format": "1.21.0",
"Changes": [
{
"LogName": "NPC Manifestation",
"Action": "Include",
"FromFile": "assets/disposition/Disposition.json"
},
{
"LogName": "NPC Gift Tastes",
"Action": "EditData",
"Target": "Data/NPCGiftTastes",
"Entries": {
"Martha": "*Martha loves it*/74 82 113 114 -79 -75 174 176 180 182 188 196 204 221 223 233 237 250 262 268 270 279 300 373 398 417 421 423 312 430 442 446 454 595 717 721 729 797/Bok!/16 18 20 22 24 30 72 80 88 107 116 129 130 131 132 136 137 138 139 142 -26 -81 -80 -7 150 152 153 163 190 637 638 636 -5 815 812 192 207 216 220 224 229 231 232 241 248 252 256 258 259 264 774 266 280 282 284 296 304 338 350 372 376 393 394 399 400 406 408 410 412 414 416 418 422 424 456 561 575 577 578 591 593 597 608 609 610 613 614 618 634 635 685 698 699 700 701 704 702 705 706 707 708 715 716 719 720 728 733/Bawk?/78 84 86 96 97 98 99 110 111 112 117 119 123 124 125 126 127 143 149 151 158 159 160 184 186 -6 814 807 205 254 283 303 306 307 348 395 396 432 433 436 48 440 447 558 559 562 574 585 586 587 588 731/*Martha seems to be angry*/92 118 122 128 -20 156 167 168 169 170 171 172 194 195 203 253 787 305 308 420 445 557 684 766 767 768 795 769/Bok/62 64 66 68 70 90 100 101 103 104 105 106 108 109 115 120 121 140 141 -27 -12 144 145 146 147 148 154 155 161 162 164 -4 -2 165 197 198 199 200 201 202 206 208 209 210 211 212 213 214 215 218 219 222 225 226 227 228 230 234 235 236 238 239 240 242 243 244 247 257 260 265 775 773 772 267 269 271 272 274 276 278 281 334 335 336 337 340 342 344 346 349 392 397 402 403 404 428 444 457 459 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 560 563 564 565 566 567 568 569 570 571 572 573 576 579 589 604 606 605 607 611 612 648 649 682 651 718 722 723 724 725 726 727 730 732 734 796 798 799 800 "
}
},
{
"LogName": "NPC Sprite",
"Action": "Load",
"Target": "Characters/Martha",
"FromFile": "assets/img/spritesheet.png"
},
{
"LogName": "NPC Portrait",
"Action": "Load",
"Target": "Portraits/Martha",
"FromFile": "assets/img/portrait.png"
},
{
"LogName": "Schedule",
"Action": "Load",
"Target": "Characters/schedules/Martha",
"FromFile": "assets/schedules/schedule.json"
},
{
"LogName": "Dialogue",
"Action": "Load",
"Target": "Characters/Dialogue/Martha",
"FromFile": "assets/dialogue/Dialogue.json"
}
]
}
 
Top