Clickable Maps :: Version 3.21
Moderator: Tech Team
Forum rules
Please read the Community Guidelines before posting.
Please read the Community Guidelines before posting.
Re: Clickable Maps :: Version 3.21
Yes thats right, when i want to deploy my forces at the beginning it doesn't matter what number i have selected, i always deposit one n one if i do it clicking over the map. Thx both, i hope this will be fixed.
Re: Clickable Maps :: Version 3.21
Ocelote wrote:Yes thats right, when i want to deploy my forces at the beginning it doesn't matter what number i have selected, i always deposit one n one if i do it clicking over the map. Thx both, i hope this will be fixed.
Left click deploys 1 - right click deploys "many".
C.

Highest score : 2297
Re: Clickable Maps :: Version 3.21
New Oceania Map has a problem. Wallis and Futuna is broke. By Broke I mean it does not advance into or fort to. This is the same problem on British Isles 2 on a few spots. Which still has not been fixed. and yes I have cleared the cash f5'ed etc...
Highest Rank: 26 Highest Score: 3480


- KLOBBER
- Posts: 933
- Joined: Sat Apr 14, 2007 4:57 pm
- Location: ----- I have upped my rank -- NOW UP YOURS! -----
- Contact:
Re: Clickable Maps :: Version 3.21
I had a question, but I managed to answer it myself, so I edited it out so that you wouldn't have to bother answering it.
Just ignore this post, please.
Just ignore this post, please.
KLOBBER's Highest Score: 3642 (General)
KLOBBER's Highest place on scoreboard: #15 (fifteen) out of 20,000+ players.
For info about winning, click here.
KLOBBER's Highest place on scoreboard: #15 (fifteen) out of 20,000+ players.
For info about winning, click here.
- karelpietertje
- Posts: 801
- Joined: Mon Sep 03, 2007 1:43 pm
- Gender: Male
- Contact:
Re: Clickable Maps :: Version 3.21
couldn't the confirmations be auto-set to "N" when you download the script for the first time?
I hear a lot of people who get it for the first time and immediately delete it because of those.
I hear a lot of people who get it for the first time and immediately delete it because of those.

