Ok here is what I need to do but not sure how to do it.
I want to have 2 different statpanels
statpanel("Word Group1")
statpanel("Word Group2")
then want I want to do is add objects to the contents of these panels(is this even doable??)
Also I need to setup 3 sub mobs:
mob/player/group1
mob/player/group2
mob/player/group3
If I added different objects to src.contents for each of these would that all remain different, or show the last group of objects I added?
LJR
ID:153717
Apr 10 2003, 7:12 am
|
|
In response to Shadowdarke
|
|
And don't forget that there was a recent in-depth BYONDscape article on statpanels -- and it's free to the public!
|
In response to Gughunter
|
|
Gughunter wrote:
And don't forget that there was a recent in-depth BYONDscape article on statpanels -- and it's free to the public! Of course. .that page has recently become my stat/verb panel BIBLE.. I think its even worthy to become apart of the Blue Book!! But I did not find an answer to my question from that article, so I posted here. LJR |
In response to Gughunter
|
|
Gughunter wrote:
And don't forget that there was a recent in-depth BYONDscape article on statpanels -- and it's free to the public! I think it'd be difficult for him to forget. He gets paid for it in two months. ;-) |
Certainly! Just display a different list in each panel.
mob
var/list
wordgroup1 = list()
wordgroup2 = list()
Stat()
statpanel("Word Group1", wordgroup1)
statpanel("Word Group2", wordgroup2)
I don't quite understand the problem as you expresed it, but the contents of each mob is a distinct list. Adding something to one will not effect the others.