Automatically selects professions for empty slots
< Feedback op Neverwinter gateway - Profession Automation
To clarify when I say "The issue appears to be" I am referring to my changes to the default task list not taking effect right away/at all.
I think its here, (if you can improve it then we happy to apply)
https://github.com/Phr33d0m/NW-Profession-Bot/issues/9
Look if we allready implemted it and if you can improve it, then just do pull request.
We use Github because its forgiving if we mess with code, I do then updates here in Greasyfork when changes are tested.
Custom crafting order
The script should offer some way to create/save a custom crafting order. My reason for this is that I want to significantly alter some of the crafting paths in the script and unfortunately every time I update the script I have to re-input my changes.
The real issue is that when I make my changes, the changes are not always immediate.
The issue appears to be in:
// Load task list from settings if saved
if (settings["tasklist"].length) {
tasklist = JSON.parse(settings["tasklist"]);
}
else {
tasklist = defaultTasklist;
}
This appears to be intended as a hook to do exactly what I am requesting however I see no interface way of changing the task list without rewriting the default task list.