QUOTE(holy_demon @ Apr 22 2015, 18:25)

1. remove all instances of "if (spell) {" and its closing bracket "{"
2. change CSS_HOVER_RULE to
var CSS_HOVER_RULE = "*:hover>img:not(.cw), #quickbar:hover *, .btp:hover * {visibility: visible !important; }";
Thanks for answering,
1. For SpellSpam, I did as instructed, however, It had no effect. Additionally, I noticed this version also doesn't resume default behaviors (normal attack) when no spell is available because of cooldown, low MP, etc. like it used to work before.
Anyway, after some time testing different things, I tried replacing the whole "function mouseClickHandle(e) {" part with the one in SpellSpam 3.4.0 (which is the one I was using before) and it worked fine:
CODE
function mouseClickHandle(e) {
var spell = getSpell(profile.spell.click);
if (spell && profile.mode.click && e.button === 0 && !e.altKey && !e.ctrlKey && isEnabled) {
isEnabled = false;
spell.click();
this.click();
spell.click();
isEnabled = true;
}
}
Probably this is not optimal, but I guess it's not worth the trouble.
2. NoImage script worked fine. One last question, is there a way the Spirit Stance (IMG:
http://ehgt.org/v/battle/spirit_n.png) doesn't hide so I can always see if it's active or not?
Thanks!
This post has been edited by gynew: Apr 23 2015, 08:28