QUOTE(naturehantai @ Jul 13 2021, 11:59)

I added a wrong key binding, then it show “invalid key bindings. option disabled” in battle. Now I can't use the shortcut key P to call the settings, even if the script is reinstalled.
How can I solve this problem?
If you're in battle, there should be an icon on the right-bottom to open the setting if you have not disable it in settings.
If you have disable the setting button, get out battle (maybe switch Persistent and Isekai is fine), there is a Monsterbation Setting under the Menu→Character
QUOTE(OnceForAll @ Jul 7 2021, 22:17)

A potential fix: instead of excluding equipment URL from UserScript matching, use "document.getElementById('showequip')" and simply return if there is any.
This won't actually solve the problam. To fix the equips page problam add the equips URL to excluding is much easier, but as sigo8 said, you may also lost data on other case, like the 404 page or even you do nothing wrong but the cloudflare or HV server sometimes down then Monsterbation will think you are out of battle and delete the datas. Check if '#csp' frame existes should always work, if it not existed, then it may not a vaild HV main page and the scripts should do nothing
QUOTE(sigo8 @ Jul 7 2021, 17:24)

And a third one `logPasteover` can cause item drops to be double counted if the round isn't long enough to push it out of the log by the end of the round. I don't have any suggestion on how to fix this as personally I just disabled it.
For this one, I would suggest to add the previous log in a new table after the textlog, as it not in the observe range so it won't cause problam.
CODE
if ( cfg.logPasteover && turn ) {
log.insertAdjacentHTML('afterend', '<table><tbody><tr><td class="tls"></td></tr>' + turn + '</tbody></table>'); }
A bug report also: the EDs confirm function may cause repeatly confirm, because the item list only change when item cooldown states change, but the ed confirm function always add a layer confirm every turns. query the ed which not added confirm may solve it
CODE
if ( cfg.edConfirm && (ed = document.querySelector('div[onclick][onmouseover*="item(11401)"]:not([onclick*=confirm])')) ) {
The flee confirm seem fine as the skills list change every turns
This post has been edited by what_is_name: Aug 8 2021, 10:58