Yenairo's Custom HUD!

Yenairo’s HUD!
Hi there it’s Yenairo! This is my first upload, and I hope you enjoy it!

Features
Full view of tailor! (the body wont be viewable with “coat blue” etc)
View your sword and shield!
HP and MP are listed too!
Rupees are under HP and MP!
Arrows and Bombs are displayed at the side!
Nickname is displayed at the top over the:
VIEW ICON OF CURRENT WEAPON!

Here’s the code!
Please give credit!

Code!
Old code:
Sticks to the right of the screen and has the tailor

// HUD made by Yenairo

//#CLIENTSIDE

if (playerenters) {
hide;
//Drawing the HUD
timereverywhere;
timeout = 0.5;
toweapons -HUDSystem;
}



if (timeout) {
//Loop for updates
timereverywhere;
timeout = 0.05;

//HUD
showstats 1024;
showimg 1337,HUD.gif,screenwidth-112,22; //Starts at 1337 cause its a high number and I'm leet
changeimgcolors 1337,1,1,1,1;
changeimgvis 1337,4;

//Update and Draw the current weapon
showimg 1338,#W,screenwidth-88,60;
changeimgpart 1338,0,0,32,32;
changeimgvis 1338,5;
changeimgzoom 1338,2;

//Draw Sword
showimg 1339,#1,screenwidth-100,136;
changeimgpart 1339,0,12,12,23;
changeimgvis 1339,5;
changeimgzoom 1339,1.7;

//Draw Shield
showimg 1340,#2,screenwidth-72,140;
changeimgpart 1340,14,0,16,20;
changeimgvis 1340,5;
changeimgzoom 1340,2;

//Draw Head
showimg 1341,#3,screenwidth-88,178;
changeimgpart 1341,0,64,32,31;
changeimgvis  1341,6;
changeimgzoom 1341,1.3;

//Draw Body
showimg 1342,#8,screenwidth-88,196;
changeimgpart 1342,64,0,32,32;
changeimgvis  1342,5;
changeimgzoom 1342,1.4;

//Draw Nickname
showimg 1343,@Arial@#n,screenwidth-106,23;
changeimgpart 1343,0,0,70,11;
changeimgvis 1343,5;
changeimgzoom 1343,0.55;

//Bombs Symbol
showimg 1344,bomb.gif,screenwidth-32,78;
changeimgvis 1344,6;

//Bombs Count
showimg 1345,@arial@#v(players[ index ].bombs),screenwidth-32,94;
changeimgvis 1345,6;
changeimgzoom 1345,0.75;

//Arrows Symbol
showimg 1346,bow.gif,screenwidth-32,46;
changeimgvis 1346,6;

//Arrows Count
showimg 1347,@arial@#v(players[ index ].darts),screenwidth-32,62;
changeimgvis 1347,6;
changeimgzoom 1347,0.75;

//HP/MP Symbol
showimg 1348,hpmpboard.gif,screenwidth-110,240;
changeimgvis 1348,5;

//Hearts/Fullhears Drawing
showimg 1349,@arial@#v(players[index].hearts)/#v(players[index].fullhearts),screenwidth-70,244;
changeimgvis 1349,6;
changeimgcolors 1349,1,1,1,1;
changeimgzoom 1349,0.70;

//MP Drawing
showimg 1351,@arial@#v(players[index].mp),screenwidth-70,255;
changeimgvis 1351,6;
changeimgcolors 1351,1,1,1,1;
changeimgzoom 1351,0.70;

//Money Symbol Drawing
showimg 1352,moneyboard.gif,screenwidth-107,275;
changeimgvis 1352,5;

//Money Drawing
showimg 1353,@arial@#v(players[index].rupees),screenwidth-86,274;
changeimgvis 1353,6;
changeimgzoom 1353,0.65;
}

New Code:
Stays on the left, and removed the tailor, used on Anima and requested by Dontar.

[CODE]
// HUD made by Yenairo

//#CLIENTSIDE

if (playerenters) {
hide;
//Drawing the HUD
timereverywhere;
timeout = 0.5;
toweapons -HUDSystem;
}

