Moderator: Tech Team
Jippd wrote:Does anyone know if there is a way to revert back to 4.12?
ElricTheGreat wrote:Jippd wrote:Does anyone know if there is a way to revert back to 4.12?
Hi .... I still have 4.12 installed in Firefox on my system ....
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?
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
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):
- Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {
And change it to:
- Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
And don't forget to disable Panel Interface in game settings ...
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):
- Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {
And change it to:
- Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
And don't forget to disable Panel Interface in game settings ...
ViperOverLord wrote: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):
- Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {
And change it to:
- Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
And don't forget to disable Panel Interface in game settings ...
Yea, but where to fin CL 4.12? Most of us have 4.13 now.
ISN2 wrote:ViperOverLord wrote: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):
- Code: Select all
} else if (actionString.match('Assault from') || actionString.match('You cannot make any assaults.')) {
And change it to:
- Code: Select all
} else if (actionString.match('Assault') || actionString.match('You cannot make any assaults.')) {
And don't forget to disable Panel Interface in game settings ...
Yea, but where to fin CL 4.12? Most of us have 4.13 now.
I believe it works for both 4.12 and 4.13, So you can edit it on any version you currently have ...
Anyway it's better to use dgz345's fix at this post: viewtopic.php?p=4376167#p4376167 It's working well with both Panels and no Panels ...
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.
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.
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());
}
}
}
}
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.
submenu.style.left = '20px';
Users browsing this forum: No registered users