Moderator: Tech Team
dyrtydog wrote:this appears to be gone...what gives?
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
ender516 wrote:temporarily
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.
for(var i = 1; i <= 8; i++){
for(var i = 1; i <= 12; i++){
if( teamsize == 2 ){ //handle doubles
startindex = (Math.floor(myindex / 2) * 2);
}
else { //handle tripples and quads
startindex = myindex < teamsize ? 0 : teamsize;
}
startindex = (Math.floor(myindex / teamsize) * teamsize);
for(var i = 1; i <= 8; i++){
for(var i = 1; i <= 12; i++){
if( teamsize == 2 ){ //handle doubles
startindex = (Math.floor(myindex / 2) * 2);
}
else { //handle tripples and quads
startindex = myindex < teamsize ? 0 : teamsize;
}
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?