ID:271245
 
How can i make it possible for certain people to be able to see certain mobs(like somone is invisable only to certain people)?
Look up icon and invisibilty in the DM index thingy,
mob/verb/invis()
usr.invisibility = 5 /// Sets the user's invisiblity to 5.

mob/verb/see_invis()
usr.see_invisibility = 5 /// Set's the user's see_invisibility to level 5.

/// the levels determine who can and can't see.
/// someone with see_invis at 4 cannot see someone with invisibility at 5.
/// But someome with see_invis of 10 can see anyone at 10 and below.
In response to Keeth
thanks
In response to Chibi-Gohan0
Made a small mistake, fixed.
Read the previous reply again.