ID:176253
 
How would I check how long a mob has been standing on a turf? I just need somewere to start.

Thank you for your help.
Hey man, try something like this...
mob
var/timer
proc/timeLoop()
while(1)
spawn(10) timer++
verb/CheckTime()
usr<<"You have been standing here for about [round(usr.timer)] seconds"
New()
..()
timeLoop()

turf/Entered(mob/M)
..()
if(M) M.timer=0

this is one way of doing it but if this isn't what you want there is a client.inactivity variable, you can look it up in reference under client/var.

-=Ken=-
In response to NeoHaxor
Except for the fact that you will get runtime errors. You need an if(ismob(M)) check in the Entered() proc.