[T1] Request.

UniX
11-19-2002, 07:04 PM
Well I was think is there a hud that shows your score? If not make it"PLZ" if so link me :):)

AND WHERE IS THE BLUE WEAPON HUD :(

ragingbunny
11-19-2002, 09:15 PM
what script pack you using,

if presto i dont know,
if viking pack i think its in there
stripped: DL wonderbra.

UniX
11-19-2002, 11:23 PM
Im useing presto.

HotCheese
11-20-2002, 12:33 AM
heres the scorehud i just made real quick like for presto

HUD::New("ScoreHUD","ScoreHUD::Update","0% 30% 27 16");

HUD::Display("ScoreHUD");

event::Attach(eventKillTr ak,ScoreHUD::Kills);
event::Attach(eventFlagCa ptured,ScoreHUD::caps);
Event::Attach(eventChange Mission,ScoreHUD::reset);
Event::Attach(eventConnec ted,ScoreHUD::Reset);
function ScoreHUD::reset() {
$ScoreHUD::Score=0;
HUD::Update("ScoreHUD");
}

function ScoreHUD::Kills(%killer,% victim,%weapon) {
if(%killer != getManagerID())
return;
if(%weapon == "Suicide") {
$ScoreHUD::Score--;
HUD::Update("ScoreHUD");
return;
}
else if (%weapon == "Team Kill") {
$ScoreHUD::Score--;
HUD::Update("ScoreHUD");
return;
}
else {
$ScoreHUD::Score++;
HUD::Update("ScoreHUD");
return;
}
}
function ScoreHUD::caps(%team,%cid ) {
if(%cid != getManagerID())
return;
else {
$ScoreHUD::Score += 5;
HUD::Update("ScoreHUD");
return;
}
}
function ScoreHUD::Update() {
HUD::AddTextLine("ScoreHUD","<jc><f2>" @ $ScoreHUD::Score);
}

Foodey
11-20-2002, 04:28 AM
Get viking/stripped

~wduh

PuwWuw
11-20-2002, 05:31 AM
Originally posted by UniX
Well I was think is there a hud that shows your score? If not make it"PLZ" if so link me :):)

AND WHERE IS THE BLUE WEAPON HUD :( what do you define as score -- kills or caps? either way, there are a great number of presto scripts readily available. http://www.tribalwar.com/junk, although not the complete list probably has some of the best (with working links?)

PuwWuw
11-20-2002, 05:40 AM
<>