if (timeout) {
//Loop for updates
timereverywhere;
timeout = 0.05;

//HUD
showstats 1024;
showimg 1337,HUD.gif,3,22; //Starts at 1337 cause its a high number and I’m leet
changeimgcolors 1337,1,1,1,1;
changeimgvis 1337,4;
changeimgpart 1337,0,0,80,94;

//Update and Draw the current weapon
showimg 1338,#W,28,60;
changeimgpart 1338,0,0,32,32;
changeimgvis 1338,5;
changeimgzoom 1338,2;

//Draw Nickname
showimg 1343,@Arial@#n,10,23;
changeimgpart 1343,0,0,70,11;
changeimgvis 1343,5;
changeimgzoom 1343,0.55;

//Bombs Symbol
showimg 1344,bomb.gif,imgwidth(hud.gif),78;
changeimgvis 1344,6;

//Bombs Count
showimg 1345,@arial@#v(players[ index ].bombs),imgwidth(hud.gif),94;
changeimgvis 1345,6;
changeimgzoom 1345,0.75;

//Arrows Symbol
showimg 1346,bow.gif,imgwidth(hud.gif),46;
changeimgvis 1346,6;

//Arrows Count
showimg 1347,@arial@#v(players[ index ].darts),imgwidth(hud.gif),62;
changeimgvis 1347,6;
changeimgzoom 1347,0.75;

//HP/MP Symbol
showimg 1348,hpmpboard.gif,4,114;
changeimgvis 1348,5;

//Hearts/Fullhears Drawing
showimg 1349,@arial@#v(players[index].hearts)/#v(players[index].fullhearts),40,118;
changeimgvis 1349,6;
changeimgcolors 1349,1,1,1,1;
changeimgzoom 1349,0.70;

//MP Drawing
showimg 1351,@arial@#v(players[index].mp),40,129;
changeimgvis 1351,6;
changeimgcolors 1351,1,1,1,1;
changeimgzoom 1351,0.70;

//Money Symbol Drawing
showimg 1352,moneyboard.gif,6,150;
changeimgvis 1352,5;

//Money Drawing
showimg 1353,@arial@#v(players[index].rupees),40,149;
changeimgvis 1353,6;
changeimgzoom 1353,0.65;
}[/CODE]
Screenshots!

Instructions
Save the pictures as their names, or they wont work,
Place this in an NPC at OSL and you will have it working!

Pictures (*Required!)

HUD.gif hpmpboard.gif bow.gif bomb.gif moneyboard.gif

Thats all enjoy!

Update!
Fixed problems at the “hand-out” level

just to let you know when i went to test it it worked but when i moved my avatar it would move around but the walking gani would not something to look into :slight_smile:

You mean like this?

// HUD made by Yenairo

//#CLIENTSIDE

if (playerenters) {
hide;
//Drawing the HUD
timereverywhere;
timeout = 0.5;
toweapons -HUDSystem;
}



if (timeout) {
//Loop for updates
timereverywhere;
timeout = 0.05;

//HUD
showstats 1024;
showimg 1337,HUD.gif,screenwidth-112,22; //Starts at 1337 cause its a high number and I'm leet
changeimgcolors 1337,1,1,1,1;
changeimgvis 1337,4;

//Update and Draw the current weapon
showimg 1338,#W,screenwidth-88,60;
changeimgpart 1338,0,0,32,32;
changeimgvis 1338,5;
changeimgzoom 1338,2;

//Draw Sword
showimg 1339,#1,screenwidth-100,136;
changeimgpart 1339,0,12,12,23;
changeimgvis 1339,5;
changeimgzoom 1339,1.7;

//Draw Shield
showimg 1340,#2,screenwidth-72,140;
changeimgpart 1340,14,0,16,20;
changeimgvis 1340,5;
changeimgzoom 1340,2;

//Draw player
showani 1341,screenwidth-88,178,playerdir,#m,;
changeimgvis  1341,6;
changeimgzoom 1341,1.3;

//Draw Nickname
showimg 1343,@Arial@#n,screenwidth-106,23;
changeimgpart 1343,0,0,70,11;
changeimgvis 1343,5;
changeimgzoom 1343,0.55;

//Bombs Symbol
showimg 1344,bomb.gif,screenwidth-32,78;
changeimgvis 1344,6;

//Bombs Count
showimg 1345,@arial@#v(players[ index ].bombs),screenwidth-32,94;
changeimgvis 1345,6;
changeimgzoom 1345,0.75;

//Arrows Symbol
showimg 1346,bow.gif,screenwidth-32,46;
changeimgvis 1346,6;

//Arrows Count
showimg 1347,@arial@#v(players[ index ].darts),screenwidth-32,62;
changeimgvis 1347,6;
changeimgzoom 1347,0.75;

//HP/MP Symbol
showimg 1348,hpmpboard.gif,screenwidth-110,240;
changeimgvis 1348,5;

//Hearts/Fullhears Drawing
showimg 1349,@arial@#v(players[index].hearts)/#v(players[index].fullhearts),screenwidth-70,244;
changeimgvis 1349,6;
changeimgcolors 1349,1,1,1,1;
changeimgzoom 1349,0.70;

//MP Drawing
showimg 1351,@arial@#v(players[index].mp),screenwidth-70,255;
changeimgvis 1351,6;
changeimgcolors 1351,1,1,1,1;
changeimgzoom 1351,0.70;

//Money Symbol Drawing
showimg 1352,moneyboard.gif,screenwidth-107,275;
changeimgvis 1352,5;

//Money Drawing
showimg 1353,@arial@#v(players[index].rupees),screenwidth-86,274;
changeimgvis 1353,6;
changeimgzoom 1353,0.65;
}