User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
Pirate23
offline
Link
 
i'm a noob,

I downloaded greasemonkey and a couple of scripts. how do I import the scripts into firefox?
 
Yung1King
offline
Link
 
Originally posted by Pirate23
i'm a noob,

I downloaded greasemonkey and a couple of scripts. how do I import the scripts into firefox?


they should already be working once you installed them, if your monkeys face in the bottom right corner is black and white, then click it
 
RustyBas
offline
Link
 
how about a script that work when making a new player that adds up the core stats for that position so you dont have to do it quickly in your head like for a WR it will add up agi, spd, jmp, stam, vision, and catching or qb , str, throwing, vision, and conf.

this could be helpful


Rusty
 
Nixx
offline
Link
 
Originally posted by Pirate23
I downloaded greasemonkey and a couple of scripts. how do I import the scripts into firefox?


Originally posted by Jed
Here's how to utilize the scripts:

1. Install Greasemonkey https://addons.mozilla.org/en-US/firefox/addon/748 (if you don't have it)
2. Click on the scripts provided and follow any addition directions that the creator has provided


So...from the beginning. Download and install Firefox http://www.mozilla.com/firefox/ .

Load Firefox, and install Greasemonkey as detailed above.

After it is installed (should have a smiling monkey at the bottom right of your screen) then you can install scripts. There is no 'downloading', they install directly from the page they are on.
 
Pirate23
offline
Link
 
i downloaded greasemonkey and don't see any smiling monkey on my GLB screen.

greasemonkey is loaded as an addon
Last edited Jul 27, 2008 14:01:47
 
Nixx
offline
Link
 
Originally posted by Pirate23
i downloaded greasemonkey and don't see any smiling monkey on my GLB screen.


It's not on the GLB screen, it's on the status bar. Bottom right of this screenshot: http://www.gold-saucer.org/mathml/greasemonkey/screenshot-20060405.png

So if it is loaded as an addon like you said, then you go to a page with a script and click the 'Install this script' button. It will pop up a thing asking if you want to install it, say yes.
 
Pirate23
offline
Link
 
I don't have the monkey and when I click to install script, it asks me where to save it. Don't know why the monkey isn't there, programming isn't my cup of tea.
 
Nixx
offline
Link
 
Originally posted by Pirate23
I don't have the monkey...


Did you restart Firefox after installing Greasemonkey?
 
dapasta
offline
Link
 
Is there a trick to the player sort script? I doesn't do anything for me, no matter how I set it
 
Pirate23
offline
Link
 
Originally posted by Nixx
Originally posted by Pirate23

I don't have the monkey...


Did you restart Firefox after installing Greasemonkey?


Yes
 
mw54finest
offline
Link
 
Originally posted by dapasta
Is there a trick to the player sort script? I doesn't do anything for me, no matter how I set it


It will work better when you have a regular schedule. Try it during regular season. Mine has mind of it's own with out a schedule and rest of the sort function is screwy too.
 
Ocho_CinCo
offline
Link
 
Originally posted by OchO_CinCo
only 6 instead of 8 friends are showing..anyone want to help?


can anyone help...this is the 5th time I've asked
 
dapasta
offline
Link
 
Originally posted by mw54finest
Originally posted by dapasta

Is there a trick to the player sort script? I doesn't do anything for me, no matter how I set it


It will work better when you have a regular schedule. Try it during regular season. Mine has mind of it's own with out a schedule and rest of the sort function is screwy too.


thanks
 
karma99
offline
Link
 
Originally posted by OchO_CinCo
Originally posted by Ocho_OinCo
only 6 instead of 8 friends are showing..anyone want to help?


can anyone help...this is the 5th time I've asked

Rather like asking.. my car is broken, fix it!
We need information. The best thing is put your version of the file somewhere, give me a link and I'll load it into my machine and see what's up.
It can be very hard to tell what's wrong from code fragments. It's impossible to tell what's wrong from "only 6 instead of 8 friends are showing"
 
Ocho_CinCo
offline
Link
 
// ==UserScript==
// @name GLB Friends List
// @namespace Branden Guess
// @description This will add a friends list to your home page on GLB
// @include http://goallineblitz.com/game/home.pl
// ==/UserScript==

var container=document.getElementById('content')
var avatar='http://goallineblitz.com/game/user_pic.pl?user_id='
var friendlink='http://goallineblitz.com/game/home.pl?user_id='
//Friend 1
//ID -
var id1='17966'
//name -
var name1='kite188'

//Friend 2
//ID -
var id2='166776'
//name -
var name2='D.Allen'

//Friend 3
//ID -
var id3='58947'
//name -
var name3='WCK'

//Friend 4
//ID -
var id4='2840'
//name -
var name4='Chambers'

//Friend 5
//ID -
var id5='166532'
//name -
var name5='Lputony'

//Friend 6
//ID -
var id6='172949'
//name -
var name6='Law'

//Friend 7
//ID -
var id7='192692'
//name -
var name7='Tenks'

//Friend 8
//ID -
var id8='161276'
//name -
var name8='GoodGarion'

container.innerHTML = container.innerHTML + '<div class="medium_head">' +
'My Friends</div>' +
'<table><tr>' +
'<td><img src="' + avatar + id1 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id1 + '">' + name1 + '</a></td>' +
'<td><img src="' + avatar + id2 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id2 + '">' + name2 + '</a></td>' +
'<td><img src="' + avatar + id3 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id3 + '">' + name3 + '</a></td>' +
'<td><img src="' + avatar + id4 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id4 + '">' + name4 + '</a></td>' +
'<td><img src="' + avatar + id5 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id5 + '">' + name5 + '</a></td>' +
'<td><img src="' + avatar + id6 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id6 + '">' + name6 + '</a></td>' +
'</tr></table>'
'<td><img src="' + avatar + id7 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id7 + '">' + name7 + '</a></td>' +
'<td><img src="' + avatar + id8 + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id8 + '">' + name8 + '</a></td>'
 
Page:
 


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