ID:167140
 
I want to have more than one stat panel... How would I do that? (I used to know how..) I want an inventory stat and a stat panel...
RTFM and learn to use F1, Speedro! You want to work on a project and you suddenly seem to think that this forum exists to guide you through every damn step of the way? I'm fine with answering a few of your questions, but there have been a whole force of them just now.

To answer your question, you make two statpanels the same way you make one: the statpanel() proc.

You won't get any more answers out of me unless you can learn to ask smart questions.
In response to PirateHead
Sorry =(, but i did use F1 and it's not giving me what I want...
In response to Speedro
mob/Stat()
statpanel("Stats")
stat("whatever")
statpanel("Inventory")
for(var/obj/X in contents)
stat(X)


There you go -_-

In response to Chrisman767
That for() loop is HIGHLY redundant
statpanel("Inventory",contents)
In response to Mysame
Yeah, I know I'm half asleep, but if your using it to seperate Inventory from Magic like I do in some of my projects it is somewhat useful.
In response to Chrisman767
I'd just make another list then, like magiccontents.
In response to Speedro
Speedro wrote:
Sorry =(, but i did use F1 and it's not giving me what I want...

F1 has everything you need. Press F1, go to the Index tab, and find the keyword/s relating to your problem. If that doesn't help, read the DM Guide.

Hiead