ID:266453
 
Ok,
You pick up armor!
Equip
You equip armor!
Go to Statpanel:Equipment
Left Hand:
Right Hand:
Other Stuff:
Body:Armor (Picture of armor)
HOW DO YOU DO THIS?
as the name implies
In response to Bariscni Cough Drop
We frown on people bumping posts (bumping defined here) you've just lost most chances of help.
In response to Nadrew
=( Watabou warned me about ppls like you!
In response to Bariscni Cough Drop
Peoples like us? Whatever that means.. Anyways the "peoples" you're talking about are the majority of the people on this forum.
In response to Bariscni Cough Drop
Bariscni Cough Drop wrote:
=( Watabou warned me about ppls like you!

The post was somewhat formal, but not rude. It was also the truth. Replying to your own post within a short amount of time is considered rather rude. Also, you provided no extra information. Even if you had, you could have placed it in your old post with the edit button.

Ordering people to respond or making remarks about them when they do is not considered wise either.

[Edit]
BTW, I think that help page could use a different format, Nadrew. It runs rather wide.
In response to Nadrew
Go Nadrew!
In response to ACWraith
I made that help page a really really long time ago, I'll see what I can do with it.
In response to Bariscni Cough Drop
I would have responded to your first post, but you bumped it within the hour--and you were extremely rude about it. It's one thing to bump after a day or two, if you're polite, and another to pull this crap. Indeed, when Watabou warned you he should have warned you not to repeat his own failure in this matter.

Therefore, although I will help you, I won't do so until at least tonight. People who bump their posts because of impatience have to wait longer.

Lummox JR
Bariscni Cough Drop wrote:
Ok,
You pick up armor!
Equip
You equip armor!
Go to Statpanel:Equipment
Left Hand:
Right Hand:
Other Stuff:
Body:Armor (Picture of armor)
HOW DO YOU DO THIS?

All right, I said I'd help you tomorrow, and tomorrow has now arrived. So, here's the answer to your question--or at least what I think your question is. If you want to show the equipped items in a stat panel, you'd want to do something like this:
mob
Stat()
... // do the other stat panels, like health and such
statpanel("Equipment")
// show weapon/armor as "none" if none is carried
stat("Weapon",weapon?(weapon):"(none)")
stat("Armor",armor?(armor):"(none)")
// only show the hands if there's something in them
if(lefthand) stat("Left Hand",lefthand)
if(righthand) stat("Right Hand",righthand)

This assumes you have vars of the appropriate type. The weapon var would point to the weapon you're using, armor would point to the armor you're wearing, etc.

Lummox JR