For some reason BOB doesn't seem to be working on maps aside from Classic. The only thing that I believe changed from yesterday (when it did) and today is that I upgraded to the latest version of firefox (2.0.0.6). I don't believe greasemonkey updated with this, but it may have.
Well, it seems like it works in some games (like this one) where the menu is visible. In other games (like my own) the menu doesn't show and the stats are invisible. Map inspect doesn't work anymore either.
hi, I just lost my greasemonkey for no reason. It had disapeared this night when I loged in. I have uninstalled it then reinstalled but, some seems to be missing. the only thing I have as it is now is Armies, Countries and Strength.
there is a lot helpfull thing that I am not able to get back. Anyone know how to go on with this?
Last edited by artur1 on Tue Jul 31, 2007 5:12 pm, edited 1 time in total.
artur1 wrote:hi, I just lost my greasemonkey for no reason. It had disapeared this night when I loged in. I have uninstalled it then reinstalled but, some seems to be missing. the only thing I have as it is now is Armies, Countries and Strength.
there is a lot helpfull thing that I am not able to get back. Anyone know how to go one with this?
Same here. I just installed the latest version of firefox, now my scripts aren't working.
I haven't upgraded or changed anything, and it stopped working sometime in the past couple of hours. I did notice it was a little buggy on the new Montreal map, don't know if that has anything to do with it.
All you need to do guys, is edit the script and replace all the instances (there should be only 1) of 'country' with 'territory', including single quotes in both cases.
The problem is it is either country or territory still (some maps are one, some are the other) so you have to swap back and forth when you want it to work.
All you need to do guys, is edit the script and replace all the instances (there should be only 1) of 'country' with 'territory', including single quotes in both cases.
Nice catch andrew! If anyone wants to change their script just find it navigate to
C:\Documents and Settings\YourUserNameHere\Application Data\Mozilla\Firefox\Profiles - - - - and search (cntrl + F) for 'bob'. When you find the file edit it. Do cntrl + h and find all 'country' and replace with 'territory'. Been working well for me on at least one game!
Remember you may have to include hidden files in your search
I believe this will also work (rather than digging through your user directory for "bob"):
1. Click on Tools/GreaseMonkey/Manage User Scripts
2. Select "Conquer Club - BOB" (left pane)
3. Click on Edit (under left pane)
4. This opens a notepad file
5. Search (either Ctrl-F or click Edit/Find) for 'country' [use the single quotes - helps to find fast]
6. Go 1 line below and insert the code previously indicated [copied here]
if (entries.length<1) {
entries = dom.getElementsByTagName('territory');
}
7. Enjoy
EDIT: Tested ON Middle East, Middle EArth, Siege, Classic, World 2.1, Montreal, USA Apocolypse, US Senate, Canada, Asia
Last edited by Aerial Attack on Tue Jul 31, 2007 11:42 pm, edited 1 time in total.
Aerial Attack wrote:I believe this will also work (rather than digging through your user directory for "bob"):
1. Click on Tools/GreaseMonkey/Manage User Scripts
2. Select "Conquer Club - BOB" (left pane)
3. Click on Edit (under left pane) 4. This opens a notepad file