15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
|
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);
|
||
|
}
|
||
|
}
|