PM me the source. I'll take a look. You'll need to test it though as I don't have that permission anywhere.
RandomBeast
offline
offline
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
Last edited Jun 17, 2008 22:47:21
scarletmbb
offline
offline
Alright, I think I updated all the scripts that are in here...if there are some that I've missed, please PM me with them. Like I said in the post if more come out and I haven't put them up, please PM me. Thanks to everyone who's been writing scripts and coming up with ideas.
Robbnva
offline
offline
ok I have tried to install a couple of these and they don't work,is that because have version 3.0?
Wrath Of Conor
offline
offline
Originally posted by RandomBeast
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
Thanks a lot. I just tested by trying to offer my D leaguer a contract while leaving it on the "-SELECT TEAM-" option. It still appears to the GM that an offer is being made, I got the popup that says "Do you really want to send this offer?" I hit OK and it cycled to my home page, but no offer actually got created. So, this at least prevents the error of sending for the wrong team, but doesn't warn that no contract is being offered.
Would it be possible to add a popup that prompts you "Please select team for offer" and cut off the process? If not no big deal, like i said this prevents the bone headed error and that was the big thing.
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
Thanks a lot. I just tested by trying to offer my D leaguer a contract while leaving it on the "-SELECT TEAM-" option. It still appears to the GM that an offer is being made, I got the popup that says "Do you really want to send this offer?" I hit OK and it cycled to my home page, but no offer actually got created. So, this at least prevents the error of sending for the wrong team, but doesn't warn that no contract is being offered.
Would it be possible to add a popup that prompts you "Please select team for offer" and cut off the process? If not no big deal, like i said this prevents the bone headed error and that was the big thing.
captphan
offline
offline
Just installed some of these. The script that puts the team menu under the team is a phenominal.
Thank You very Much
I may have missed them but is there scripts for favorite forums and or threads. I am using bookmarks now and it is bothersome.
Thank You very Much
I may have missed them but is there scripts for favorite forums and or threads. I am using bookmarks now and it is bothersome.
Last edited Jun 18, 2008 11:07:39
mithril49
offline
offline
Is there a script to make seperate tabs for all the teams my players are on... or at least order them by team. Annnnd (drum roll on dumbness) if there is, how would I install/use it?
TuNice
offline
offline
script to highlight the text in which your players are in, while looking at the play by play list.
serialced
offline
offline
Originally posted by TuNice
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)

sants
offline
offline
Originally posted by serialced
Originally posted by TuNice
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)
i posted this like five pages back, but it's not listed on the main part yet. a couple of people have had problems with it that i'm still trying to figure out.
Originally posted by sants
Originally posted by Dravz
I have an idea for a new script:
When looking at play-by-plays of games, I wish there were a way to highlight plays where your player(s) are mentioned.
On the box score, your guys are highlighted blue, but to find my guys in the pbp I use ctrl-F and search on their name to see the plays they were involved in.
Be nice if the lines were somehow highlighted for faster skimming.
make a new user script, fill out the shit and make it only included in http://goallineblitz.com/game/game.pl?game_id=*&mode=pbp*
----
//leave the crap at the top that will be right here
(function() {
const COLOR_MAP = {
"player name here": {"background": "lightblue"}, //leave the quotation marks in, USE LOWERCASE
"player name here": {"background": "yellow"}, //delete this line if you want only 1 player highlighted, copy it directly below if you want more
};
function highlightText() {
var allTextNodes = document.evaluate('//text()', document, null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allTextNodes.snapshotLength; i++) {
var ele = allTextNodes.snapshotItem(i);
for (var key in COLOR_MAP) {
if (ele.nodeValue.toLowerCase().indexOf(key) != -1) {
var span = document.createElement("span");
ele.parentNode.replaceChild(span, ele);
span.appendChild(ele);
for (var css in COLOR_MAP[key]) {
span.style[css] = COLOR_MAP[key][css];
}
}
}
}
}
highlightText();
})();
---
feel free to delete the line with the 2nd player if you just want one player, or add another line like the others to get more than 2 players. you can change the colors too. i think light blue looks the best
edit: had to change one thing to make it work with the "watch" option.
lemme know if you need help.
for QB's - add 'pass' after your QB's name if you don't want every pitch and handoff showing up.
Originally posted by TuNice
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)

