Moderator: Tech Team
This is not a feature of BOB, but a separate script: CC Private Message Team. I will merge this with the appropriate topic where the problem has already been noted.dyrtydog wrote:this appears to be gone...what gives?
I am merging your post with the script's topic where this has been noted. Watch for further info there.codierose wrote:Operating System: 7
Browser: foxy
Scripts/third party programs used: pm team mates
Concise description:
pm team mates script no longer working
http://userscripts.org/scripts/show/120340
I like this wordender516 wrote:temporarily
Here's what I did.chapcrap wrote:This is messed up with the new 12 player update. I'm in a 12 player triples game and it put the wrong team mates into the message. I'm on team 3 and it used players from team 2.
After:for(var i = 1; i <= 8; i++){
Line 101:for(var i = 1; i <= 12; i++){
After:if( teamsize == 2 ){ //handle doubles
startindex = (Math.floor(myindex / 2) * 2);
}
else { //handle tripples and quads
startindex = myindex < teamsize ? 0 : teamsize;
}
That works for me.startindex = (Math.floor(myindex / teamsize) * teamsize);
After:for(var i = 1; i <= 8; i++){
Line 101:for(var i = 1; i <= 12; i++){
After:if( teamsize == 2 ){ //handle doubles
startindex = (Math.floor(myindex / 2) * 2);
}
else { //handle tripples and quads
startindex = myindex < teamsize ? 0 : teamsize;
}
That works for me.startindex = myindex < teamsize ? 0 : (Math.floor(myindex / teamsize) * teamsize);

Thanks Foxglove... much appreciated!Foxglove wrote:Hey guys -
I just uploaded a working version of this script: http://userscripts.org/scripts/source/185265.user.js
And thank you once again! =) This also fixes my problem (a problem my clan mates don't have, and I don't know why I did) and now it works.Foxglove wrote:Hey guys -
I just uploaded a working version of this script: http://userscripts.org/scripts/source/185265.user.js

Thanks Foxglove, it's much appreciated.Foxglove wrote:Hey guys -
I just uploaded a working version of this script: http://userscripts.org/scripts/source/185265.user.js
That would actually be awesome so that you could still look at the map while you type.Seamus76 wrote:Thanks Foxglove, it's much appreciated.Foxglove wrote:Hey guys -
I just uploaded a working version of this script: http://userscripts.org/scripts/source/185265.user.js
Now to be a dick, can you make the PM open in a separate window?