 |
glbscripts.myfreeforum.org Forum dedicated to Greasemonkey Scripts made for Goal Line Blitz online game.
|
| View previous topic :: View next topic |
| Author |
Message |
kingsolo
Joined: 03 Jul 2008 Posts: 4
|
|
| Back to top |
|
 |
pabst Developer
Joined: 23 Jun 2008 Posts: 235
|
|
| Back to top |
|
 |
kingsolo
Joined: 03 Jul 2008 Posts: 4
|
Posted: Mon Jul 07, 2008 1:05 am Post subject: |
|
|
| Actually, I must have gotten my script right before you release the one with the chart cause mine doesn't have that. I just downloaded the new one. Can you verify if this counts the actual spot of the catch, or the total yardage of the pass? If it's the total yards including the yards after catch, it's great data to have, but it's skewed for game planning. Why defend the deep pass when the team is throwing to mid range and their WR takes it to the house. You should have planned to defend the mid range pass to prevent the WR from even catching the ball, or at least minimize the yards after catch. |
|
| Back to top |
|
 |
pabst Developer
Joined: 23 Jun 2008 Posts: 235
|
Posted: Mon Jul 07, 2008 12:44 pm Post subject: |
|
|
| kingsolo wrote: | | Actually, I must have gotten my script right before you release the one with the chart cause mine doesn't have that. I just downloaded the new one. Can you verify if this counts the actual spot of the catch, or the total yardage of the pass? If it's the total yards including the yards after catch, it's great data to have, but it's skewed for game planning. Why defend the deep pass when the team is throwing to mid range and their WR takes it to the house. You should have planned to defend the mid range pass to prevent the WR from even catching the ball, or at least minimize the yards after catch. |
It's the total yards including the YAC. I know it's misleading for game planning, but people wanted it anyway. To get the actual spot of the catch requires loading replays which I'm trying to avoid for the time being. |
|
| Back to top |
|
 |
robelder
Joined: 15 Jul 2008 Posts: 45
|
Posted: Tue Jul 15, 2008 10:39 am Post subject: |
|
|
You could subtract the YAC from the total yards on the reception to come up with the catch distance without using the replays.
Scouting Report Ideas:
Time of possession would be great.
Number of plays per quarter per player would be nice.
Could you show us how to change the short, medium, and long distances in the game scout? Has Bort let people know what are the distances required to be short medium and long?
Is there a way to change the layout so that when you copy and paste, it will either focus on the home or away team as a group. Right now if you copy it and paste it into excel it will go back and forth between each team. I would love to see it where when you copy it, it keeps all of Team A's stats together and all of Team B's stats together.
Would it be possible to scout a teams entire season or several specific games instead of one game at a time? If this is possible, it would also be nice to add an average stats for all the games entered. I was thinking we could type into greasemonkey the play-by-play links from various games, then maybe the whole thing could be generated somewhere on GLB. Each person could decide whether to add 1 or 5 or 8 games or whatever and then it would generate the scouting report from all of the games listed and also an average for all the games. |
|
| Back to top |
|
 |
pabst Developer
Joined: 23 Jun 2008 Posts: 235
|
Posted: Tue Jul 15, 2008 6:33 pm Post subject: |
|
|
| robelder wrote: | | You could subtract the YAC from the total yards on the reception to come up with the catch distance without using the replays. |
But the problem is, I have to load the replay just to get the YAC, it's not available to me in the play-by-play which means I've got nothing to subtract. Replay loading is not good.
| robelder wrote: | Scouting Report Ideas:
Time of possession would be great.
|
That's included in the Firefox3 version of the script. I haven't updated the FF2 version in a while, so if you're using the Firefox2 version, I wouldn't expect it anytime soon. The way the original script was written makes this a major pain to get.
| robelder wrote: |
Number of plays per quarter per player would be nice.
|
To get this would require fetching the replays which causes a lot of network traffic. So, this is on the no-can-do list for the time being.
| robelder wrote: | Could you show us how to change the short, medium, and long distances in the game scout? Has Bort let people know what are the distances required to be short medium and long?
|
I just made a small update to the script to make this part easier. There are 3 variables at the top of the script now: longPass, mediumPass, and shortPass. Set these to the minimum distance you want. Currently they're set at 15 for long passes, 7.5 for medium, and 0 for short. To my knowledge, Bort hasn't mentioned anything about it.
| robelder wrote: | Is there a way to change the layout so that when you copy and paste, it will either focus on the home or away team as a group. Right now if you copy it and paste it into excel it will go back and forth between each team. I would love to see it where when you copy it, it keeps all of Team A's stats together and all of Team B's stats together.
|
It'll probably work like you want if I realign the tables a bit. I'll play around with it.
| robelder wrote: | | Would it be possible to scout a teams entire season or several specific games instead of one game at a time? If this is possible, it would also be nice to add an average stats for all the games entered. I was thinking we could type into greasemonkey the play-by-play links from various games, then maybe the whole thing could be generated somewhere on GLB. Each person could decide whether to add 1 or 5 or 8 games or whatever and then it would generate the scouting report from all of the games listed and also an average for all the games. |
I'm planning on doing this but I have a couple greasemonkey problems to work out. And, I wanted to wait at least until season 4 to see what the server situation is like once the new teams are added. It will require a worst case of 21 page loads per team (1 for the schedule & 1 for each play-by-play). It's not as bad as some of the scripts are getting to be since it shouldn't be run often, but it's not trivial. If it gets released (which is not guaranteed), it will most likely do the entire schedule automatically which means I'll probably add checkboxes or something to allow you to remove certain games from the totals. |
|
| Back to top |
|
 |
robelder
Joined: 15 Jul 2008 Posts: 45
|
Posted: Wed Jul 16, 2008 8:47 am Post subject: |
|
|
Thanks so much. I think the full season scout is going to be pretty amazing. I appreciate the alteration for the distances and trying to work on the copy paste feature. That will be a huge help and until we can do a full season scout. If I can copy and paste easily in excel, I can chose the games I want and drop them into excel and write a formula to get the averages. It shouldn't take too long.
I thought there was already a formula written that puts the YAC on the play-by-play. If that is not the case, then I guess it isn't very easy to figure out.
Thanks again. |
|
| Back to top |
|
 |
pabst Developer
Joined: 23 Jun 2008 Posts: 235
|
Posted: Wed Jul 16, 2008 9:31 pm Post subject: |
|
|
| robelder wrote: | I thought there was already a formula written that puts the YAC on the play-by-play. If that is not the case, then I guess it isn't very easy to figure out.
Thanks again. |
I believe RandomBeast came up with the formula for calculating the YAC. But he puts it on the replay after calculating it from the replay. He can't put it on the PBP and the replay is what I can't access without killing the servers. So, we're both screwed. |
|
| Back to top |
|
 |
RandomBeast Developer
Joined: 22 Jun 2008 Posts: 42
|
Posted: Wed Jul 16, 2008 10:59 pm Post subject: |
|
|
| yeah, I need the info from the replay to get YAC, so getting it on the pbp would require loading that page. |
|
| Back to top |
|
 |
robelder
Joined: 15 Jul 2008 Posts: 45
|
Posted: Thu Jul 17, 2008 9:18 am Post subject: |
|
|
Then we need to get Bort to put the YAC on the PBP. LOL. That would be nice.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|