ID:268566
 
I have two Statpanels.
[src], and Battle Stats.
They all go to [src] x_X.
Well, thanks if you help!

[Note]I don't need help anymore on my other topic, I looked at Death's thing really closely and missed a simple thing.
mob/Stat()
statpanel("1")
stat("Stat",stat)
statpanel("2")
stat("Stat2",stat2)
In response to Artekia
Doesn't work. =/
mob
Stat()
statpanel("[src]")
stat("Name","[src]")

        statpanel("Battle Stats","Click on a stat to raise it.")
stat("Battle Points:","[BP]")


Battle Points go to the stat panel, "src".
In response to Hell Ramen
mob/Stat()
statpanel("Stats")
stat("Points",Points)
stat("Race and Class","[Race]&[Class]")
stat("Experience","[exp]/[expn]")
stat("Level",Level)
stat("Health","[Health]/[MaxHealth]")
stat("Strength","[Strength]/[WStrength]")
statpanel("Skills")
stat("Woodchopping",WCing)
stat("Fishing",Fishing)
statpanel("Inventory",contents)

That's what I use and it works.
In response to Hell Ramen
Its this part thats messing it up:

statpanel("Battle Stats","Click on a stat to raise it.")

I have no idea why that happens but i'd suggest doing this

statpanel("Battle Stats")
stat("Click on a stat to raise it.")
stat("Battle Points","[BP]")
In response to DeathAwaitsU
Yep, thanks Death!
[Edit]So, there's NO WAY to use HTML in a stat panel?