ID:167445
 
i need to know how to add a friend and when u add his name... his name will stay in the tab then when u click his name u can talk to this person.... so what im sayin is how can i get his name to show in the tab???
Press the 'Add' button in the pager, type in his key, press enter.
In response to Crashed
noo im not talkin about the pager im talkin about a chating verb in a game im making soo im askin how can i code it in so some1s name will apear in the tab i selected?
In response to SyreX
Look up Stat() statpanel() stat() list() and for() ...
Rough example;
mob/var/list/friendlist=list()
mob/verb/Add_Friend(mob/M in world)
src.friendlist+=M
mob/Stat()
statpanel("Friends")
for(var/mob/m in world)
if(m in friendlist)
stat(m)
In response to Mysame
thanx man highly aprieciated o got it goin now...