mob/verb/say(T as text)
if(findtext("WHO","who"))
var/mob/M
usr << "<b>Players</b>:"
for(M)
if(M.client)
usr <<"[M]"
return
world<<"<small><b>[usr]</b></font> Yells [T]"
Problem #1: What i want this to do is if it finds the phrase who it outputs how many players there are and not display what the player said to the world. However it displays it anyway and i don't know how to stop it. So how would i stop it?
[Edit]
Problem #2: it also is displaying Players: Jiskuha every time i say something instead of if i say who.
~>Jiskuha
You want findtext(T,"who").
One thing to note, this will trigger even if someone happens to say something like "I wonder who did it..."