Page 20 of 28

PostPosted: Tue Jul 31, 2007 4:44 pm
by hatterson
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.

PostPosted: Tue Jul 31, 2007 4:48 pm
by Frop
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. :cry:

PostPosted: Tue Jul 31, 2007 5:06 pm
by artur1
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?

PostPosted: Tue Jul 31, 2007 5:08 pm
by bleu_falcon
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. :(

PostPosted: Tue Jul 31, 2007 5:16 pm
by jako
for me greasemonkey is working on some of my games, but my singles, it didnt work.

PostPosted: Tue Jul 31, 2007 5:22 pm
by AndrewB
It works for some games, but not all

PostPosted: Tue Jul 31, 2007 6:52 pm
by aphockey23
noooooooooo
what am i going to do without the greasemonkey
it just stopped working about 10 mins ago

PostPosted: Tue Jul 31, 2007 7:31 pm
by Sh4d0w
Seems to have stopped working for everyone....

PostPosted: Tue Jul 31, 2007 8:07 pm
by Paulineee
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.

PostPosted: Tue Jul 31, 2007 8:11 pm
by gaunt773
im running firefox osx 2.0.0.3 and i lost bob too...

:(

no updates were made to this machine in over a week.

PostPosted: Tue Jul 31, 2007 8:12 pm
by aphockey23
its weird because the clock is still animated

PostPosted: Tue Jul 31, 2007 8:52 pm
by Coleman
They maybe did the switch from country to territory and BoB doesn't understand it.

PostPosted: Tue Jul 31, 2007 9:13 pm
by casper
hmmmmmmm... *busts out notepad* :wink:

PostPosted: Tue Jul 31, 2007 9:28 pm
by AndrewB
Ok, found it.

They have changed the XML files.

Now instead of 'country' it is called 'territory'

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.

PostPosted: Tue Jul 31, 2007 9:28 pm
by narominded
I concur


RIP
Here Lies BOB
2007-2007

:( Many sad CC players
will await for his revival

PostPosted: Tue Jul 31, 2007 9:29 pm
by AndrewB
If stocksr will not fix that soon, I will upload my version for those who are less computer savvy ;)

PostPosted: Tue Jul 31, 2007 9:33 pm
by Coleman
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.

PostPosted: Tue Jul 31, 2007 9:39 pm
by narominded
AndrewB wrote:Ok, found it.

They have changed the XML files.

Now instead of 'country' it is called 'territory'

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

PostPosted: Tue Jul 31, 2007 9:40 pm
by AndrewB
Thanks narominded for more precise instructions.

hopefully everyone can follow ;)

My temporary fix...

PostPosted: Tue Jul 31, 2007 10:04 pm
by mfontolan
After the line:
var entries = dom.getElementsByTagName('country');

Insert the following code:
if (entries.length<1) {
entries = dom.getElementsByTagName('territory');
}


Tested into: Classic, Asia, Age of Merchants, Circus Maximus and Siege!

PostPosted: Tue Jul 31, 2007 10:18 pm
by Chalupacabra
Edit: Nevermind, I was replacing. Fix works.

PostPosted: Tue Jul 31, 2007 10:50 pm
by Night Strike
It only doesn't work on the new maps for me. And I don't know how to find and change the script anyway.

PostPosted: Tue Jul 31, 2007 11:33 pm
by Aerial Attack
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

PostPosted: Tue Jul 31, 2007 11:41 pm
by Sh4d0w
awesome, thanks for the quick fix guys.

PostPosted: Tue Jul 31, 2007 11:48 pm
by misterman10
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


It didnt do this for me, what happened