ID:173724
 
mob/verb/make_cow()
set src in view()
name = "Cow"
icon = 'cow.dmi'


this is the code I have I need to know when I use this verb how can I make it so that it gives me a list of people to use it on?
mob/verb/make_cow(mob/M in world)
set src in view()
name = "Cow"
icon = 'cow.dmi'
world <<"[M] goes mooooo!"

Siientx