ID:149425
 
how exactly would i attach this
mob//This is the player//
var//this will start a var list//
health = 5
Stat()//This shows that you are starting a stat panel//
src.health_meter.num = (src.health/src.maxhealth)*src.health_meter.width
src.magic_meter.num = (src.mp/src.maxmp)*src.magic_meter.width

//update the meters to take on the new changes
src.health_meter.Update()
src.magic_meter.Update()

//change the meters' names to reflect the current numbers
src.health_meter.name = "[src.health]/[src.maxhealth]"
src.magic_meter.name = "[src.mp]/[src.maxmp]"

to nadrews hud system, so it displays the usrs health?
Where would you like to implement it?
In response to Super16
I would like to attach it basically to the players screen at startup and display his health. Like in nadrews hud system. but you can remove it from the screen and put it back. someone reply please!
In response to Mrhat99au
Please reply
In response to Mrhat99au
http://www.byond.com/hub/Rcet/Snippets

You can find something there.

-Rcet