ID:2142778
 
(See the best response by Ter13.)
what if I wanted only a certain person to enter this Part of the Map? what would the code be?:

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?
Based on your questions on the other thread, and this one here, it looks like you're lacking knowledge on the basics of DM and programming in general. I'd recommend giving the Blue Book a solid read through: http://www.byond.com/docs/guide/

In response to Azurift
;_; :/ :(
In response to Azurift
I've read it didnt find wat I was looking for ;-;
Best response
I've read it didnt find wat I was looking for

Lying in order to get help isn't going to make it more likely. It's actually really disrespectful.

Your questions show that you don't really know what you are doing at all. Just reading the first few chapters of the guide would be a really big help to your understanding.

Programming is hard. You have to read to be any good at it. Don't just expect other people to help you by giving you working code. We're not here to be your pocket programmers. We're here to bolster your understanding and help you become a better programmer.

If you make an effort, those of us that help out around here will return that effort. If you refuse to make an effort, the effort we put in will not find its way to you.

We're here to help you, not do everything you ask. Sometimes helping you isn't necessarily giving you what you ask for.
The Blue Book doesn't function like a reference guide -- it's supposed to teach you the fundamentals of DM so that you have some leverage on attacking more advanced problems. The nice forum people are always willing to help, but don't dishonor them by treating them like some kind of coding machine.
In response to Ter13
Im sorry, very sorry, I undrstand thanks for all the help time to stop lacking of Knowledge and Lies, Thanks for the Help Ter! :D