Conquer Club

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.

Re: BOB Bugs

Postby csh1979 on Thu Aug 14, 2008 4:07 pm

how come it only happens on fog of war games?
User avatar
Major csh1979
 
Posts: 73
Joined: Fri Nov 16, 2007 4:57 pm
Location: georgia

Re: BOB Bugs

Postby yowzer14 on Fri Aug 15, 2008 2:16 pm

csh1979 wrote:how come it only happens on fog of war games?


Because the formula that counts the territories and parses for the word "for" only occurs under the condition of it being a fog game.
Private 1st Class yowzer14
 
Posts: 196
Joined: Sun Dec 24, 2006 10:20 pm
Location: Windsor, Ontario, Canada

Re: BOB Bugs

Postby Killakazooma on Sun Aug 17, 2008 5:48 am

greasemonkey and BOB dont seem to work with the newest updat of firefox - 3.01
Corporal 1st Class Killakazooma
 
Posts: 124
Joined: Sat Mar 08, 2008 5:29 am
Location: London - Best place in the world

Re: BOB Bugs

Postby lancehoch on Sun Aug 17, 2008 8:01 am

Killak, did you upgrade greasemonkey. The newest version is 0.8.20080609.0
Sergeant lancehoch
 
Posts: 4183
Joined: Wed Dec 05, 2007 4:13 pm

Re: BOB Bugs

Postby Killakazooma on Sun Aug 17, 2008 3:28 pm

It wont let me, it comes up with error 203
Corporal 1st Class Killakazooma
 
Posts: 124
Joined: Sat Mar 08, 2008 5:29 am
Location: London - Best place in the world

Re: notsure if this is cheating

Postby LLLUUUKKKEEE on Mon Aug 18, 2008 12:09 am

yowzer14 wrote:
csh1979 wrote:player = demonfork
saw him play in a few games every game he is in BOB just reads NaN for him and will not give same info as does for other players in same game.
example 2966910
3045769
2986795
2924705
im sure there are more examples but i noticed all freestyle games he plays in it does this. is it a glitch or a cheat or is it considered fair play i which case shouldnt the plug in for that be available to all and made public? and by no means am i accuseing anyone of being a cheat just wanted to bring this to your attention.



This is caused by the player's name. demonfork, contains the word for which Yeti uses to find the armies for....I changed my Bob at line 3271

Code: Select all
NEW         var terrCount = log[i].substring(log[i].indexOf("armies for ")+11,log[i].indexOf("territories")-1);
OLD         var terrCount = log[i].substring(log[i].indexOf("for")+4,log[i].indexOf("territories")-1);

That will fix the NaN appearing because Bob reads the next characters for numbers and instead finds letters...NaN is Not A Number error response.



Same here, but im playing against Aforeal

How can I fix it?
It's your turn...................................
User avatar
Sergeant LLLUUUKKKEEE
 
Posts: 791
Joined: Wed Dec 27, 2006 12:07 am
Location: Trying to stay out of Join a Tournament forum

Re: notsure if this is cheating

Postby yowzer14 on Mon Aug 18, 2008 11:20 am

LLLUUUKKKEEE wrote:
yowzer14 wrote:
csh1979 wrote:player = demonfork
saw him play in a few games every game he is in BOB just reads NaN for him and will not give same info as does for other players in same game.
example 2966910
3045769
2986795
2924705
im sure there are more examples but i noticed all freestyle games he plays in it does this. is it a glitch or a cheat or is it considered fair play i which case shouldnt the plug in for that be available to all and made public? and by no means am i accuseing anyone of being a cheat just wanted to bring this to your attention.



This is caused by the player's name. demonfork, contains the word for which Yeti uses to find the armies for....I changed my Bob at line 3271

Code: Select all
NEW         var terrCount = log[i].substring(log[i].indexOf("armies for ")+11,log[i].indexOf("territories")-1);
OLD         var terrCount = log[i].substring(log[i].indexOf("for")+4,log[i].indexOf("territories")-1);

That will fix the NaN appearing because Bob reads the next characters for numbers and instead finds letters...NaN is Not A Number error response.



