15 lines
361 B
Plaintext
Raw Permalink Normal View History

void main()
{
if(GetCommandable(OBJECT_SELF))
{
// Standard response, but clear actions *after* the conversation starts.
BeginConversation();
ClearAllActions();
// Sit in the assigned chair.
string sChairTag = "CHAIR";
object oChair = GetNearestObjectByTag(sChairTag);
ActionSit(oChair);
}
}