ID:176019
 
I want to make a invisibility option for my gms so no one else in the world can see them, im open to any suggestions
VegeanSX wrote:
I want to make a invisibility option for my gms so no one else in the world can see them, im open to any suggestions

This code is straight off my current game, so be thankful.

mob/gameowner/verb/devInvisible()
set category = "Developer"
if(src.invisibility == 1)
src.density = 1
src.invisibility = 0
view() << "[src] appears!"
else
src.density = 0
src.see_invisible = 1
src.invisibility = 1
src << "[src] dissapears!"
In response to Bischoff
thx i got it to work