I figured out what was causing the problem. The following file contained 1,447 location entries for Wild Turkey: .\WRobot\Data\AQ.jsonBecause of this, WRobot was attempting to visit every recorded Wild Turkey location. Since the NPC was not actually available, the bot would travel to each location, blacklist it, and then move on to the next one. To fix the issue, I found the entry for Wild Turkey, NPC ID 32820, and replaced its Creatures list with an empty array: {
"entry": 32820,
"name": "Wild Turkey",
"faction": 7,
"maxLevel": 1,
"minLevel": 1,
"unit_flags2": 2048,
"Creatures": []
}This removed a large number of lines from the AQ.json file. After saving the file and restarting WRobot, the bot stopped searching for the elusive Wild Turkey. I recommend making a backup of AQ.json before editing it.