ID:178500
 
How would I go about making it where you can see two differnt stats under differnt tabs.ive tried making it like this

mob/Stat()
statpanel("Status")
stat(" Name:","[usr]")
stat(" Life","[usr.Life]/[usr.MaxLife]")

mob/Stat()
statpanel("Battle")
stat(" Damage:","[damage]")
stat(" Defence","[defence]")


Instead of showing them both it only shows the second Stat and erases the first one.

If you know what I'm doing wrong please help

Thanks

-SG15
mob/Stat()
statpanel("Status")
stat(" Name:","[usr]")
stat(" Life","[usr.Life]/[usr.MaxLife]")
statpanel("Battle")
stat(" Damage:","[damage]")
stat(" Defence","[defence]")

Simple:P
In response to Super16
Hmm I thought I tried that thanks anyways though it works

-SG15
SuperGoku15 wrote:
How would I go about making it where you can see two differnt stats under differnt tabs.ive tried making it like this

> 
> mob/Stat()
> ..()
> statpanel("Status")
> stat(" Name:","[usr]")
> stat(" Life","[usr.Life]/[usr.MaxLife]")
>
> mob/Stat()
> ..()
> statpanel("Battle")
> stat(" Damage:","[damage]")
> stat(" Defence","[defence]")
>
>


I fixed it, so it should work.