MouseHunt AutoBot UPDATED

Script automating MH horn sounding and gifting, mostly functional as of 14/04/2024; updating the outdated script from nobodyrandom, who adapted the original versions by CnN and Ooi.

< MouseHunt AutoBot UPDATEDについてのフィードバック

レート:可 - スクリプトは動作するがバグがある

§
投稿日: 2023/04/10

On Firefox, it seems that location detection and related functions are currently broken.

I think it could be fixed (it works for me) by changing line 10526 to 10546 from

            if (name == "user.next_activeturn_seconds") {
                return unsafeWindow.user.next_activeturn_seconds;
            } else if (name == "user.unique_hash") {
                return unsafeWindow.user.unique_hash;
            } else if (name == "user.has_puzzle") {
                return unsafeWindow.user.has_puzzle;
            } else if (name == "user.bait_quantity") {
                return unsafeWindow.user.bait_quantity;
            } else if (name == "user.environment_name") {
                return unsafeWindow.user.environment_name;
            } else if (name == "user.trinket_name") {
                return unsafeWindow.user.trinket_name;
            } else if (name == "user.weapon_name") {
                return unsafeWindow.user.weapon_name;
            } else if (name == "user.quests.QuestTrainStation.on_train") {
                return unsafeWindow.user.quests.QuestTrainStation.on_train;
            } else {
                if (debug) console.log('GPV firefox: ' + name + ' not found.');
            }

to

            console.log('GPV firefox: ' + name);
            return eval(name);

返信を投稿

返信を投稿するにはログインしてください。