ID:179524
 
Okay, I`ll try to explain this a detailed as possible

I need any information on how to make a mob totaly invisible, meaning a way to make the rightclick menu not show up when right clicking

I have tired everything

If anyone has any information I`d apreciate it


You'd have to make an invisible icon or icon_state, then do something like this:

mob/verb/Invisible()
usr.icon='invisible.dmi'
usr.visibility=0
In response to Nadrew
mob/InvisMan
icon = null
visibility = 0
To make it so you can not right click to display a mob, all verbs associated with it must be hidden. You can hide individual verbs by using set hidden = 1 in the beginning of the verb.