id(s) { return s=="house" || s=="voting house" || s=="small house"; } short() { return "There is a small house to the west"; } long() { write("It is so small that it can hardly be more than a singe room.\n"+ "A sign on it says: 'Voting booth'.\n"); } init(){add_action("enter", "enter"); add_action("west", "west"); } enter(str) { if (id(str)) { west(); return 1; } } west(str) { if (str && str!="") return 0; this_player()->move_player("west#players/ingis/voting"); return 1; }