ID:177393
 
ok, I learned that in order to add panel, i could use "Stat()", but is that all?

when i have multiple Stat() in my code, it only shows 1 panel...

as an example,

mob/Stat()
blah
blah
blah
mob/Stat()
statpanel("PANEL NUMBER 2 DAMN IT!")
blah
blah
blah
in this case, the second one seems to eliminate the first one and only second one shows up!!!

why? :(
For each why don't you call the parent to do its normal things with ..() so for each do

mob/Stat()
..()
blah blah for each
Sogabe wrote:
ok, I learned that in order to add panel, i could use "Stat()", but is that all?

when i have multiple Stat() in my code, it only shows 1 panel...

as an example,
mob/Stat()statpanel("PANEL NUMBER 2 DAMN IT!")
blah
blah
blah
in this case, the second one seems to eliminate the first one and only second one shows up!!!

why? :(

mob
Stat()
statpanel("1")//first stat panel
stat("User Key", usr.key)//would make the users key show up
statpanel("2")//second stat panel
stat("GP", usr.gp)//would make users gp show up

you just gotta switch the values with your own stuff...