ID:177313
 
How would I make this display the players status where the stat(1)is?

mob/Stat()
..()
var/list/l = list()
for(var/mob/m as mob in world)
if(m.client)
l.Add(m)
statpanel("People Online")
stat(l)

Here is also my verb?

Change_Status()
status = input("What would you like your status to be?") as text

It should look like...
(Player) Status = [status]

Thanx,
Punkrock546
Change_Status()
var/o = input("What is your status?") as null|text
var/s = "\[status = [o]\]"
src.suffix = "[s]"
In response to Super16
Thanx,

Punkrock546