turf
JailDoor
icon = 'Jail.dmi'
icon_state = "Door"
Entered(var/mob/M)
if(usr.ckey in gm)
return
else
usr<<"You need to be a GM to go through"
Problem description:
I am not extremely new, I just don't know if there is a undo proc, or something that doesn't allow players that aren't inside a list to not get through. I know a "fly" verb would easily fix this but that's not helping me learn anything.
There are also multiple enterences, so I can't just add usr.loc = locate(x,y,z)
First off, you'll want to include this Bumped() proc anywhere in your code.
And here are the necessary changes you'll need to get this to work.