CHUD

Caddy Healer for Urban Dead

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name           CHUD
// @namespace      https://roadha.us
// @author         haliphax (https://roadha.us)
// @contributor    jimflexx (http://userscripts.org/users/117383)
// @description    Caddy Healer for Urban Dead
// @include        http://urbandead.com/map.cgi*
// @include        http://www.urbandead.com/map.cgi*
// @version 0.0.1.20200325063813
// ==/UserScript==


// sort players array based on hp (players[i][2])
function sortPlayers(a, b)
{
	return (a[2] - b[2]);
}

// display chud panel with player list
function chudList(players)
{

	var bgcolor= "Silver";
	var fak=false;
	for (var i=0; i< document.forms.length; i++) {
		if (document.forms[i].action == "http://www.urbandead.com/map.cgi?use-h") {
			fak=true;
		}
	}
	if (fak) { bgcolor = "pink"; }
		
	var divHtml = '<div id="chud" style="background-color:'+bgcolor+';color:Red;'
		+ 'border-width:2px;border-style:solid;border-color:red;padding:4px;">'

	for(var i = 0; i < players.length; i++) {
		divHtml += '<form name="chudf_' + players[i][0] + '" '
			+ 'action="map.cgi?use-h" method="post"><span style="color:Red;'
			+ 'text-decoration:underline;cursor:pointer;"';
		if(players[i][3] != null) divHtml += ' class="' + players[i][3] + '"';
		divHtml += '" onclick="chudf_' + players[i][0] + '.submit()" '
			+ 'title="Heal">' + players[i][1] + '</span>: ' + players[i][2]
			+ 'HP&nbsp;<input type="hidden" name="target" value="'
			+ players[i][0] + '" /></form><br />';
	}

	divHtml += '</div>'

	document.body.innerHTML = document.body.innerHTML.replace(/class="y">Donate<\/a>/i,
		'class="y">Donate</a><br />' + divHtml);
}

// main script body
var pnRegex = /<a.*?href="profile.cgi\?id=(\d+)"(?:\sclass="(.*?)")?>(.*?)<\/a>.*?\((\d+)/gi;
var matches = null;

var players = new Array();
var i = 0;
matches = pnRegex.exec(document.body.innerHTML);

while(matches != null) {
	if (matches[0].indexOf("class=\"trg\"")!=-1) {	
		players[i] = new Array();
		players[i][0] = matches[1];	// profile id
		players[i][1] = matches[3]; // name
		players[i][2] = matches[4]; // hit points
		players[i][3] = matches[2]; // href class (color)
		i++;
	}
	matches = pnRegex.exec(document.body.innerHTML);
}

if(players.length > 0) {
	players.sort(sortPlayers);
	chudList(players);
}