User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
AD_SoDope
offline
Link
 
someone who has a lot of time on their hands should make a post that with the links to every script...maybe make a new thread if it's alright with the script creators?

nm, 1st post of this thread...
Last edited Jun 28, 2008 16:33:28
 
Sinyen
offline
Link
 
Originally posted by sportstud757
someone who has a lot of time on their hands should make a post that with the links to every script...maybe make a new thread if it's alright with the script creators?

nm, 1st post of this thread...


1st post doesn't quite have them all but has most of them.
 
mw54finest
offline
Link
 
Originally posted by Sinyen

1st post doesn't quite have them all but has most of them.


I think he is talking about the 1st post of this thread.
 
CTGuyton
offline
Link
 
http://glbscripts.myfreeforum.org/index.php is in the 1st post and I'm pretty sure that's what he was referring to by "first post" if not its what he is looking for
 
AD_SoDope
offline
Link
 
Originally posted by mw54finest
Originally posted by Sinyen


1st post doesn't quite have them all but has most of them.


I think he is talking about the 1st post of this thread.

 
Checkmate187
offline
Link
 
This is from a post on the suggestion board....

Originally posted by raki87
Can it be set that if a player has not thrown/caught/ran/returned/tackled/etc that section of stats does not appear. it just clutters a page having every single stat shown, even though 90% of them are 0.



Sounds like it could be done easily. If all stats in one category are zero, simply don't display.
 
Drakau
offline
Link
 
Really sorry to post this long string here, but i'm having trouble with the player highlight

// ==UserScript==
// @name All
// @namespace GLB all
// @description All dots
// @include http://goallineblitz.com/game/replay.pl?pbp_id=*
// ==/UserScript==
window.setTimeout( function()
{
if(document.getElementById('264999')){
document.getElementById('264999').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('397006')){
document.getElementById('397006').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('528839')){
document.getElementById('528839').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('560690')){
document.getElementById('560690').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('598668')){
document.getElementById('598668').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('604984')){
document.getElementById('604984').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('606454')){
document.getElementById('606454').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('621246')){
document.getElementById('621246').style.backgroundColor = 'red';
}
}
)
{
if(document.getElementById('640402')){
document.getElementById('640402').style.backgroundColor = 'red';
}
}
)

what am i doing wrong?
 
Checkmate187
offline
Link
 
Looks like you have extra } in there. Here is what mine looks like....

// ==UserScript==
// @name Player Image Changer for Replays
// @namespace GLB
// @description Updates the background of your existing player icon for replays from transparent to a solid color
// @include http://goallineblitz.com/game/replay.pl?pbp_id=*
// ==/UserScript==


window.setTimeout( function()
{
if(document.getElementById('568680')){
document.getElementById('568680').style.backgroundColor = 'red';
}

if(document.getElementById('602537')){
document.getElementById('602537').style.backgroundColor = 'red';
}

if(document.getElementById('602379')){
document.getElementById('602379').style.backgroundColor = 'red';
}

if(document.getElementById('602620')){
document.getElementById('602620').style.backgroundColor = 'red';
}

if(document.getElementById('630760')){
document.getElementById('630760').style.backgroundColor = 'red';
}

if(document.getElementById('630800')){
document.getElementById('630800').style.backgroundColor = 'red';
}

if(document.getElementById('630828')){
document.getElementById('630828').style.backgroundColor = 'red';
}

if(document.getElementById('637123')){
document.getElementById('637123').style.backgroundColor = 'red';
}

if(document.getElementById('637199')){
document.getElementById('637199').style.backgroundColor = 'red';
}

if(document.getElementById('637093')){
document.getElementById('637093').style.backgroundColor = 'red';
}

if(document.getElementById('637286')){
document.getElementById('637286').style.backgroundColor = 'red';
}

if(document.getElementById('637385')){
document.getElementById('637385').style.backgroundColor = 'red';
}

if(document.getElementById('637431')){
document.getElementById('637431').style.backgroundColor = 'red';
}

if(document.getElementById('637253')){
document.getElementById('637253').style.backgroundColor = 'red';
}

if(document.getElementById('637488')){
document.getElementById('637488').style.backgroundColor = 'red';
}

if(document.getElementById('637323')){
document.getElementById('637323').style.backgroundColor = 'red';
}

}
)
 
mw54finest
offline
Link
 
Originally posted by Drakau

what am i doing wrong?


Check towards the bottom of this post:
http://glbscripts.myfreeforum.org/about11.html
 
Drakau
offline
Link
 
cheers guys, yeah looking at it now I didn't realise i only had to bracket the whole thing, was getting very bracket happy
 
karma99
offline
Link
 
Originally posted by Drakau
cheers guys, yeah looking at it now I didn't realise i only had to bracket the whole thing, was getting very bracket happy


Might be worth grabbing the free prog http://www.flos-freeware.ch/notepad2.html
Does excellent code highlighting and makes it MUCH easier to read
 
Yard Dog
offline
Link
 
Hey guys, I usually do my GLB'ing on my desktop, but I'm going to be out of town for a while and using my laptop. Is there a way to just tranfer my firefox greasemonkey scripts over to my other PC without going through all of them again and downloading each?
 
Drakau
offline
Link
 
C:\Users\*****\AppData\Roaming\Mozilla\Firefox\Profiles\wm5fsktd.default\gm_scripts\

for vista they're all there **** is your username
 
Yard Dog
offline
Link
 
i have XP, I can't seem to locate any of the scripts to transfer them over
 
mw54finest
offline
Link
 
Originally posted by Yard Dog
i have XP, I can't seem to locate any of the scripts to transfer them over


Do a search on "*.js" and see where all your scripts are. Or you and edit a installed script and see where the file is by doing a Save As from you text editor.
 
Page:
 


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