Automatically selects professions for empty slots
< Feedback on Neverwinter gateway - Profession Automation
ewww, I tried run it... its not working. but I really really want try it, ;((.
Link works for me?
Link works for me?
Yes, I know where that script locate, but I dont get it work eg. cant find browser-userscript -extension what runs that script... :(
that is my problem with it, ;D
I think good reference is Noonereally Github -build and this,
https://greasyfork.org/en/scripts/7808-neverwinter-gateway-professions-robot
First character name must be "Character 1" (in script) and ... 8D, maybe "Default" settings must be change litle... forked it from Noonereallys -build!!!
if (charName == "Character 1") {
if (!settings["paused"])
PauseSettings("pause");
console.log("Loading character list", charName);
charNameList = [];
client.dataModel.model.loginInfo.choices.forEach(function (char) {
if (char.name == "Author") return;
charNameList.push(char.name);
});
console.log("Found names: " + charNameList);
GM_setValue("charcount", charNameList.length);
charNameList.forEach(function (name, i) {
GM_setValue("nw_charname" + i, name);
})
if (settings["paused"]) {
window.setTimeout(function () {
PauseSettings("unpause");
}, 3000);
}
window.setTimeout(function () {
unsafeWindow.location.href = current_Gateway;
}, delay.MEDIUM);
console.log("ReStarting");
}
For Reference userscrpt mirror of bunta's old script
http://userscripts-mirror.org/scripts/show/171738