Download Haptic's Mod Thread

Haptic

Member
Might as well start a mod thread.

Tribes Like Health Bars
Health and Energy bars stuck up into the top left corner of the HUD.
** Mod of MidHUD, by RockyRex
Download | Preview
My Original Post Tells how to change the bars to decrease the same direction.

Vertical Health Bars
Vertical Health and Energy bars, centered around the reticle.
** Mod of MidHUD, by RockyRex
Download | Preview (BarsFull), Preview (BarsLow)
** Place contents of the file in .../live/mods/autoexec
** To move them open the MidHUD.cs and find these lines: (Noted with the <----)
Code:
      // Energy Bar
		%index = $HudElement::EnergyBar;
		%this.setHudElementTexture(%index, "mods/autoexec/MidHud/EnergyFill");
		%this.setHudElementPosition(%index, 380, 275); <----
		%this.setEnergyBar(%index, "mods/autoexec/MidHud/EnergyEmptyFill", "Up");
		%this.setHudElementParent(%index, $HudElement::BaseContainer);
		$HudElement::EnergyBar = %index;

		// Energy Frame
		%index = $HudElement::EnergyFrame;
		%this.setHudElementTexture(%index, "mods/autoexec/MidHud/energyFrame");
		%this.setHudElementPosition(%index, 380, 275); <----
		%this.setHudElementParent(%index, $HudElement::BaseContainer);
		$HudElement::EnergyFrame = %index;
Edit the first value to change the position left and right, the second value to change the position up and down. Make sure you have the same two values for the bar itself and the bar frame. Like in the code above, I have 380, 275 in both chunks of script. Do the same thing to the health bar's code to change the position of that.

Simple Colored Dot Reticles
ReticlesPreview.png
Can be easily recolored by opening the image and changing the hue/saturation. Or, in gimp, opening the image and going to colors>colorize, and changing it to your liking.​

 
Top