User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
Nixx
offline
Link
 
Originally posted by Vegas_Bronco
Anyone have the scouting bar script - puts numbers on the scouting report bars for each player?


http://www.glbwiki.com/index.php?title=Scouting_Report_Numbers
 
WolfbattXIX
offline
Link
 
Am I doing something wrong?

For some reason when I try to log in using Firefox it wont let me.

It just keeps saying my session has been timed out.
 
Nixx
offline
Link
 
Originally posted by WolfbattXIX
For some reason when I try to log in using Firefox it wont let me.

It just keeps saying my session has been timed out.


CTRL SHIFT DELETE

Select cookies and cache, and clear them. That should fix it. If it doesn't make sure you are set to accept cookies.
 
WolfbattXIX
offline
Link
 
It isnt doing anything.

I have tried to clear the cookies through the control panel as well.

NADA

Widows Vista ROCKS!!!

Piece of shit.
 
dzer13
offline
Link
 
i cant seem to find the script for team stat league rankings on your team homepage. anyone have it handy?
 
dzer13
offline
Link
 
i had that problem too. i just uninstalled ff and reinstalled it and do not take any history from int explorer and dont save you login for glb. havnt had a problem since
 
ee1409
offline
Link
 
Honestly I don't want to go through 197 pages. Is there any scripts that any of you would suggest for someone just starting as a GM? Any help would be greatly appreciated.
 
Dantae
offline
Link
 
Originally posted by dzer13
i cant seem to find the script for team stat league rankings on your team homepage. anyone have it handy?


http://userscripts.org/scripts/show/35127
 
pabst
offline
Link
 
Originally posted by steelerfan11
Honestly I don't want to go through 197 pages. Is there any scripts that any of you would suggest for someone just starting as a GM? Any help would be greatly appreciated.


Check the wiki for a pretty much complete list of scripts. These are a good start.

http://www.glbwiki.com/index.php?title=Expand_Tactics_AI_Text_Boxes
http://userscripts.org/scripts/show/35127
http://userscripts.org/scripts/show/35451
http://userscripts.org/scripts/show/34975
http://userscripts.org/scripts/show/28938
http://userscripts.org/scripts/show/33496
http://userscripts.org/scripts/show/33921
http://www.fantasymvp.net/glb-expiration.user.js

 
oten638
offline
Link
 
league ranking script...How is the defense being calculated? Yards allowed or points???
 
Dantae
offline
Link
 
total defense is by points alowed
 
Nixx
offline
Link
 
Originally posted by Dantae
total defense is by points alowed


Yeah, I pulled this information out of the script: http://www.glbwiki.com/index.php?title=League_Rankings#Full_Description
 
Link
 
Originally posted by Nixx
Originally posted by Vegas_Bronco

Anyone have the scouting bar script - puts numbers on the scouting report bars for each player?


http://www.glbwiki.com/index.php?title=Scouting_Report_Numbers


This script doesn't work any more. Is there a different version out there somewhere? If so can someone provide me a link?
 
Nixx
offline
Link
 
Originally posted by Slightly Hyphy
Originally posted by Nixx

http://www.glbwiki.com/index.php?title=Scouting_Report_Numbers


This script doesn't work any more. Is there a different version out there somewhere? If so can someone provide me a link?


Still working for me.

Do any of your other scripts work? Maybe it's some other problem with Greasemonkey or Firefox.
 
Link
 
Originally posted by Nixx
Originally posted by Slightly Hyphy

Originally posted by Nixx


http://www.glbwiki.com/index.php?title=Scouting_Report_Numbers


This script doesn't work any more. Is there a different version out there somewhere? If so can someone provide me a link?


Still working for me.

Do any of your other scripts work? Maybe it's some other problem with Greasemonkey or Firefox.


I get this message, when I try to install the script:

// ==UserScript==

// @name Scouting Report Numbers

// @namespace http://goallinebliz.com

// @description Adds numbers to the scouting report bars

// @include http://goallineblitz.com/game/player.pl?player_id=*

// ==/UserScript==

window.setTimeout( function()
{


function getElementsByClassName(classname, par)
{
var a=[];
var re = new RegExp('\\b' + classname + '\\b');

var els = par.getElementsByTagName("*");

for(var i=0,j=els.length; i<j; i++)
{
if(re.test(els.className))
{
a.push(els);
}
}


return a;
};

var bars = getElementsByClassName("rating_bar",document);
for(var i=0; i<bars.length; i++)
{
var element = bars.firstChild;
var number = element.style.width;
element.innerHTML = parseInt(element.style.width,10);
}
}, 100);
 
Page:
 


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