- clapper011
- Posts: 7208
- Joined: Mon Feb 20, 2006 10:25 am
- Gender: Female
- Location: Ontario, Canada
Re: Clickable Maps :: Version 3.21
i had to reinstall my firefox...and now my clickies arent working..i try to right click to deploy all...but it doesnt work..not even if i want to left click to deploy one at a time... its like my clickies are turned off..yet it is on.....not sure what i have done or not done to change the settings.....
- karelpietertje
- Posts: 801
- Joined: Mon Sep 03, 2007 1:43 pm
- Gender: Male
- Contact:
Re: Clickable Maps :: Version 3.21
Hello everybody,
I tried some stuff and failed some times but in the end, it was pretty easy to get rid of the error messages when misclicking, which irritated me.
So for anybody who wants to get rid of them as well, here's how to do it:
So right-click the monkey in the bottom right, and Manage User Scripts.
Select Clickable Maps and click Modify.
The error message system is in line 923 and 924:
As far as I could understand it, this tries out if the territory you click is in the list of territories that connect to the territory from which you are attacking, and if it isn't, it pops up an error message and it sets a timeout of 500 (seconds i think, but I'm noob at this
)
So basically what I did was I deleted the error message part and kept the timeout.
It looks like this:
This way the script will just ignore a click to make an impossible attack, and you can just click the territory you actually meant to click next.
The forting goes the same way. You should alter lines 957 and 958 from this:
To this:
This worked for me
!
NOTE:The script is very sensitive to deleting too much or too little. While trying to make it like this, I had to delete and reinstall thrice.
So if it doesn't work for you anymore, just delete the script and reinstall it again.
Have fun
KP
PS: If this script ever gets updated I hope that there will be the possibility of selecting if you want the error messages or not, but that is way too difficult for me to code myself, I'm a noob
I tried some stuff and failed some times but in the end, it was pretty easy to get rid of the error messages when misclicking, which irritated me.
So for anybody who wants to get rid of them as well, here's how to do it:
So right-click the monkey in the bottom right, and Manage User Scripts.
Select Clickable Maps and click Modify.
The error message system is in line 923 and 924:
Code: Select all
try{selectToCountry.value = tIndex}catch(err){}
if ( selectToCountry.value != tIndex ) { wait('off'); setTimeout(function(){alert(tName+' is not accessible from '+fromTerritory)}, 500); return }As far as I could understand it, this tries out if the territory you click is in the list of territories that connect to the territory from which you are attacking, and if it isn't, it pops up an error message and it sets a timeout of 500 (seconds i think, but I'm noob at this
So basically what I did was I deleted the error message part and kept the timeout.
It looks like this:
Code: Select all
try{selectToCountry.value = tIndex}catch(err){}
if ( selectToCountry.value != tIndex ) { wait('off'); setTimeout(500); return }This way the script will just ignore a click to make an impossible attack, and you can just click the territory you actually meant to click next.
The forting goes the same way. You should alter lines 957 and 958 from this:
Code: Select all
try{selectToCountry.value = tIndex}catch(err){}
if ( selectToCountry.value != tIndex ) { wait('off'); setTimeout(function(){alert(tName+' is not accessible from '+fromTerritory)}, 500); return }To this:
Code: Select all
try{selectToCountry.value = tIndex}catch(err){}
if ( selectToCountry.value != tIndex ) { wait('off'); setTimeout(500); return }This worked for me
NOTE:The script is very sensitive to deleting too much or too little. While trying to make it like this, I had to delete and reinstall thrice.
So if it doesn't work for you anymore, just delete the script and reinstall it again.
Have fun
KP
PS: If this script ever gets updated I hope that there will be the possibility of selecting if you want the error messages or not, but that is way too difficult for me to code myself, I'm a noob

Re: Clickable Maps :: Version 3.21
the 500 is the amount of time in milliseconds before the other part is executed (in this case, it showed a popup).
You could actually remove the 'setTimeout(500);'-part from the code, it does nothing in your code atm.
You could actually remove the 'setTimeout(500);'-part from the code, it does nothing in your code atm.
- karelpietertje
- Posts: 801
- Joined: Mon Sep 03, 2007 1:43 pm
- Gender: Male
- Contact:
Re: Clickable Maps :: Version 3.21
sherkaner wrote:the 500 is the amount of time in milliseconds before the other part is executed (in this case, it showed a popup).
You could actually remove the 'setTimeout(500);'-part from the code, it does nothing in your code atm.
good, I knew that it probably wasn't the shortest way to do it anyway.
So I guess the reason it ignores a misclick now is because of the wait('off') and 'return' to before the click?

