Moderator: Tech Team
Hi .... I still have 4.12 installed in Firefox on my system ....Jippd wrote:Does anyone know if there is a way to revert back to 4.12?

I took your code and replaced the 4.13 code. Clikies doesn't even show up on the sidebar when I did so.ElricTheGreat wrote:Hi .... I still have 4.12 installed in Firefox on my system ....Jippd wrote:Does anyone know if there is a way to revert back to 4.12?
Anyone know if it is possible to export it somehow so that others can install it on another system?
Maybe I can post the extracted file for those interested in taking the step back to the older version?
It is confirmed that there is no longer a link to get it anymore?
If you already have 4.13 installed can you simply edit it ... select all the text ... delete it and then cut and paste the older version into the sane file?
Any Java Script specialist with ideas?
Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {This fix worked for me in Chrome with TamperMonkey. I didn't have to change anything to do w/ Panel Interface. I just went in and edited the code and saved it. Thx ISN2 !! =)ISN2 wrote:Clickable Maps has been broken by new site changes again, here is a quick fix to play without Panel Interface until the developer releases a new version compatible with Panel Interface ...
This fix is for version 4.13 and probably will work with 4.12 too ...
Click on Tools/Greasemonkey/Manage User Scripts ...
Right click on "ConquerClub - Clickable Maps" and select "Edit" ...
Find the line blow (Line 309):And change it to:Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {And don't forget to disable Panel Interface in game settings ...Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {



Yea, but where to fin CL 4.12? Most of us have 4.13 now.ISN2 wrote:Clickable Maps has been broken by new site changes again, here is a quick fix to play without Panel Interface until the developer releases a new version compatible with Panel Interface ...
This fix is for version 4.13 and probably will work with 4.12 too ...
Click on Tools/Greasemonkey/Manage User Scripts ...
Right click on "ConquerClub - Clickable Maps" and select "Edit" ...
Find the line blow (Line 309):And change it to:Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {And don't forget to disable Panel Interface in game settings ...Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
I believe it works for both 4.12 and 4.13, So you can edit it on any version you currently have ...ViperOverLord wrote:Yea, but where to fin CL 4.12? Most of us have 4.13 now.ISN2 wrote:Clickable Maps has been broken by new site changes again, here is a quick fix to play without Panel Interface until the developer releases a new version compatible with Panel Interface ...
This fix is for version 4.13 and probably will work with 4.12 too ...
Click on Tools/Greasemonkey/Manage User Scripts ...
Right click on "ConquerClub - Clickable Maps" and select "Edit" ...
Find the line blow (Line 309):And change it to:Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {And don't forget to disable Panel Interface in game settings ...Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
Hi guys, based on what dgz345 did, and a few other changes, we've put an 'official' Clickable Maps here: http://userscripts.org/scripts/show/186652ISN2 wrote:I believe it works for both 4.12 and 4.13, So you can edit it on any version you currently have ...ViperOverLord wrote:Yea, but where to fin CL 4.12? Most of us have 4.13 now.ISN2 wrote:Clickable Maps has been broken by new site changes again, here is a quick fix to play without Panel Interface until the developer releases a new version compatible with Panel Interface ...
This fix is for version 4.13 and probably will work with 4.12 too ...
Click on Tools/Greasemonkey/Manage User Scripts ...
Right click on "ConquerClub - Clickable Maps" and select "Edit" ...
Find the line blow (Line 309):And change it to:Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {And don't forget to disable Panel Interface in game settings ...Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
Anyway it's better to use dgz345's fix at this post: http://www.conquerclub.com/forum/viewto ... 7#p4376167 It's working well with both Panels and no Panels ...
Well done, 4.14 works perfectly! Where's the Thumb's Up button?bigWham wrote: Hi guys, based on what dgz345 did, and a few other changes, we've put an 'official' Clickable Maps here: http://userscripts.org/scripts/show/186652
The intention is to maintain this one as the site changes, so it's really the version to install.


The refresh hotkey (default r, I tried changing it, still no luck) doesn't work for me with the new panel interface. Refresh works with the old interface, all the other hotkeys seem to work correctly, and the clickies themselves are great! ThanksbigWham wrote:Hi guys, based on what dgz345 did, and a few other changes, we've put an 'official' Clickable Maps here: http://userscripts.org/scripts/show/186652
The intention is to maintain this one as the site changes, so it's really the version to install.
Code: Select all
function refreshMap() {
var x = document.getElementById('console_header_nav');
if (x==null) {
x = document.getElementById('right_hand_side').getElementsByTagName("a");
}
else {
x = document.getElementById('console_header_nav').getElementsByTagName("a");
}
for (var i = 0; i < x.length; i++) {
if (x[i].textContent.toLowerCase().indexOf("refresh") > -1) {
if (document.createEvent) {
// dispatch for firefox + others
var evt = document.createEvent("HTMLEvents");
evt.initEvent('click', true, true );
x[i].dispatchEvent(evt);
} else {
x[i].fireEvent('onclick',document.createEventObject());
}
}
}
}Thanks bigWham for maintaining this script, it's very much appreciatedbigWham wrote:Hi guys, based on what dgz345 did, and a few other changes, we've put an 'official' Clickable Maps here: http://userscripts.org/scripts/show/186652
The intention is to maintain this one as the site changes, so it's really the version to install.
Code: Select all
submenu.style.left = '20px';