ID:178504
 
How do you make all your verbs and stats and stuff appear in the top right of the screen under the tab called "Info" for everyone else to see when they join the game?

-SG15
SuperGoku15 wrote:
How do you make all your verbs and stats and stuff appear in the top right of the screen under the tab called "Info" for everyone else to see when they join the game?

-SG15

Try using the worlds view.

Resize it to 6, that is how I normally have it.

Lee

[Edit] I closed his tags too, just noticed what happened to my text when I read Lummox's post.
SuperGoku15 wrote:
How do you make all your verbs and stats and stuff appear in the top right of the screen under the tab called "Info" for everyone else to see when they join the game?

First off: Please close your HTML tags, or don't use them.

I think what you're asking is to be able to display stats for all the players in the game, like this:

<FONT FACE="Arial" SIZE=-1 COLOR=#80C0FF>Bob, Level 2, 40/45 HP, $350
Carol, Level 8, 61/130 HP, $2240
Max, Level 3, 54/60 HP, $200</FONT>

What you need to do is run through a loop in your Stat() proc:
mob
Stat()
statpanel("Players")
for(var/mob/M in players) // players is a global list you define
stat(M,"Level [M.level], [M.HP]/[M.maxHP] HP, $[M.cash]")

In general that's how you'd do it.

Lummox JR