QUOTE(holy_demon @ Jan 23 2014, 15:07)

Inline Equipment Changer 1.2.1
InlineEquipChanger1.2.1.user.zip ( 1.62k )
Number of downloads: 1025Enable user to change equipment from all HV pages (including equipment pop-up). Equipment Comparison reflect the equipment change immediately so you don't have to refresh the pop-up window
Hello HD (IMG:[
invalid]
style_emoticons/default/smile.gif),
1.
I have a question about a code snippet in your script. In the function
checkCombat this is how you check if the player is NOT in a battle:
CODE
if (xmlhttp.readyState === 4 && !xmlhttp.responseXML.getElementById("togpane_log")) {
My question is, what if the player is facing RiddleMaster? In that case xmlhttp.responseXML.getElementById("togpane_log") is null, but that doesn't mean the player isn't in a battle, does it? I think the said line should be modified as follows:
CODE
if (xmlhttp.readyState === 4 && !xmlhttp.responseXML.getElementById("togpane_log") && !xmlhttp.responseXML.getElementById("riddlemaster")) {
What do you think?
2.
I'm also using oohmrparis' ELP script that automatically creates a popup div when I hover the mouse pointer over an equipment link appeared in the forums.
After installing your script, any popup div created by the ELP script simply disappears. Any easy fix from your side?EDIT: nvm, found a workaround.
This post has been edited by djackallstar: Nov 1 2015, 19:55