Archive for glbscripts.myfreeforum.org Forum dedicated to Greasemonkey Scripts made for Goal Line Blitz online game.
 



       glbscripts.myfreeforum.org Forum Index -> Modified Scripts
mw54finest

[How to] Make the replay step after a field goal attempt

by RandomBeast

find the line right near the top that says
Code:
var dirText = dir.innerHTML;


and add the following right under it

Code:
if(dirText.indexOf(" field goal ")!=-1)
{
var Buttons = getElementsByClassName("tab",document);
var ButtonsCount = Buttons.length;
for(var i=0; i<ButtonsCount; i++)
{
var Button = Buttons[i];
var ButtonText = Button.innerHTML;
if(ButtonText.indexOf("Next Play")!=-1)
{
setTimeout("window.location.href = '" + Buttons[i].firstChild.href + "';",4000);
}
}
}

       glbscripts.myfreeforum.org Forum Index -> Modified Scripts
Page 1 of 1
Create your own free forum | Buy a domain to use with your forum