Same here, but im playing against Aforeal

How can I fix it?


You'll need to edit the BOB code.

-Right click the greasemonkey icon on the status bar.
-Click Manage User Scripts.
-Click Conquer Club - Bob in the list
-Click the Edit button.
-(If this is the first time you are editing a script it will ask for the editor, Notepad is located in C:/Windows/Notepad.exe)
-If you click edit and nothing happens, you'll need to do a couple extra steps to point to the editor.
- ************************************
- * ONLY IF EDIT doesn't bring up the script in the editing program of choice (Or if you want to change the program you use to edit scripts)
- * type about:config in the address bar and press enter.
- * in the filter box below the address bar at the top type greasemonkey
- * then find and right click on ā€œgreasemonkey.editorā€ and click reset
- * the edit button will now work
- ************************************
- Press CTRL-F to find ("for").
- Copy and paste the whole line in the code box of the NEW and replace it over the OLD
NEW
Code: Select all
var terrCount = log[i].substring(log[i].indexOf("armies for ")+11,log[i].indexOf("territories")-1);

OLD
Code: Select all
var terrCount = log[i].substring(log[i].indexOf("for")+4,log[i].indexOf("territories")-1);

- Then save the editted script.
- Refresh any and all tabs that are running BOB

Let me know if you have problems with this.
Private 1st Class yowzer14
 
Posts: 196
Joined: Sun Dec 24, 2006 10:20 pm
Location: Windsor, Ontario, Canada

Re: BOB Bugs

Postby LLLUUUKKKEEE on Tue Aug 19, 2008 5:18 am

Thank You ever so much

I had no idea what I was doing then but your step by step guide led me right through it.

Cheers

Its people like you that make this so enjoyable.
It's your turn...................................
User avatar
Sergeant LLLUUUKKKEEE
 
Posts: 791
Joined: Wed Dec 27, 2006 12:07 am
Location: Trying to stay out of Join a Tournament forum

Re: BOB Bugs

Postby yowzer14 on Tue Aug 19, 2008 9:11 am

LLLUUUKKKEEE wrote:Thank You ever so much

I had no idea what I was doing then but your step by step guide led me right through it.

Cheers

Its people like you that make this so enjoyable.


Glad to hear it worked...
Private 1st Class yowzer14
 
Posts: 196
Joined: Sun Dec 24, 2006 10:20 pm
Location: Windsor, Ontario, Canada

Re: notsure if this is cheating

Postby yeti_c on Tue Aug 19, 2008 10:30 am

yowzer14 wrote:
csh1979 wrote:player = demonfork
saw him play in a few games every game he is in BOB just reads NaN for him and will not give same info as does for other players in same game.
example 2966910
3045769
2986795
2924705
im sure there are more examples but i noticed all freestyle games he plays in it does this. is it a glitch or a cheat or is it considered fair play i which case shouldnt the plug in for that be available to all and made public? and by no means am i accuseing anyone of being a cheat just wanted to bring this to your attention.



This is caused by the player's name. demonfork, contains the word for which Yeti uses to find the armies for....I changed my Bob at line 3271

Code: Select all
NEW         var terrCount = log[i].substring(log[i].indexOf("armies for ")+11,log[i].indexOf("territories")-1);
OLD         var terrCount = log[i].substring(log[i].indexOf("for")+4,log[i].indexOf("territories")-1);

That will fix the NaN appearing because Bob reads the next characters for numbers and instead finds letters...NaN is Not A Number error response.


Yeah - cheers Yowzer... the problem with searching for words is that every now and then - someone comes in with a weird name!!

I'll get this patched and uploaded sometime this week!!

C.
Image
Highest score : 2297
User avatar
Lieutenant yeti_c
 
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am

Ghost unit numbers

Postby gdeangel on Thu Aug 21, 2008 9:15 am

Concise description:
Click image to enlarge.
image

  • This has happened from time to time before, but seems to be happening a lot this morning.

Specifics:
  • Numbers are rendered in two places on the map, inside and outside the unit circles.

