ID:261579
 
I really didnt discribe it that good but i have something like this

mob
Stat()
statpanel("Status") // Status panel define
statpanel("Inventory",contents)
stat(src)
stat("","") // Blank space / line
stat("Name:", "[name] ")
stat("Description", "[desc] ")
stat("Gender", "[usr.Gender] ")
stat("Age", "[usr.Age] ")
stat("A description of yourself:", "[usr.More]")
stat("Your System Type","[world.system_type]")
stat("Lag Rate", "[world.cpu]")
stat("PlayersOnline", "[online]")
statpanel("PeopleInWorld")
stat(players)
stat("Players Description: ","[desc]")

in the Players description i want it to be added to the players icon or stat(players)so it will show the description that, that play put in for him/her self this is what i have to put stat(Players) , stat("Players Description")
var/list/players = list()
var/list/online = 1
var/list/Descr = list()

mob
Login()
..()
players.Add(src)
Descr.Add(src.desc)
Logout()
return


i know the players Add(src) works but the Descr.Add only adds mine.. im not sure why i also the var/list/online = 1
is spost to display how many ppls are online im not sure that works i was playin the game and i asked how many ppl was online (3) they sayed 3 mine was 3 but changed for some reason to 1.. not sure why but if you could help.. THX
call:

var/mob/M

M.Descr.add()

by default it is editing yours, and instead, you want to make it call the other mob's.