ID:176479
 
mirror? So like when your infront of it you actualy see your reflection? If so can you please tell me how to do it, Thanks in advance!

-Crio
I'm not really sure but maybe something like this:
obj/mirror
obj/reflec
var/owner
//well you can place th turf/mfloor in front of the mirror
turf/mfloor
Entered(mob/P)
var/obj/reflec/R = new obj/reflec
R.icon = P.icon
R.dir = GetOppdir(P.dir)
R.icon_state = P.icon_state
R.owner = P
R.loc = locate(P.x,P.y+1,P.z)
Exited(mob/P)
for(var/obj/reflec/R in oview())
if(R.owner == P)
del(R)

proc/GetOppdir(dir)
switch(dir)
if(NORTH)
return SOUTH
if(SOUTH)
return NORTH

Here is a diagram of the setup.
MIRR is mirror and MF is the turf mfloor.

MIRR
MF

I dont know if this work. probably a few mistakes.