ID:175700
 
I would like to ask a question about a simple area error. I checked the DM refernce but could not figure out why this was malfunctioning.

area/enter_shed
Entered()
usr<<"You shouldn't go through ragnars things"

For some reason when you enter the given area The usr<< message does not work!

If anyone could help I would appriciate it.
I've never used something like this but I think you have to place it on the map in the editor, did you?
Don't use usr in Entered(). The proper way to use Entered() and similar movement procs is this:
turf
Entered(atom/movable/A)
if(ismob(A))
var/mob/M = A
//etc.