[web football] Goal Line Blitz - 'The Look' / 'Ho Playbook'

StandSparrow I am not level 14 please update me to the number one shutdown corner in TWs history

and I will need a contract offer big enough to allow me to purchase a chinchilla coat for everyday of the week
 
haha

i just setup and installed a greasemonkey script that replaces my dot with whatever i want

newdot.jpg
 
you have to make a custom script

here i'll write up the how to:

Information/shit you need:
- Player ID of the player whose icon you want to replace
- URL to the icon you want to use (I'm using www.improvmasta.org/tw/tobias.gif
- Greasemonkey installed

1. In Firefox, go to "Tools", "Greasemonkey", "New User Script"
- Name = name of your player
- Namespace = GLB
- Description = This script replaces the default icon for the named player.
- Includes = "http://goallineblitz.com/game/replay.pl?pbp_id=*" without the quotes.

2. It will ask you for a text editor. Browse to notepad.exe in the Windows directoy.

3. A script will be created with a few lines at the top. Leave those.

4. Under that, copy this text:

Code:
window.setTimeout( function()
{
if(document.getElementById('#######')){
document.getElementById('#######').innerHTML = '<img src="http://www.whatever.com/imageurl.png">';
}
}
)

- replace ####### in both places with your player ID
- replace http://www.whatever.com/imageurl.png with the link to your custom icon

5. Save. Done.
 
Last edited:
wouldn't it make sense that you could paste your little snippet of code here

and if you add it to the script it will update that player's icon?

we could eventually see our whole team in custom vision
 
wouldn't it make sense that you could paste your little snippet of code here

and if you add it to the script it will update that player's icon?

we could eventually see our whole team in custom vision

It would be like four games before half of them were replaced with little penises.
 
wouldn't it make sense that you could paste your little snippet of code here

and if you add it to the script it will update that player's icon?

we could eventually see our whole team in custom vision

Yes, that would work. I changed mine to include all 4 of my players, with a default icon for ones that I haven't made custom ones for. The same process could be used for every player we have.

I'd suggest someone create an actual GreaseMonkey script modeled after this one that they can keep updated as people create custom icons for themselves.

It wouldn't be hard to put in imposed size restrictions too just by editing the <img> tag in the javascript
 
If you want, you can use your player pic as well instead of worrying with creating a new one and uploading it. Follow all of the instructions above but use the following code instead:

Code:
window.setTimeout
(
	function ()
	{
		if(document.getElementById('######'))
		{
			document.getElementById('######').innerHTML = '<img src="http://goallineblitz.com/game/player_pic.pl?player_id=######" width=16 height=16>';
		}
	}
)

Make sure to replace all 3 ###### sections
 
Back
Top