This will improve the following aspects of the site:
  • This is a bug.
My ever constant two last games seem to have no end in sight!
User avatar
Sergeant gdeangel
 
Posts: 779
Joined: Mon Jan 14, 2008 11:48 pm
Location: In the Basement

Re: Ghost unit numbers

Postby yeti_c on Thu Aug 21, 2008 9:17 am

gdeangel wrote:Concise description:
Click image to enlarge.
image

  • This has happened from time to time before, but seems to be happening a lot this morning.

Specifics:
  • Numbers are rendered in two places on the map, inside and outside the unit circles.

This will improve the following aspects of the site:
  • This is a bug.


That'll be a BOB problem... however - as no-one else gets this - I suspect it's a problem with your specific install - i.e. you may have 2 - or you may have changed the co-ordinates for that map.

BOB now has the ability to "reset" the map co-ords should you wish to put them back to how they should be.

C.
Image
Highest score : 2297
User avatar
Lieutenant yeti_c
 
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am

Re: Ghost unit numbers

Postby yeti_c on Thu Aug 21, 2008 9:46 am

Actually - I'm wrong... (It IS a BOB issue)

This is due to Lacks latest fix of Tourney games - to have a tourney bar at the top.

viewtopic.php?f=4&t=31231

I'll see if I can run a patch in for this.

C.
Image
Highest score : 2297
User avatar
Lieutenant yeti_c
 
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am

Re: BOB Bugs

Postby hwhrhett on Thu Aug 21, 2008 11:09 am

ok, now i came in this morning, and now in all of my tournament games there is tournament text at the top of the screen, and this misaligns the bob overlay. i realigned it using the options, but figured you should know :-)
Image
User avatar
Cook hwhrhett
 
Posts: 3120
Joined: Fri Jun 02, 2006 8:55 pm
Location: TEXAS --- The Imperial Dragoons

Re: BOB Bugs

Postby Frop on Thu Aug 21, 2008 11:11 am

hwhrhett wrote:ok, now i came in this morning, and now in all of my tournament games there is tournament text at the top of the screen, and this misaligns the bob overlay. i realigned it using the options, but figured you should know :-)

Ah right, so that's it. Didn't put that together yet, on my end it narrowed down to card games on British Isles. :D
User avatar
Captain Frop
 
Posts: 1201
Joined: Thu May 10, 2007 3:02 pm

Re: BOB Bugs

Postby nokelberry on Thu Aug 21, 2008 11:35 am

Hi guys,

This is the first time I've had any trouble with the BOB plugin. Here's my problem. On some maps, the map shows an extra guy in each territory. For example, if there are 4 guys in territory X, then territory X shows two 4's, one on top of the other. I've already tried re-installing BOB and Greasemonkey. This just started yesterday and only only happens on certain maps, i.e., happens on Feudal but not Senate. Any help would be great.

My apologies if this question has already been addressed in an earlier post--but I couldn't find it.

Thanks.
Major nokelberry
 
Posts: 39
Joined: Mon Aug 13, 2007 12:02 pm

Re: BOB Bugs

Postby barterer2002 on Thu Aug 21, 2008 11:44 am

nokelberry wrote:Hi guys,

This is the first time I've had any trouble with the BOB plugin. Here's my problem. On some maps, the map shows an extra guy in each territory. For example, if there are 4 guys in territory X, then territory X shows two 4's, one on top of the other. I've already tried re-installing BOB and Greasemonkey. This just started yesterday and only only happens on certain maps, i.e., happens on Feudal but not Senate. Any help would be great.

My apologies if this question has already been addressed in an earlier post--but I couldn't find it.

Thanks.


It happens in tournament games because of the new label over the top of the map.
Image
Image
User avatar
Sergeant barterer2002
 
Posts: 6311
Joined: Mon Jul 02, 2007 11:51 am

Re: BOB Bugs

Postby nokelberry on Thu Aug 21, 2008 11:48 am

barterer2002 wrote:
nokelberry wrote:Hi guys,

