BOB Bugs

Archival storage to keep things organized and uncluttered. Can't find what you need? Search for old topics here.

Moderator: Tech Team

Forum rules
Please read the Community Guidelines before posting.
Locked
User avatar
chewyman
Posts: 400
Joined: Sat Feb 17, 2007 12:48 am

Re: BOB Bugs

Post by chewyman »

I've just installed BOB. The red squares and green circles thing isn't appearing, all I can see is the greasemonkey picture on the bottom of firefox. Whenever I open a game BOB works and gives me all the stats, but on the map all the army numbers are doubled. So if there was 5 armies on one territory I see the number 5 slightly above and to the left of another number 5. Hope that makes sense.
If I had a world of my own, everything would be nonsense. Nothing would be what it is, because everything would be what it isn't. And contrary wise, what is, it wouldn't be. And what it wouldn't be, it would. You see?
lancehoch
Posts: 4183
Joined: Wed Dec 05, 2007 4:13 pm

Re: BOB Bugs

Post by lancehoch »

chewyman wrote:I've just installed BOB. The red squares and green circles thing isn't appearing, all I can see is the greasemonkey picture on the bottom of firefox. Whenever I open a game BOB works and gives me all the stats, but on the map all the army numbers are doubled. So if there was 5 armies on one territory I see the number 5 slightly above and to the left of another number 5. Hope that makes sense.

Try adjusting the alignment. Go into the game, and under map options you should see a vertical alignment and a horizontal alignment.
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

chewyman wrote:I've just installed BOB. The red squares and green circles thing isn't appearing, all I can see is the greasemonkey picture on the bottom of firefox. Whenever I open a game BOB works and gives me all the stats, but on the map all the army numbers are doubled. So if there was 5 armies on one territory I see the number 5 slightly above and to the left of another number 5. Hope that makes sense.


Note - Red square and green circles sounds like Clicky maps?!

C.
Image
Highest score : 2297
iambligh
Posts: 144
Joined: Thu Jul 17, 2008 7:15 pm

Re: BOB Bugs

Post by iambligh »

Possible bug:

Defeated opponent on Iceland map listed as having (-1) regions.
lancehoch
Posts: 4183
Joined: Wed Dec 05, 2007 4:13 pm

Re: BOB Bugs

Post by lancehoch »

iambligh wrote:Possible bug:

Defeated opponent on Iceland map listed as having (-1) regions.

Game number?
User avatar
Thezzaruz
Posts: 1093
Joined: Mon Feb 04, 2008 2:10 pm
Gender: Male
Location: OTF most of the time.
Contact:

Re: BOB Bugs

Post by Thezzaruz »

yeti_c wrote:Thanks for the info...

I'll try and get round to debugging it sometime shortly.

C.


Regarding the issues on the Wales map. My problem just suddenly went away.
I have no idea why and I the only territ I lost since it was last my turn was "Caerwent", but I conquered it myself on my last turn so can't see how that would have affected anything.
User avatar
gameplayer
Posts: 634
Joined: Mon Jun 18, 2007 7:30 pm

Re: BOB Bugs

Post by gameplayer »

yeti_c wrote:
chewyman wrote:I've just installed BOB. The red squares and green circles thing isn't appearing, all I can see is the greasemonkey picture on the bottom of firefox. Whenever I open a game BOB works and gives me all the stats, but on the map all the army numbers are doubled. So if there was 5 armies on one territory I see the number 5 slightly above and to the left of another number 5. Hope that makes sense.


Note - Red square and green circles sounds like Clicky maps?!

C.

He's thinking of jonducrou's ConquerTell add-on.
Image
Image
User avatar
chewyman
Posts: 400
Joined: Sat Feb 17, 2007 12:48 am

Re: BOB Bugs

Post by chewyman »

Yeah, sorry about that, I forgot that was a separate add on.

But the allignment problem is definitely an issue with BOB, since when I disable BOB it works perfectly. Tried using the allignment feature lancehoch mentioned, but it only works to move the problem numbers further left and upwards. There is no right and downwards allignment option, which is what I need to get the numbers to match up.
If I had a world of my own, everything would be nonsense. Nothing would be what it is, because everything would be what it isn't. And contrary wise, what is, it wouldn't be. And what it wouldn't be, it would. You see?
User avatar
Thezzaruz
Posts: 1093
Joined: Mon Feb 04, 2008 2:10 pm
Gender: Male
Location: OTF most of the time.
Contact:

Re: BOB Bugs

Post by Thezzaruz »

From the BOB hep/Info menu... :-^

