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的反馈
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);
登录以发表回复。
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
to