i posted this like five pages back, but it's not listed on the main part yet. a couple of people have had problems with it that i'm still trying to figure out.
Originally posted by sants
Originally posted by Dravz
I have an idea for a new script:
When looking at play-by-plays of games, I wish there were a way to highlight plays where your player(s) are mentioned.
On the box score, your guys are highlighted blue, but to find my guys in the pbp I use ctrl-F and search on their name to see the plays they were involved in.
Be nice if the lines were somehow highlighted for faster skimming.
make a new user script, fill out the shit and make it only included in http://goallineblitz.com/game/game.pl?game_id=*&mode=pbp*
----
//leave the crap at the top that will be right here
(function() {
const COLOR_MAP = {
"player name here": {"background": "lightblue"}, //leave the quotation marks in, USE LOWERCASE
"player name here": {"background": "yellow"}, //delete this line if you want only 1 player highlighted, copy it directly below if you want more
};
function highlightText() {
var allTextNodes = document.evaluate('//text()', document, null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allTextNodes.snapshotLength; i++) {
var ele = allTextNodes.snapshotItem(i);
for (var key in COLOR_MAP) {
if (ele.nodeValue.toLowerCase().indexOf(key) != -1) {
var span = document.createElement("span");
ele.parentNode.replaceChild(span, ele);
span.appendChild(ele);
for (var css in COLOR_MAP[key]) {
span.style[css] = COLOR_MAP[key][css];
}
}
}
}
}
highlightText();
})();
---
feel free to delete the line with the 2nd player if you just want one player, or add another line like the others to get more than 2 players. you can change the colors too. i think light blue looks the best
edit: had to change one thing to make it work with the "watch" option.
lemme know if you need help.
for QB's - add 'pass' after your QB's name if you don't want every pitch and handoff showing up.
Last edited Jun 18, 2008 17:21:59
serialced
offline
offline
Originally posted by sants
Originally posted by serialced
Originally posted by TuNice
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)
i posted this like five pages back, but it's not listed on the main part yet. a couple of people have had problems with it that i'm still trying to figure out.
Originally posted by sants
Originally posted by Dravz
I have an idea for a new script:
When looking at play-by-plays of games, I wish there were a way to highlight plays where your player(s) are mentioned.
On the box score, your guys are highlighted blue, but to find my guys in the pbp I use ctrl-F and search on their name to see the plays they were involved in.
Be nice if the lines were somehow highlighted for faster skimming.
make a new user script, fill out the shit and make it only included in http://goallineblitz.com/game/game.pl?game_id=*&mode=pbp*
----
//leave the crap at the top that will be right here
(function() {
const COLOR_MAP = {
"player name here": {"background": "lightblue"}, //leave the quotation marks in, USE LOWERCASE
"player name here": {"background": "yellow"}, //delete this line if you want only 1 player highlighted, copy it directly below if you want more
};
function highlightText() {
var allTextNodes = document.evaluate('//text()', document, null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allTextNodes.snapshotLength; i++) {
var ele = allTextNodes.snapshotItem(i);
for (var key in COLOR_MAP) {
if (ele.nodeValue.toLowerCase().indexOf(key) != -1) {
var span = document.createElement("span");
ele.parentNode.replaceChild(span, ele);
span.appendChild(ele);
for (var css in COLOR_MAP[key]) {
span.style[css] = COLOR_MAP[key][css];
}
}
}
}
}
highlightText();
})();
---
feel free to delete the line with the 2nd player if you just want one player, or add another line like the others to get more than 2 players. you can change the colors too. i think light blue looks the best
edit: had to change one thing to make it work with the "watch" option.
lemme know if you need help.
for QB's - add 'pass' after your QB's name if you don't want every pitch and handoff showing up.
sorry man, didnt see it
it works perfectly!
thanks a lot for making that one, one of the top scripts imho
Originally posted by serialced
Originally posted by TuNice
script to highlight the text in which your players are in, while looking at the play by play list.
second this!
i dont want the one to check whether im in every play, just highlight my players name in the pbp page if he does anything (i assume thats also what TuNice is asking for)

