- nerd
- |
- Exalted Legendary Member
GRRR! I keep trying to download the Coup (latest version), and it won't load up!
Is something wrong with this link: http://iggyhopper.dyndns.org/CoupDBungie/Scripts/coup_d_bungi e_v3_public.user.js? Can anyone tell me if it uploads on their computer please?
Thanks.
;-)
edit- the link sort of worked. This is what popped-up:
// ==UserScript==
// @name Coup D Bungie V3
// @namespace http://www.bungie.net/
// @description Coup D Bungie - Version 3.5
// @include http://*bungie.net/*
// @exclude http://*bungie.net/
// @exclude http://*bungie.net/Online/*
// @exclude http://*bungie.net/*Forums/createpost.aspx*
// ==/UserScript==
Array.prototype.Contains = function(O)
{
for (var I = 0; I < this.length; I++)
{
if (this[I] == O)
{
return true;
}
}
return false;
};
function getCookie(name) {var results = document.cookie.match(name + "=(.*?)(;|$)");if (results) {return unescape(results[1]);} else {return null;}}
var Names = [];
Names.push(getCookie("BungieDisplayName").replace(/ /gi, " "));
if (document.getElementById("ctl00_mainContent_postRepeater 1_ctl01_ctl00_postControl_skin_usernameLink")){
for (var I = 1; I < 25; I++)
{
var IString = I < 10 ? "0" + I : I;
if (document.getElementById("ctl00_mainContent_postRepeater 1_ctl" + IString + "_ctl00_postControl_skin_usernameLink"))
{
var name = document.getElementById("ctl00_mainContent_postRepeater1 _ctl" + IString + "_ctl00_postControl_skin_usernameLink").innerHTML;
if (!Names.Contains(name))
{
Names.push(name);
}
}
}
}
var Head = document.getElementsByTagName("head")[0];
var Scripts = [document.createElement("script"), document.createElement("script")];
Scripts[0].src = "http://iggyhopper.dyndns.org/CoupDBungie/CoupDBungie.js ";
Scripts[0].type = "text/javascript";
Scripts[1].src = "http://iggyhopper.dyndns.org/CoupDBungie/CoupDBungie.ph p?NameList=" + Names.join(",");
Scripts[1].type = "text/javascript";
Head.appendChild(Scripts[1]);
Head.appendChild(Scripts[0]);
[Edited on 11.29.2009 11:19 PM PST]