turf/enterme
Entered(mob/M)
if(ismob(M)&&M.client)
M << "Enterage'd"
world << "Enterage'd by [M]"
//Make one of those and...
mob/verb/lawl()
var/turf/enterme/q=/turf/enterme
src.loc=locate(q)
/*None of these work:
q.Entered(src)
src.Entered(q)*/
It won't call Entered(). :(
How would I max it work? :o
Thanks for reading.