PassDoor
icon = 'WT2.dmi'
icon_state = "rd"
density = 1
var
pass = ""
DblClick()
for(usr)
if(src.density == 1)
var/password = input("Whats the password!?")
if(password == src.pass)
src.density = 0
icon_state = "do"
else
usr<<"Wrong bucko!"
else
src.density = 1
icon_state = "rd"
Problem description:Alright, this works fine, except for one problem, when someone clicks on the door everyone is asked to put in the password, how must i fix this?