atom/var/owner = 0
var/password
turf/House
Enter_House
Enter()
if(!src.owner)
switch(alert("Would you like to buy this house for $1,000,000?","House","Yes","No"))
if("Yes")
if(usr.money >= 1000000)
src.owner = usr.name
usr.money -= 1000000
password = input("What would you like your password for other people to enter be?","Password") as text
return
else
if(src.owner == usr.name)
..()
else
var/npassword = input("Password","Pass") as text
if(npassword == password)
..()
else
usr<<"This is not your house!"
return
Problem description:When I place the turf on the map no messages come up or anything when I enter.
Aaand... other than that, I don't know. The procedure looks pretty solid to me.