Map Align Left : -21 | ... | 22
Offsets the overlaid display of army indicators on the map by the specified number of pixels: Negative towards the left, positive towards the right, of the default position. Use to ensure that army indicators overlaid by BOB on the Conquer Club map are exactly aligned.
Map Align Top : -21 | ... | 22
Offsets the overlaid display of army indicators on the map by the specified number of pixels: Negative towards the top, positive towards the bottom, of the default position. Use to ensure that army indicators overlaid by BOB on the Conquer Club map are exactly aligned.
User avatar
chewyman
Posts: 400
Joined: Sat Feb 17, 2007 12:48 am

Re: BOB Bugs

Post by chewyman »

Ah, thanks for that, didn't realise you had to get to 22 before it became positive numbers. I've installed BOB at least three or four times on this computer, so it's weird this hasn't happened before.

Anywho, everything is working fine now, thanks again.
If I had a world of my own, everything would be nonsense. Nothing would be what it is, because everything would be what it isn't. And contrary wise, what is, it wouldn't be. And what it wouldn't be, it would. You see?
User avatar
chipv
Head Tech
Head Tech
Posts: 3062
Joined: Mon Apr 28, 2008 5:30 pm

Re: BOB Bugs

Post by chipv »

I've fixed the problem on the Wales map.

It's not strictly speaking BOB's fault.

There is a trailing space in the Wales map xml on the territory Preseli or Amwythig.
This cause BOB to hang when it tries to do an exact match when doing the cards hover handlers.

You will see this problem of BOB hanging indefinitely if you have the card for Preseli or Amwythig.

If you want to fix this for now, fix is in line 4475

Code: Select all

title=title.replace(/ $/g,'');


So that section should look like this:

Code: Select all

      if (colourblind=="Y")
         title = title.substring(2);
      if (title.indexOf('&')>-1)
      {
         title = title.replace("&","&");
         title = title.replace("&lt;",/</);
         title = title.replace("&gt;",/>/);
      }
      title=title.replace(/ $/g,'');
              var c = countriesArray[title];



The problem will disappear if you cash that card so it may look like an intermittent problem that mysteriously goes away.

I will post this issue in the Wales thread.
User avatar
MrBenn
Posts: 6880
Joined: Wed Nov 21, 2007 9:32 am
Location: Off Duty

Re: BOB Bugs

Post by MrBenn »

chipv wrote:I will post this issue in the Wales thread.

I've updated the XML for Wales, and whenever lack uploads it this issue should be fixed.

