I remember seeing this before. It may be a mafia bug with that quest - questESpClipper being in a state that indicates it's in progress even if it is not. (get questESpClipper to check)
Click on the radio and keep listening to it. I think that clears out the flag as a backup.
Thanks, that did the trick.Delete the script and re-install it. Well known problem that svn repos on google code don't always update properly.
It's actually a KoL bug, but as it clearly hasn't been fixed so far, we should change the way that quest gets set.I remember seeing this before. It may be a mafia bug with that quest - questESpClipper being in a state that indicates it's in progress even if it is not. (get questESpClipper to check)
Click on the radio and keep listening to it. I think that clears out the flag as a backup.
I've somehow managed to accidentally disable automatic refreshing for the guide. How do I reenable it?
I've somehow managed to accidentally disable automatic refreshing for the guide. How do I reenable it?
It could be due to a browser update, maybe?
Changed my relay browser to Firefox, got the same Automatic Refreshing Disabled message in the Guide pane.
string __relay_filename;
...
__relay_filename = relay_filename;
...
if (__relay_filename == "relay_Guide.ash")
PageSetBodyAttribute("onload", "GuideInit('relay_Guide.ash'," + __setting_horizontal_width + ");");
//We don't give the javascript __relay_filename, because it's unsafe without escaping, and writing escape functions yourself is a bad plan.
//So if they rename the file, automatic refreshing and opening in a new window is disabled.
__relay_filename = relay_filename.to_lower_case();
...
if (__relay_filename == "relay_guide.ash")
if (__relay_filename.to_lower_case() == "relay_guide.ash")
//We don't give the javascript __relay_filename, because it's unsafe without escaping, and writing escape functions yourself is a bad plan.
//So if they rename the file, automatic refreshing and opening in a new window is disabled.
PageSetBodyAttribute("onload", "GuideInit('" + url_encode(__relay_filename) + "'," + __setting_horizontal_width + ");");
As I said, I don't understand that comment. In particular, ASH provides a function:
Should be fixed in release?