i dont get it i do a statpanel with the vars off to the side but when i run it the #s dont show up next to the vars
heres my code:mob/var
money=0
skill=2
stealth=10
mob/Stat()
stat("money")
stat("skill")
stat("stealth")
there is no error
~SplitHalfieVegeta
ID:179829
![]() Oct 27 2001, 8:41 am
|
|
SplitHalfieVegeta wrote:
i dont get it i do a statpanel with the vars off to the side but when i run it the #s dont show up next to the vars You need to make a statpanel using the statpanel() proc. You can download Nadrew's Leveling system for a example on how to do statpanels. |
SplitHalfieVegeta wrote:
now one last question how would i make a credits panel? I'll just give this one to you because you will know how it works when you see it. mob/Stat() |
SplitHalfieVegeta wrote:
that erased my statpanel with all my vars mob/Stat() Sorry about that I forgot the ..() which allows you to call the Stat proc more then once (add that into your other one too). |
var
money = 10
stealth = 50
skill = 50000
Stat()
statpanel(src.key)
stat("Money",money)
stat("Stealth",stealth)
stat("Skill",skill)
Good luck!