ID:176762
 
say i'm making a game of tag, and when i succesfully tag someone i want a world message to say i have tagged that specific person. for example: world << [usr] has tagged ["the name of the person who was tagged here"]. what would i use to do that? thanks.
You would want to use the Bump() proc mainly. Along with a 'it' variable. If you bump into someone while your it is 1, then your it becomes 0 and there's becomes 1.
-DogMan
In response to Dog Man
hmmm..i'm sorry if i wasn't really clear. i basically just want to know how to get their name to appear in the message... i'm not really advanced enough for the other stuff, lol.
In response to EnjoiStaticX
mob
Bump(mob/A)
if(ismob(A) && A.client)
world << "[src] tagged [A]."