User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
Gazeruth
offline
Link
 
Originally posted by Wrath Of Conor
Originally posted by Gazeruth

Hey all, firstly kudos to the guys writing these scripts, they're brilliant!

Anyone know how difficult it would be to make a script to display the current score on the Replay pages?

I like to watch the games play-by-play but watching the replays.. but I kinda lose track of the score at time.. would it be possible to do?

Cheers again all!


That's what post-it notes are for! Just write it down. Just kidding. I'm the same way and I think it was brought up very early on in the thread. There was one script that gave you a score update when you're watching the "Watch" play by play populate, but as far as getting a score on the dot play by play screens it hasn't been done yet that I know of, but it would be nice I agree.


Lol, I'll whip the abacus out and use that!

I've tried the one for the PbP only.. and it's good, I was just wondering how difficult it'd be to make one.. suppose I could try tinkering.. :S
 
scarletmbb
offline
Link
 
Updated the front page. If there are any that I've missed, let me know
 
Serenity
offline
Link
 
Originally posted by Forest21

3. "Highlight Attributes" - Highlights the major and minor attributes of a player for a specific build. Example - http://img155.imageshack.us/my.php?image=buildguideexamplejz4.png


I know this is a bit late
But I like the kicker example for this one
 
JeffSteele
offline
Link
 
i dont know if the "Sort Players" script works for XP. Mine's putting a lvl 13 with 79 residual XP ahead of a lvl 13 with 308 XP.

you can get all the specifics from my player page, and if you need to play around with my page as a test case, just ask a mod or something, you've got my permission.
 
DaRealest
offline
Link
 
It works for XP. I've used it on Mac OS X, XP and Vista. What browser are you using?
 
Serenity
offline
Link
 
How do you edit the friends list?
 
burlysmurf
offline
Link
 
Originally posted by Serenity
How do you edit the friends list?


You have to edit the settings w/notepad or a similar program. Just use the standard template and swap out user IDs and what name you would listed.

The first page of this thread also has a little description.
 
Todo88
offline
Link
 
I just love these scripts. I am able to make INSANELY accurate and informative scouting reports that are about 8 pages long in Word. Thanks for all of these scripts. They are really helping our team out.

- Todo88, MMJ, SE Asia AA#2
 
Link
 
Originally posted by Serenity
How do you edit the friends list?


i believe that in the second post of this thread is a quote of the post that i made showing how to edit it
 
Dravz
offline
Link
 
Originally posted by Todo88
I just love these scripts. I am able to make INSANELY accurate and informative scouting reports that are about 8 pages long in Word. Thanks for all of these scripts. They are really helping our team out.


What script(s) are you using for scouting?
 
jordan274
offline
Link
 
Originally posted by Dravz
Originally posted by Todo88

I just love these scripts. I am able to make INSANELY accurate and informative scouting reports that are about 8 pages long in Word. Thanks for all of these scripts. They are really helping our team out.


What script(s) are you using for scouting?


was wondering the same thing, and how you are using them? lol
 
uberbad
offline
Link
 
Originally posted by Todo88
I just love these scripts. I am able to make INSANELY accurate and informative scouting reports that are about 8 pages long in Word. Thanks for all of these scripts. They are really helping our team out.

- Todo88, MMJ, SE Asia AA#2


Screenshot or it didn't happen...
 
Dravz
offline
Link
 
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.
 
sants
offline
Link
 
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.
Last edited Jun 13, 2008 17:55:44
 
Todo88
offline
Link
 
Originally posted by Dravz
Originally posted by Todo88

I just love these scripts. I am able to make INSANELY accurate and informative scouting reports that are about 8 pages long in Word. Thanks for all of these scripts. They are really helping our team out.


What script(s) are you using for scouting?


I am using Forest21's numbers on his scouting bar.
http://userscripts.org/scripts/show/27696
I have been able to make an 8 page skeleton scouting report for my games. If you are interested in seeing my scouting report, just send me a PM and I will send it to you. (It is really long though, bear in mind.)

As far as the script goes though, it just gives me the numbers, I have to do everything else by hand.
 
Page:
 


You are not logged in. Please log in if you want to post a reply.