Neverwinter gateway - Profession Automation

Automatically selects professions for empty slots

< Commentaires sur Neverwinter gateway - Profession Automation

Question / commentaire

§
Posté le: 09/04/2015

For Reference userscrpt mirror of bunta's old script

http://userscripts-mirror.org/scripts/show/171738

Rotten_mindAuteur
§
Posté le: 09/04/2015

ewww, I tried run it... its not working. but I really really want try it, ;((.

§
Posté le: 10/04/2015

Link works for me?

Rotten_mindAuteur
§
Posté le: 10/04/2015
Édité le: 10/04/2015
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");
        }

Poster une réponse

Connectez-vous pour poster une réponse.