I just now tried to do RandomBeasts script to highlight multiple players in replays with a single script and it isnt working for me. Does this only work on replays from after you made the script, or should it work on replays that happened before i saved this script? IE: i just saved this script tonight but am watching replays from 2 days ago. All of my other scripts from here are working fine.
Here is what i have saved to notepad. I have looked it over too many times to count now and i just cant see an error, maybe someone else can find it if there is one.
// ==UserScript==
// @name Marion The Barbarian II
// @namespace GLB
// @description Red Icon
// @include
http://goallineblitz.com/game/replay.pl?pbp_id=*// ==/UserScript==
window.setTimeout( function()
{
if(document.getElementByld('114415')){
document.getElementByld('114415').style.backgroundColor = 'maroon';
}
if(document.getElementByld('105588')){
document.getElementByld('105588').style.backgroundColor = 'navy';
}
if(document.getElementByld('172062')){
document.getElementByld('172062').style.backgroundColor = 'maroon';
}
if(document.getElementByld('183958')){
document.getElementByld('183958').style.backgroundColor = 'navy';
}
if(document.getElementByld('172077')){
document.getElementByld('172077').style.backgroundColor = 'maroon';
}
if(document.getElementByld('333087')){
document.getElementByld('333087').style.backgroundColor = 'navy';
}
if(document.getElementByld('375371')){
document.getElementByld('375371').style.backgroundColor = 'maroon';
}
}
)