if("Owner Options")
if(PH3==usr.name)
switch(input("What would you like to do?","Your House")as null | anything in list("Set Users","Name House","Sell House","Cancel"))
if("Set Users")
usr<<"This feature isnt currently up"
return
if("Name House")
src.name=input("Name your house or put a message on door!","House Name",src.name)//right here it allows them to name their house.
return
if("Sell House")
usr.Gold+=100000
usr.house=0
usr << "You get 100,000 for your house. Hope you remembered to get your stuff out!"
world<<"<font color = blue>***[usr] has put [src] up for sale!***</font>"
PH1=0
return
Problem description:
Ok, what I'm want to do is make it save the name the user chooses for their house so I don't have to rename it every time someone buys a house. How can i just save this name, and nothing else? Thanks.