Scripting Question For A HUD

Royalty

The Aussie
Which file do I need to edit to change the position of say, the Health Bar? ANSWERED
What would I need to edit to put it in the bottom left hand corner? FIGURED OUT MYSELF
Where do I access the file that positions the core HUD? ANSWERED
Where do I access the file that positions the hand nade count number? ANSWERED
What lines do I have to edit to change the positioning of the core HUD?

SPOILER:

I'M PORTING THE TRIBES HUD TO LEEJUNZ!
(Will be very shitty...)
 
he's not asking where the count is defined, he's asking for where the HUD for them is set up.

It'll be somewhere in the client's gui folder.
 
er, I think its in the hudElements.cs file, leme look
*looks*
yep, its in client/gui/scripts and your looking for this group:
Code:
  // item ammo display
  %index = %this.addHudElement();
  %this.setHudElementPosition(%index, 96, 530);
  %this.setHudElementPositionAnchor(%index, "Bottom", "Left");
  %this.setHudElementText(%index, "", AmmoDisplayProfile);
  %this.setHudElementParent(%index, $HudElement::BaseContainer);
  $HudElement::ItemAmmoDisplay = %index;
 
SPOILER:

I'M PORTING THE TRIBES HUD TO LEEJUNZ!
(Will be very shitty...)

I'd prefer if you didn't :3 Legions & Tribes - RIVALS... Legions will stand tall over Tribes someday! We won't do it by copying their stuff however!
 
Back
Top