I've been getting this error, which I had assumed was the bug people were initially referring to:
MrBenn wrote:What does this error message mean?
[Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: file:///C:/Documents%20and%20Settings/Ben/Application%20Data/Mozilla/Firefox/Profiles/0l57fvpg.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js :: getFullLog :: line 3446" data: no]

I'm still getting this (or something very similar) on a variety of maps... the ones I've made a note of so far are Wales, Charleston, Scotland, Great Lakes, Forbidden City... (and I'm sure there are others)... I'm beginning to wonder if it's something to do with lacks new hosting site - I've noticed that some map images can take a while to appear sometimes too... :?
Image
PB: 2661 | He's blue... If he were green he would die | No mod would be stupid enough to do that
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

chipv wrote:I've fixed the problem on the Wales map.

It's not strictly speaking BOB's fault.

There is a trailing space in the Wales map xml on the territory Preseli or Amwythig.
This cause BOB to hang when it tries to do an exact match when doing the cards hover handlers.

You will see this problem of BOB hanging indefinitely if you have the card for Preseli or Amwythig.

If you want to fix this for now, fix is in line 4475

Code: Select all

title=title.replace(/ $/g,'');


So that section should look like this:

Code: Select all

      if (colourblind=="Y")
         title = title.substring(2);
      if (title.indexOf('&')>-1)
      {
         title = title.replace("&amp;","&");
         title = title.replace("&lt;",/</);
         title = title.replace("&gt;",/>/);
      }
      title=title.replace(/ $/g,'');
              var c = countriesArray[title];



The problem will disappear if you cash that card so it may look like an intermittent problem that mysteriously goes away.

I will post this issue in the Wales thread.


Great work Chip - but wouldn't a trim be better rather than removal of all spaces?

If you;re not careful removing spaces *could* ununiqueify a name.

C.
Image
Highest score : 2297
User avatar
MrBenn
Posts: 6880
Joined: Wed Nov 21, 2007 9:32 am
Location: Off Duty

Re: BOB Bugs

Post by MrBenn »

MrBenn wrote:I've been getting this error, which I had assumed was the bug people were initially referring to:
MrBenn wrote:What does this error message mean?
[Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: file:///C:/Documents%20and%20Settings/Ben/Application%20Data/Mozilla/Firefox/Profiles/0l57fvpg.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js :: getFullLog :: line 3446" data: no]

I'm still getting this (or something very similar) on a variety of maps... the ones I've made a note of so far are Wales, Charleston, Scotland, Great Lakes, Forbidden City... (and I'm sure there are others)... I'm beginning to wonder if it's something to do with lacks new hosting site - I've noticed that some map images can take a while to appear sometimes too... :?

Add Iceland to the list :?
Image
PB: 2661 | He's blue... If he were green he would die | No mod would be stupid enough to do that
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

Sounds dubious Benn - does it happen *every* time - or just the odd time?

C.
Image
Highest score : 2297
FatUglyJo
Posts: 1
Joined: Thu Jul 17, 2008 7:23 am
Location: Tel Aviv, Israel

Re: BOB Bugs

Post by FatUglyJo »

Hi,
I got the "creating statistics table" problem that was mentioned here, and I managed to solve it by turning off another (unrelated) scripted that I had turned on. For anyone else with the same problem I suggest to try and turn off all other scripts but BOB (in my case it was "videoembed")
HTH.
iambligh
Posts: 144
Joined: Thu Jul 17, 2008 7:15 pm

Re: BOB Bugs

Post by iambligh »

Hi, I'm not sure if this has been touched on yet. Also, I'm not sure if this is exclusively a BOB bug or possibly clickables too, but here it is:

When I roll over the screen toward the bottom with HUD turned on, HUD will jump up to sort of "block" me from clicking. Another such bug occurs sometimes following a roll -- the dice will show up over the map and "block" again. Any way to keep it from "jumping"?
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

iambligh wrote:Hi, I'm not sure if this has been touched on yet. Also, I'm not sure if this is exclusively a BOB bug or possibly clickables too, but here it is:

When I roll over the screen toward the bottom with HUD turned on, HUD will jump up to sort of "block" me from clicking. Another such bug occurs sometimes following a roll -- the dice will show up over the map and "block" again. Any way to keep it from "jumping"?


Sadly not - I know it can be a bit annoying - but you get used to it.

C.
Image
Highest score : 2297
iambligh
Posts: 144
Joined: Thu Jul 17, 2008 7:15 pm

Re: BOB Bugs

Post by iambligh »

It's a shame there can't be a script to fix it because, i don't know, 1000+ games and I'm still not used to it...

Either way BOB is great overall; keep up the gw!
User avatar
clapper011
Posts: 7208
Joined: Mon Feb 20, 2006 10:25 am
Gender: Female
Location: Ontario, Canada

Re: BOB Bugs

Post by clapper011 »

not sure but..my gm/bob/clickies stopped working... just all of a sudden...just as if I have none of them installed yet all are on... :?
nvm.... had to uninstall everything and reinstall...
User avatar
STDADDIO
Posts: 46
Joined: Mon Nov 24, 2008 1:56 pm
Gender: Male
Location: Where it is wet and wild

Re: BOB Bugs

Post by STDADDIO »

i just installed BOB on MODZ but it will not allow me to deploy or continue a begun turn. I have had to use MSN which is slow. What do i need to do to fix?
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

STDADDIO wrote:i just installed BOB on MODZ but it will not allow me to deploy or continue a begun turn. I have had to use MSN which is slow. What do i need to do to fix?


What's 'MODZ'?

C.
Image
Highest score : 2297
galix
Posts: 53
Joined: Thu Aug 21, 2008 12:23 pm
Gender: Male
Location: Fort Lauderdale, Fl.

Re: BOB Bugs

Post by galix »

Having problem downloading AJAX BOB - I keep getting error message:

LINE 853 CHAR 3 OBJECT EXPECTED - MICROSOFT JSCRIPT RUNTIME ERROR

Pls advise

Tks

Galix
User avatar
yeti_c
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am
Gender: Male

Re: BOB Bugs

Post by yeti_c »

galix wrote:Having problem downloading AJAX BOB - I keep getting error message:

LINE 853 CHAR 3 OBJECT EXPECTED - MICROSOFT JSCRIPT RUNTIME ERROR

Pls advise

Tks

Galix


Don't use IE - it only works in Firefox.

C.
Image
Highest score : 2297
Ogrecrusher
Posts: 250
Joined: Thu Aug 16, 2007 2:55 pm

Re: BOB Bugs

Post by Ogrecrusher »

No idea what's gone wrong here. I've used BOB for a long time on this computer, but it seems to have just disappeared from the greasemonkey list. I try to reinstall it and the site tells me "Script could not be installed TypeError: item is null"
Any ideas?!
Locked

Return to “Tool Archives”