QUOTE(Anemona7 @ May 4 2016, 20:09)

Thanks,I have tried Reloder 1.3.3b,but the problem still exists,and the problem is the enemies are still alive when battleLog show Stop beating dead horses.
QUOTE(nobody_xxx @ May 4 2016, 20:31)

errr , I got some problem too with that (IMG:[
invalid]
style_emoticons/default/biggrin.gif)
wait till hansvar appear to make some explanation for this (IMG:[
invalid]
style_emoticons/default/heh.gif)
CracklingCast fix6 [attachmentid=85063]
fix6 - fixed bug attack wrong target ('Stop beating dead horses')
Sorry, it's my fault.
Normaly I play mage (AOE) for test and don't see battle log.
Next time, I should be test 1h and more carefully lookup battle log.
QUOTE(f4tal @ May 5 2016, 04:57)

Hmm, try to switch script on and visit this page
http://hentaiverse.org/?s=Character&ss=eq before doing anything more. If this will not work - I am run out of any idea =/
But he said "EC Loading..." message which almost instantly disappear.
That means player level and equips data loading is done.
And "popup from pressing C", this means he stay out of battle.
And he get a message box with a date, N key is work.
But F, H, R key and other keys is not working.
I think fail here; Controller.loaded value is false.
CODE
if (key == 'n') {
Controller.useBaseDataOld = !Controller.useBaseDataOld;
alert('Wiki Data Date: ' + (Controller.useBaseDataOld ? OLD_DATA_DATE : NEW_DATA_DATE));
return;
}
Wiki.baseData = Controller.useBaseDataOld ? Wiki.baseDataOld : Wiki.baseDataNew;
if (!Controller.loaded) {
if (!Controller.inBattle && (!localStorage.hasOwnProperty('HVLevel') || !localStorage.hasOwnProperty('HVEquipment'))) {
Controller.getData(e);
return;
}
Controller.loadData();
if (localStorage.hasOwnProperty('HVLevel') && localStorage.hasOwnProperty('HVEquipment')) Controller.loaded = true;
}
open browser's javascript console or developer tools.
use http (not https)
and visit
http://hentaiverse.org/?s=Character&ss=eq and wait a few seconds.
try w keydown and keyup (keyevent is keyup) on your equipment and wait a few seconds.
This post has been edited by hansvar92: May 5 2016, 00:15