This is the first time I've had any trouble with the BOB plugin. Here's my problem. On some maps, the map shows an extra guy in each territory. For example, if there are 4 guys in territory X, then territory X shows two 4's, one on top of the other. I've already tried re-installing BOB and Greasemonkey. This just started yesterday and only only happens on certain maps, i.e., happens on Feudal but not Senate. Any help would be great.

My apologies if this question has already been addressed in an earlier post--but I couldn't find it.

Thanks.


It happens in tournament games because of the new label over the top of the map.


Is there anyway to avoid the problem?
Major nokelberry
 
Posts: 39
Joined: Mon Aug 13, 2007 12:02 pm

I see army numbers double?! [Fixed]

Postby nikola_milicki on Thu Aug 21, 2008 11:52 am

any1 knows why??
Colonel nikola_milicki
 
Posts: 1015
Joined: Wed Apr 18, 2007 2:17 pm
Location: CROATIA

Re: BOB Bugs

Postby barterer2002 on Thu Aug 21, 2008 11:52 am

I haven't found it yet. I'm thinking about heading over to IE to play cause I can't do it here
Image
Image
User avatar
Sergeant barterer2002
 
Posts: 6311
Joined: Mon Jul 02, 2007 11:51 am

Re: Ghost unit numbers

Postby lokisgal on Thu Aug 21, 2008 12:07 pm

I have it on some maps and not others

Canada so far
Image
User avatar
Lieutenant lokisgal
SoC Training Adviser
 
Posts: 1514
Joined: Sat Mar 17, 2007 8:11 pm
Location: Clowns to the left of me Jokers to the right...
22

Re: Ghost unit numbers

Postby Bones2484 on Thu Aug 21, 2008 12:12 pm

lokisgal wrote:I have it on some maps and not others

Canada so far


Read the thread... it's for tournament games.
User avatar
Major Bones2484
 
Posts: 2307
Joined: Mon Sep 17, 2007 11:24 am
Location: Los Angeles, CA (G1)

Re: BOB Bugs

Postby yowzer14 on Thu Aug 21, 2008 12:13 pm

nokelberry wrote:Hi guys,

This is the first time I've had any trouble with the BOB plugin. Here's my problem. On some maps, the map shows an extra guy in each territory. For example, if there are 4 guys in territory X, then territory X shows two 4's, one on top of the other. I've already tried re-installing BOB and Greasemonkey. This just started yesterday and only only happens on certain maps, i.e., happens on Feudal but not Senate. Any help would be great.

My apologies if this question has already been addressed in an earlier post--but I couldn't find it.

Thanks.


You have tried the Map Options, then the Map Align Top, by repeatedly clicking the Map Align Top, the number will count down to -22px and then wrap around to a +22px. By continuously clicking that you should be able to get the numbers to align vertically. Once you do that BOB will remember that setting for that map. If need be, there is also a Map Align Left that does the same thing just in the horizontal direction.
Private 1st Class yowzer14
 
Posts: 196
Joined: Sun Dec 24, 2006 10:20 pm
Location: Windsor, Ontario, Canada

Re: BOB Bugs

Postby yowzer14 on Thu Aug 21, 2008 12:15 pm

barterer2002 wrote:I haven't found it yet. I'm thinking about heading over to IE to play cause I can't do it here


No need to lower your standards and drop down to IE, a little time reading the help might have led you to the Map align options.
Private 1st Class yowzer14
 
Posts: 196
Joined: Sun Dec 24, 2006 10:20 pm
Location: Windsor, Ontario, Canada

Re: BOB Bugs

Postby Bones2484 on Thu Aug 21, 2008 12:17 pm

nokelberry wrote:Is there anyway to avoid the problem?


Dont play tournament games until Yeti can release a fix?

Or you could do one of the following:
-Set the map align top to 20 px for each map and then reset it for non-tourney games
-Turn off BOB
User avatar
Major Bones2484
 
Posts: 2307
Joined: Mon Sep 17, 2007 11:24 am
Location: Los Angeles, CA (G1)

PreviousNext

Return to Tool Archives

Who is online

Users browsing this forum: No registered users