atom
proc
lookat(targ)
var/obj/blank=new(src.loc)//Create a dummy
src:client.eye=blank//Make src's eye be on the dummy
walk_towards(blank,targ,1)//Make dummy walk to targ,thus creating an effect of looking over to targ
sleep(2)
walk_towards(blank,src,1)
src:client.eye=src
obj
blank
icon='blank.dmi'//blank file
Problem description:
This does nothing at all except changing my eye to dummy.That's all it does.It dosen't seem to do the "look-over-at" effect.