Switch to edit mode.
Name(s): @silent-d*oor @visible-d*oor @audible-d*oor @porte-silencieuse @porte-visible @porte-audible1: if (!this:is_obedient_to(player))
2: return player:tell(E_PERM, ". I'm afraid you're not permitted to do that.")
3: endif
4: if (index(verb, "silen"))
5: this:set_door(0)
6: return player:sub_tell("No one will notice anyone entering or leaving anymore.")
7: elseif (index(verb, "visible"))
8: this:set_door(1)
9: return player:sub_tell("The people on stage and at the mike will notice someone entering or leaving, but not the audience.")
10: else
11: this:set_door(2)
12: return player:sub_tell("Everyone will now notice someone entering or leaving.")
13: endif
14: "Last modified by Dax (#789) on Mon Dec 10 21:41:59 2001 MST."