Question custom npc : He's not moving!

hhb

Newcomer
Custom maps work normally. But NPC doesn't recognize it. Both home and schedule are not recognized. What should I do?
There is no error log.
Save me...

"Home": [
{
"Id": "Custom_Q_QiNutRoom",
"Condition": "HAS_TARGET_LOCATION, LOCATION_NAME Target QiNutRoom",
"Location": "Custom_Q_QiNutRoom",
"Tile": {
"x": 7,
"y": 4
},
"Direction": "up"
},
{
"Id": "Default",
"Condition": null,
"Location": "Custom_Q_Desert",
"Tile": {
"x": 37,
"y": 11
},
"Direction": "up"
}
],

"Mon": "610 Custom_Q_Desert 37 11 0/1200 Custom_Q_Club 17 9 2/1600 Custom_Q_Club 24 4 0/1900 Custom_Q_Club 8 4 0",
Same schedule until Sunday.
 

hhb

Newcomer
I've worked it out.

First, do not set the name of the custom map to be the same as vanilla.
Second, do not replace the entire map, but add only a part of it.

example

"Home": [
{
"Id": "Custom_Q_QNutRoom",
"Condition": "HAS_TARGET_LOCATION, LOCATION_NAME Target QiNutRoom",
"Location": "Custom_Q_QNutRoom",
"Tile": {
"x": 7,
"y": 4
},
"Direction": "up"
},
{
"Id": "Default",
"Condition": null,
"Location": "Custom_Q_Qcasino",
"Tile": {
"x": 8,
"y": 4
},
"Direction": "up"
}
],



I'll leave a post for someone with the same problem as me.
 
Top