User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
RandomBeast
offline
Link
 
right after the first person requested that?
 
mw54finest
offline
Link
 
Originally posted by Dravz
Originally posted by RandomBeast

Yeah, the first down line was introduced by tciss in his replay script. I just modified the z-index so players would run over the top of it.


WHAT! I uninstalled it because players ran under it! When did you update it?


It has been long done.
http://glbscripts.myfreeforum.org/about30.html OR
http://glbscripts.myfreeforum.org/about34.html
 
iain35
offline
Link
 
For the scouting report Script, I installed it, restarted firefox and amde sure it was enabled. But I can't see where it is at.
 
Kwill-bot
offline
Link
 
How about a script that labels your team forum links with the name of your player(s) on that team? I have a number of players on different teams and it can get confusing.
 
Festus
offline
Link
 
Is there a script for what type of plays the defense performed? Zone? Man? Nickel? Dime? Blitz? Etc?
 
RandomBeast
offline
Link
 
Originally posted by Festus
Is there a script for what type of plays the defense performed? Zone? Man? Nickel? Dime? Blitz? Etc?


No. This information isn't included in any play description, so you'll have to just watch the replays to learn this.
 
OSUDD
offline
Link
 
Is there a comprehensive list of all of these scripts somewhere?
 
mw54finest
offline
Link
 
Originally posted by OSUDD
Is there a comprehensive list of all of these scripts somewhere?


Try the first page. 1st post or 2nd.
 
Dudeamis
offline
Link
 
okay I'm trying to create a script that allows me to access any image off the web and use it as a replay avatar depending on the player's id. However the second else if seems to end the script without loading the picture. Why? What am I doing wrong?

// ==UserScript==

// @name individual avatars

// @namespace Dudeamis Griff

// @description individual animated gifs for every player

// @include http://goallineblitz.com/game/replay.pl?pbp_id=*

// ==/UserScript==


window.setTimeout( function()
{



var allDivs, thisDiv, id;
allDivs = document.evaluate(
"//*[@class='player_icon']", //FIND THOSE PLAYERS
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allDivs.snapshotLength; i++)
{



thisDiv = allDivs.snapshotItem(i);


id = thisDiv.id; //WHERE DA ID AT

if (id=='ball')
{thisDiv.innerHTML = '<img src="http://goallineblitz.com/images/ball.gif">';}

else if (id == 'ds') //fixes conflict with first down marker script
{}

else if (id == '161879') //Dylan Griffiths
{thisDiv.innerHTML = '<img src="http://i184.photobucket.com/albums/x276/dudeamis/backtest.png'">';}

else
thisDiv.innerHTML = '<img src="http://goallineblitz.com/game/player_pic.pl?player_id=' + id + '"width=12 height=12>';

}
 
RandomBeast
offline
Link
 
I think you need an opening bracket for your last else.
 
RandomBeast
offline
Link
 
New Script: Player Notes

script: http://userscripts.org/scripts/show/29856
forum: http://glbscripts.myfreeforum.org/sutra388.php#388

This will add a text box on all player profile pages. It will let you store a note for that player that will always show up when viewing that particular player's page.

Useful for tracking training plans, build guides, scouting reports, etc.
 
Dudeamis
offline
Link
 
wow awesome!

is that Bob Sapp?
Last edited Jul 9, 2008 13:41:20
 
RandomBeast
offline
Link
 
yup
 
DaRealest
offline
Link
 
Originally posted by RandomBeast
New Script: Player Notes

script: http://userscripts.org/scripts/show/29856
forum: http://glbscripts.myfreeforum.org/sutra388.php#388

This will add a text box on all player profile pages. It will let you store a note for that player that will always show up when viewing that particular player's page.

Useful for tracking training plans, build guides, scouting reports, etc.


Nice! I'll try it now. Is it similar to Internote? I was using that, which is very nice, but it doesn't work with FF and was causing some stuff to go wrong with GM.
 
Dudeamis
offline
Link
 
else
{thisDiv.innerHTML = '<img src="http://goallineblitz.com/game/player_pic.pl?player_id=' + id + '"width=12 height=12>';}

so I did that... and nothin'
 
Page:
 


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