ID:178602
 
this is what i have....

mob/Login()
if(usr.key == "Aleis")
verb
cloak()
invisiblity = 100

what should i add to it so only i have it (for now) it says that invisibilty isnt a proc.....
Its because you spelled it wrong in the code.
mob/verb/goinvisiblebecuaseihaveacloak()
if(usr.invisibility == 1)
usr << "You are already invisible!"
else
usr << "You turn invisible!"
usr.invisibility = 1
usr.sight |= SEE_SELF
sleep(300)
usr.sight &= ~SEE_SELF
usr.invisibility = 0