ID:166690
 
I was wondering if there was an easy way to make amob, object or turf only visible to certain players for example an invisible ghost that only players with a magic crystal could see.
Use the invisibility variable on atoms.
Example: (Dont copy and paste this.)
mob/Ghost
invisibility = 5

In order to change what can see the ghost, you need to use the corresponding see_invisible variable.
mob/Player
see_invisible = 5


Only mobs with a see_invisible setting equal or higher than the invisible object can see it as a result.