Ancordia_PRC8/_module/nss/mpoker_stool.nss

13 lines
306 B
Plaintext
Raw Normal View History

2023-09-21 19:51:32 -04:00
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")));
}
}