13 lines
306 B
Plaintext
13 lines
306 B
Plaintext
void main()
|
|
{
|
|
|
|
object oChair = OBJECT_SELF;
|
|
if(!GetIsObjectValid(GetSittingCreature(oChair)))
|
|
{
|
|
AssignCommand(GetLastUsedBy(), ActionSit(oChair));
|
|
object oTable = GetNearestObjectByTag("mpoker_table");
|
|
DelayCommand(2.0, AssignCommand(oTable, SpeakOneLinerConversation("mpoker")));
|
|
}
|
|
|
|
}
|