ID:268474
 
I need help with my Frogger game. I cannot figure out how to make it so that water kills you, But when your on the log you live. Please help!
Try something like this:

<code>turf/water Entered(mob/M) if(ismob(M)) if(!locate(/obj/log) in src) M << "Splash! You drown. The end." // kill M.</code>
In response to Foomer
Thanks Foomer!