i posted this like five pages back, but it's not listed on the main part yet. a couple of people have had problems with it that i'm still trying to figure out.
Originally posted by sants
Originally posted by Dravz
I have an idea for a new script:
When looking at play-by-plays of games, I wish there were a way to highlight plays where your player(s) are mentioned.
On the box score, your guys are highlighted blue, but to find my guys in the pbp I use ctrl-F and search on their name to see the plays they were involved in.
Be nice if the lines were somehow highlighted for faster skimming.
make a new user script, fill out the shit and make it only included in http://goallineblitz.com/game/game.pl?game_id=*&mode=pbp*
----
//leave the crap at the top that will be right here
(function() {
const COLOR_MAP = {
"player name here": {"background": "lightblue"}, //leave the quotation marks in, USE LOWERCASE
"player name here": {"background": "yellow"}, //delete this line if you want only 1 player highlighted, copy it directly below if you want more
};
function highlightText() {
var allTextNodes = document.evaluate('//text()', document, null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allTextNodes.snapshotLength; i++) {
var ele = allTextNodes.snapshotItem(i);
for (var key in COLOR_MAP) {
if (ele.nodeValue.toLowerCase().indexOf(key) != -1) {
var span = document.createElement("span");
ele.parentNode.replaceChild(span, ele);
span.appendChild(ele);
for (var css in COLOR_MAP[key]) {
span.style[css] = COLOR_MAP[key][css];
}
}
}
}
}
highlightText();
})();
---
feel free to delete the line with the 2nd player if you just want one player, or add another line like the others to get more than 2 players. you can change the colors too. i think light blue looks the best
edit: had to change one thing to make it work with the "watch" option.
lemme know if you need help.
for QB's - add 'pass' after your QB's name if you don't want every pitch and handoff showing up.
sorry man, didnt see it

it works perfectly!
thanks a lot for making that one, one of the top scripts imho
eaglesfan20
offline
offline
i love these greasemonkey scripts and all, very useful but my problem is the one that i would really like to be able to use i have no idea how to make work and that is the friends list
i would appreciate any help at all as far as what i need to open to be able to edit and then what all needs to be done to edit it
i know enough about computers and all but i dont have any idea how to do this with scripts and all
so if any one can help me out thanks in advance
i would appreciate any help at all as far as what i need to open to be able to edit and then what all needs to be done to edit it
i know enough about computers and all but i dont have any idea how to do this with scripts and all
so if any one can help me out thanks in advance
Yard Dog
offline
offline
Originally posted by RandomBeast
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
dang, why didn't i have this 2 days ago? Scarlet, you know what i'm talking bout.
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
dang, why didn't i have this 2 days ago? Scarlet, you know what i'm talking bout.
Wrath Of Conor
offline
offline
Originally posted by Yard Dog
Originally posted by RandomBeast
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
dang, why didn't i have this 2 days ago? Scarlet, you know what i'm talking bout.
I feel your pain...
Originally posted by RandomBeast
Here's the script to clear the default team from the "Make Offer" page
http://userscripts.org/scripts/show/28644
Thanks to manic and Wrath of Conor for their assistance.
dang, why didn't i have this 2 days ago? Scarlet, you know what i'm talking bout.
I feel your pain...
You are not logged in. Please log in if you want to post a reply.





























