User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
JuggaloXtreme
offline
Link
 
Is there a script where I can hid the FFA from the forum list?
 
Link
 
Originally posted by superpunk
Can someone please tell me what is wrong with this script for watching my player as a red dot?

Originally posted by

// ==UserScript==
// @name Mikey Bjornson
// @namespace GLB
// @description Custom Icon
// @include http://goallineblitz.com/game/replay.pl?pbp_id=*
// ==/UserScript==
window.setTimeout( function()
{
if(document.getElementById('87797')){
document.getElementById('87797').innerHTML = '<img src="http://img529.imageshack.us/img529/2025/redcircleci8.png">';
}
}
)


it's driving me crazy.


I believe the issue has to do with your use of window.setTimeout, your code should look like this:


var timeout = 0;

window.setTimeout( function() {
if(document.getElementById('188692')){
document.getElementById('188692').innerHTML = '<img src="http://img529.imageshack.us/img529/2025/redcircleci8.png">';
}
},timeout);

I made a test script and it worked perfectly for me using the code I posted above, you can replace "timeout" with a number, I just prefer using a variable.
Last edited Aug 7, 2008 06:31:00
 
bondsclemente
offline
Link
 
Any way to make a script so when you are in the league leaders page it shows the position beside the name?
 
ImTheCrew
offline
Link
 
Originally posted by bondsclemente
Any way to make a script so when you are in the league leaders page it shows the position beside the name?


http://userscripts.org/scripts/show/30163
 
Nixx
offline
Link
 
Originally posted by ImTheCrew
Originally posted by bondsclemente

Any way to make a script so when you are in the league leaders page it shows the position beside the name?


http://userscripts.org/scripts/show/30163


That's only for team leaders, not league leaders. Fairly useless for me, since I know the position of players on my team. Looks like adding it to the league leaders page will have to be done by Bort.
 
Link
 
Originally posted by mdkaden
Originally posted by photofinishron

Someone tell me if this is possible. I'm not a script writer so I need someone to take on this as a project. I'd like a script that will give me an average of the last five games of any team for outputting the ratio of runs to passes, the average of inside to outside passes and the average of short medium and long passes.

Possible?


Seems like you could do this using the game scout script and some simple math. You can scout multiple games and then divide some of the totals to get your desired numbers.


Yeah, I do it this way and I know the mathematics of how to do it by hand but it would be nice to have a script to simplify the process.
 
buymearing
offline
Link
 
the page to the scripts themselves seems to be down. userscrips getting page cannot be found error. been trying for 2 hours now. is this temporary and is there a backup page to access scripts ?
 
pabst
offline
Link
 
Originally posted by Nixx
Originally posted by ImTheCrew

Originally posted by bondsclemente


Any way to make a script so when you are in the league leaders page it shows the position beside the name?


http://userscripts.org/scripts/show/30163


That's only for team leaders, not league leaders. Fairly useless for me, since I know the position of players on my team. Looks like adding it to the league leaders page will have to be done by Bort.


The position might be useless. But having the entire team listed in every chart annoyed the hell out of me, and this fixes it.
 
pabst
offline
Link
 
Originally posted by buymearing
the page to the scripts themselves seems to be down. userscrips getting page cannot be found error. been trying for 2 hours now. is this temporary and is there a backup page to access scripts ?


Strange. No problem here.
 
buymearing
offline
Link
 
just tried it again. i go to the main script page and click on any link to a script going to userscript.org and get network timeout now.
 
Nixx
offline
Link
 
Originally posted by buymearing
i go to the main script page and click on any link to a script going to userscript.org and get network timeout now.


Works here. Try this: http://downforeveryoneorjustme.com/
 
markhehe
offline
Link
 
i've lost the attribute totals on the player pages. is there a fix? i scrolled thru a lot of pages, but didnt see it mentioned. thx
 
Nixx
offline
Link
 
Originally posted by markhehe
i've lost the attribute totals on the player pages. is there a fix?


Must be something on your end, because it still works for me. Did you accidentally disable Greasemonkey, maybe?

 
markhehe
offline
Link
 
Originally posted by Nixx
Originally posted by markhehe

i've lost the attribute totals on the player pages. is there a fix?


Must be something on your end, because it still works for me. Did you accidentally disable Greasemonkey, maybe?



nope...lol. lost the highlight player script too. but all my others are working. guess ill find it and install again.
 
markhehe
offline
Link
 
http://goallineblitz.com/game/player.pl?player_id=*
here's the script i have for it
 
Page:
 


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