ID:176752
 
why wont this work

area/inside
Entered(var/mob/M)
M.see_invisible=0
Exited(var/mob/M)
M.see_invisible=1
Koolguy900095 wrote:
why wont this work

area/inside
Entered(var/mob/M)
M.see_invisible=0
Exited(var/mob/M)
M.see_invisible=1

You forgot the "..()".

Entered(blah blah)
..() // do regular stuff first
blah blah // do not-so-regular stuff
In response to Sariat
Entered() and Exited() both have no default action, so calling ..() won't do anything.

Are you sure it's not working? Have you made sure the object(s) you're trying to see only have an invisibility of 1?