ID:176019
Feb 20 2003, 4:37 pm
|
|
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
|
In response to Bischoff
|
|
thx i got it to work
|
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!"