Newsgroups: rec.arts.int-fiction
Path: news.duke.edu!newsgate.duke.edu!nntp-out.monmouth.com!newspeer.monmouth.com!nntp.abs.net!uunet!dca.uu.net!ash.uu.net!world!buzzard
From: buzzard@world.std.com (Sean T Barrett)
Subject: Re: [Inform] Nice simple straightforward question
Message-ID: <GHror6.Fqy@world.std.com>
Date: Wed, 8 Aug 2001 20:54:42 GMT
References: <326rk9.007.ln@127.0.0.1> <slrn9n2i69.87.cerutti@fiad06.norwich.edu> <GHrG6I.M3t@world.std.com> <slrn9n31hn.8m.cerutti@fiad06.norwich.edu>
Organization: The World Public Access UNIX, Brookline, MA
Lines: 33
Xref: news.duke.edu rec.arts.int-fiction:90873

Neil Cerutti <cerutti@together.net> wrote:
>Sean T Barrett posted:
>>Good point to avoid intefering with before-s, but you probably
>>want to put it on the chair, not the room, in case there's some
>>other enterable there:
>
>Good idea.

Too bad I forgot to flesh it out.

>>Object chair "char"
>> with
>>  react_after [;
>>    Drop:
>>      move noun to parent(self);
>>  ]
>> has enterable supporter;

I imagine the above still reacts to other drops, what I meant
to do was condition it this way:

Object chair "char"
 with
  react_after [;
    Drop:
      if (noun in self)
        move noun to parent(self);
  ]
 has enterable supporter;

Maybe there are other cases that will help with too, I dunno.

SeanB
