and why cant I repeat the code for a Mob Entering a Place? I put this
atom
movable
var/tmp
teleporting = 0
proc
Teleport(atom/loc)
var/odensity = density
density = 0
teleporting++
Move(loc)
if(teleporting--<0) teleporting = 0
density = odensity
turf/specialturf
Entered(atom/movable/o)
if(ismob(o)&&!o.teleporting)
var/mob/m = o
if(m.client)
m.Teleport(locate(7,5,2))
..()
That code worked its Just that when I try adding another place mobs can enter it says I duplicated (Ofc I did) so I cant repeat it? then can I use another code?