2023-10-12 22:59:45 -05:00

19 lines
497 B
Plaintext

#include "nw_o2_coninclude"
#include "x0_i0_walkway"
void main()
{
// ***** BEGIN DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***** //
SetListeningPatterns();
WalkWayPoints();
GenerateNPCTreasure();
// ***** END DEFAULT GENERIC BEHAVIOR ***** //
ClearAllActions();
// Sit in the assigned chair.
string sChairTag = "RoyalSeat";
object oChair = GetNearestObjectByTag(sChairTag);
DelayCommand(5.0, ActionSit(oChair));
DelayCommand(5.0, ActionSit(oChair));
}