ID:1148537
 
(See the best response by Orange55.)
Code:
obj/MasterZen
icon = 'shops.dmi'
icon_state = "MasterZen
density = 1
Talk()
set src in oview(1)
usr.icon_state = input ("Are You Ready To Go Back Yet?") in list ("Yes","No")
if ("yes") src.loc=locate(5,5,1)


Problem description:

Best response
You did not follow the syntax.

obj/MasterZen
icon = 'shops.dmi'
icon_state = "MasterZen" //you forgot to type in the other " mark
density = 1
verb //you did not declare Talk() as a verb
Talk() //you also needed to indent out properly here as well.
set src in oview(1)
usr.icon_state = input ("Are You Ready To Go Back Yet?") in list ("Yes","No")
if ("yes") src.loc=locate(5,5,1)


You're going to have to actually explain what your problem is.

From a glance, your indentation is off. You're also not using input() in a way that would actually make it do anything, and I'm not sure why you're using usr.icon_state as the variable for the input.

Not to be rude, but this is also your sixth topic in a very short period you've made pertaining to a basic issue. While we have no problem with assisting developers in need of assistance in Developer Help, we are not here to mollycoddle you through every single issue you run into. Before making a post in Developer Help, please at least try to figure it out yourself, either through experimentation, reading the Guide, looking at examples in the reference pertaining to variables and procedures you're using, and ultimately the forum's search feature. If all of these things are unable to assist you, then by all means post a thread in Developer Help.
lol i got it i found out the problem im testing the program so im trying like everything but thanks =)