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
Copyright © 2025 BYOND Software.
All rights reserved.
var/o = input("What is your status?") as null|text
var/s = "\[status = [o]\]"
src.suffix = "[s]"