Anyone able to point me in the direction of a script that highlights position atrributes for a FS. I have downloaded a few different scripts but none display highlights for a FS. I skimmed through about 50 pages of the thread and decided id just ask lol...
mw54finest
offline
offline
Originally posted by Anebriated
Anyone able to point me in the direction of a script that highlights position atrributes for a FS. I have downloaded a few different scripts but none display highlights for a FS. I skimmed through about 50 pages of the thread and decided id just ask lol...
http://glbscripts.myfreeforum.org/about109.html
3rd one on the list is supposedly fixed version for FS. I can't verify since I don't have FS.
Anyone able to point me in the direction of a script that highlights position atrributes for a FS. I have downloaded a few different scripts but none display highlights for a FS. I skimmed through about 50 pages of the thread and decided id just ask lol...
http://glbscripts.myfreeforum.org/about109.html
3rd one on the list is supposedly fixed version for FS. I can't verify since I don't have FS.
cbs48
offline
offline
Is there a script that shows the positions on the league and conference leaders pages?
Nixx
offline
offline
Originally posted by cbs48
Is there a script that shows the positions on the league and conference leaders pages?
Pretty sure that one isn't possible because it causes too many hits on the server.
Is there a script that shows the positions on the league and conference leaders pages?
Pretty sure that one isn't possible because it causes too many hits on the server.
Dantae
offline
offline
Originally posted by Nixx
Originally posted by cbs48
Is there a script that shows the positions on the league and conference leaders pages?
Pretty sure that one isn't possible because it causes too many hits on the server.
not really, you just have to be creative about grabbing the data. First question is do the league leaders update during the nightly training or is it instant after each game?
just build the script to grab the leader stats, store all the info by combining the string for the playerid and stat(ie. GM_setValue('99999_rushing', number), with a GM_setValue. just do a count untill you hit the player and store that number. Then build a check to only allow you to grab the stats once a day. That would limit the server hit to one yet keeping the data localy on your computer. I built a manual grab button for the energy level on depth chart script I made yesterday.
build stat as an array with all names of leaderboard items.
recall the data with something like a
do{
if(GM_setValue(playerid + stat[n]){
insert the number by the player if he is on the leaderboard.
}
n++
while(stat[n])
or something like that. maybe a mouse over event that displays the info.
Originally posted by cbs48
Is there a script that shows the positions on the league and conference leaders pages?
Pretty sure that one isn't possible because it causes too many hits on the server.
not really, you just have to be creative about grabbing the data. First question is do the league leaders update during the nightly training or is it instant after each game?
just build the script to grab the leader stats, store all the info by combining the string for the playerid and stat(ie. GM_setValue('99999_rushing', number), with a GM_setValue. just do a count untill you hit the player and store that number. Then build a check to only allow you to grab the stats once a day. That would limit the server hit to one yet keeping the data localy on your computer. I built a manual grab button for the energy level on depth chart script I made yesterday.
build stat as an array with all names of leaderboard items.
recall the data with something like a
do{
if(GM_setValue(playerid + stat[n]){
insert the number by the player if he is on the leaderboard.
}
n++
while(stat[n])
or something like that. maybe a mouse over event that displays the info.
Last edited Aug 30, 2008 16:40:46
pabst
offline
offline
Originally posted by Dantae
not really, you just have to be creative about grabbing the data. First question is do the league leaders update during the nightly training or is it instant after each game?
just build the script to grab the leader stats, store all the info by combining the string for the playerid and stat(ie. GM_setValue('99999_rushing', number), with a GM_setValue. just do a count untill you hit the player and store that number. Then build a check to only allow you to grab the stats once a day. That would limit the server hit to one yet keeping the data localy on your computer. I built a manual grab button for the energy level on depth chart script I made yesterday.
The problem was never really that it's impossible. It's always been possible this way. But, a full league leader screen holds roughly 110 different names depending on the league (yes, I counted). Conference leaders will add a few more names which couldn't make it onto the league list in case you happen to look at both. Do you really want 150'ish different greasemonkey variables stored in your browser? Lord help you if you have players in multiple leagues because you'll need another set for each league. Then you still have to deal with deleting all the old names which fell off the lists. Will it work? Absolutely. But it's a bit ridiculous to be honest. If anyone out there really want to do this, do yourself a favor: store the id's by league and save only an id and team abbreviation. That way, you can get around the deletion problem and you won't have quite so many variables.
Anyways, I can guarantee you Bort isn't writing the html for the league leaders by hand. This stuff is being generated automatically somewhere, and I'd find it hard to believe that accomplishing this would require anything but a minor edit of that script. As far as I'm concerned, this is too trivial for Bort to do for us to bother. For the record, when I get tired of waiting for it I'll write the script, 32 page loads or not.
How the leaders page was designed without the team showing is mind-boggling to me.
not really, you just have to be creative about grabbing the data. First question is do the league leaders update during the nightly training or is it instant after each game?
just build the script to grab the leader stats, store all the info by combining the string for the playerid and stat(ie. GM_setValue('99999_rushing', number), with a GM_setValue. just do a count untill you hit the player and store that number. Then build a check to only allow you to grab the stats once a day. That would limit the server hit to one yet keeping the data localy on your computer. I built a manual grab button for the energy level on depth chart script I made yesterday.
The problem was never really that it's impossible. It's always been possible this way. But, a full league leader screen holds roughly 110 different names depending on the league (yes, I counted). Conference leaders will add a few more names which couldn't make it onto the league list in case you happen to look at both. Do you really want 150'ish different greasemonkey variables stored in your browser? Lord help you if you have players in multiple leagues because you'll need another set for each league. Then you still have to deal with deleting all the old names which fell off the lists. Will it work? Absolutely. But it's a bit ridiculous to be honest. If anyone out there really want to do this, do yourself a favor: store the id's by league and save only an id and team abbreviation. That way, you can get around the deletion problem and you won't have quite so many variables.
Anyways, I can guarantee you Bort isn't writing the html for the league leaders by hand. This stuff is being generated automatically somewhere, and I'd find it hard to believe that accomplishing this would require anything but a minor edit of that script. As far as I'm concerned, this is too trivial for Bort to do for us to bother. For the record, when I get tired of waiting for it I'll write the script, 32 page loads or not.
How the leaders page was designed without the team showing is mind-boggling to me.
mw54finest
offline
offline
Would someone like to create a private Greasemonkey forum? 
http://goallineblitz.com/game/forum_private.pl

http://goallineblitz.com/game/forum_private.pl
DaRealest
offline
offline
Originally posted by mw54finest
Would someone like to create a private Greasemonkey forum?
http://goallineblitz.com/game/forum_private.pl
Done.
Would someone like to create a private Greasemonkey forum?

http://goallineblitz.com/game/forum_private.pl
Done.

mw54finest
offline
offline
Originally posted by DaRealest
Originally posted by mw54finest
Would someone like to create a private Greasemonkey forum?
http://goallineblitz.com/game/forum_private.pl
Done.
Yay! Everyone that is interested in developing or already developed a script should contact DaRealest for an invite. (If he hasn't invited you already)
Originally posted by mw54finest
Would someone like to create a private Greasemonkey forum?

http://goallineblitz.com/game/forum_private.pl
Done.

Yay! Everyone that is interested in developing or already developed a script should contact DaRealest for an invite. (If he hasn't invited you already)
Colin Mochrie
offline
offline
For the replay rewrite, is there a way to shorten the time delay between each play, when using autoplay?
DaRealest
offline
offline
Originally posted by Usama
For the replay rewrite, is there a way to shorten the time delay between each play, when using autoplay?
I think you have to change the following:
setTimeout ("window.location.href = '" + Buttons[ i ].firstChild.href + "';",7000);
to say 3000, which will change it to 3 seconds.
For the replay rewrite, is there a way to shorten the time delay between each play, when using autoplay?
I think you have to change the following:
setTimeout ("window.location.href = '" + Buttons[ i ].firstChild.href + "';",7000);
to say 3000, which will change it to 3 seconds.
jayman
offline
offline
anybody have a link to the monkey script to send out one email to the whole team, with out individually emailing everybody seperate
You are not logged in. Please log in if you want to post a reply.




