-
nikola_milicki
- Posts: 1015
- Joined: Wed Apr 18, 2007 2:17 pm
- Gender: Male
- Location: CROATIA
Re: Clickable Maps :: Version 3.21
I hope this is the right place to post this then
so, clickies wont advance armies sometimes, must be on certain maps right? when is this going to be fixed, Im a speed 1on1 addict with a slow connection and when u add not-advancing clickies to that it really is a pain in the butt, thnx
so, clickies wont advance armies sometimes, must be on certain maps right? when is this going to be fixed, Im a speed 1on1 addict with a slow connection and when u add not-advancing clickies to that it really is a pain in the butt, thnx
Re: Clickable Maps :: Version 3.21
Nobody has posted here in over 2 weeks....Is the clickable maps script still being worked on? I have tried uninstalling, clearing cache, and reinstalling several times, and can't get my clickable maps script to work at all. Love the script and appreciate everyone who has worked on it, just hope it has a future. 
- clapper011
- Posts: 7208
- Joined: Mon Feb 20, 2006 10:25 am
- Gender: Female
- Location: Ontario, Canada
Re: Clickable Maps :: Version 3.21
on mine it doesnt even show that I have it..yet my grease monkey shows it.......
-
Darwins_Bane
- Posts: 989
- Joined: Tue Mar 04, 2008 7:09 pm
- Gender: Male
- Location: Ottawa, Ontario
Re: Clickable Maps :: Version 3.21
clapper011 wrote:on mine it doesnt even show that I have it..yet my grease monkey shows it.......
i ahve the same problem...i dont know why. maybe it has to do with certain maps? or all of them....I'll have to experiment more.
-
Shino Tenshi
- Posts: 166
- Joined: Sat Sep 01, 2007 1:35 pm
- Location: nostalgically reading the chat in game#14480932
Re: Clickable Maps :: Version 3.21
Anyone have any idea whether the problems I'm having advancing armies with clickies in the new British Isles map a problem with clickies or a problem with the XML of the map?
- The Neon Peon
- Posts: 2342
- Joined: Sat Jun 14, 2008 12:49 pm
- Gender: Male
Re: Clickable Maps :: Version 3.21
I have an idea, I am not sure how feasible it is though.
Have the "c" cash your cards/spoils for you.
Just thought it would be extremely useful.
Have the "c" cash your cards/spoils for you.
Just thought it would be extremely useful.
Re: Clickable Maps :: Version 3.21
Help
I downloaded the Mozilla and the greasemonkey, but then when I go to install the script if give me an error
any suggestions, I am a computer dummy. I followed Bob's instruction until I went under toos and there was nothing on manage.
Help
thanks
Bikodog
I downloaded the Mozilla and the greasemonkey, but then when I go to install the script if give me an error
any suggestions, I am a computer dummy. I followed Bob's instruction until I went under toos and there was nothing on manage.
Help
thanks
Bikodog
Re: Clickable Maps :: Version 3.21
buggy script
I use latest FF, latest greasemonkey, latest CM script, and it's buggy on World 2.1
I use latest FF, latest greasemonkey, latest CM script, and it's buggy on World 2.1
Last edited by paulk on Wed Sep 23, 2009 8:35 pm, edited 1 time in total.
Re: Clickable Maps :: Version 3.21
this script does not seem to be working if u have vista. worked just fine on my old xp computer, but when i got my new one with vista it just wount work what ever i do...
Re: Clickable Maps :: Version 3.21
Just downloaded it all. I hope it works okay. will make my goes so much faster
Rank: Corporal
High: 1157
Low: 950
Position - score - date - played/won - percentage
12982 - 992 - 20/09/09 - 5/2 - 40%
10622 - 1038 - 21/09/09 - 7/4 - 57%
8448 - 1157 - 24/09/09 - 21/13 - 62%
High: 1157
Low: 950
Position - score - date - played/won - percentage
12982 - 992 - 20/09/09 - 5/2 - 40%
10622 - 1038 - 21/09/09 - 7/4 - 57%
8448 - 1157 - 24/09/09 - 21/13 - 62%
Re: Clickable Maps :: Version 3.21
Wow. I just found out that this is the third-most-downloaded Greasemonkey script ever.
11,992,034 downloads
I am amazed. Carry on with the great work!
11,992,034 downloads
I am amazed. Carry on with the great work!
Re: Clickable Maps :: Version 3.21
Those stats aren't accurate...
Read the code to find out why... but it was the reason why I got banned from userscripts for BOB!
C.
Read the code to find out why... but it was the reason why I got banned from userscripts for BOB!
C.

Highest score : 2297
Re: Clickable Maps :: Version 3.21
I dont see it...but it just got another 11,000 downloads since last nightyeti_c wrote:Those stats aren't accurate...
Read the code to find out why... but it was the reason why I got banned from userscripts for BOB!
C.
Haha what did you do??
Re: Clickable Maps :: Version 3.21
The reason is that you probably download the source code every time it checks for a new version (which can be quite a lot), and that counts as an install on userscripts.
Re: Clickable Maps :: Version 3.21
does it not work on feudal or something