2023-09-18 17:58:18 -05:00
|
|
|
#include "nw_o2_coninclude"
|
|
|
|
#include "x0_i0_walkway"
|
|
|
|
|
2023-08-08 16:22:17 -04:00
|
|
|
void main()
|
|
|
|
{
|
2023-09-18 17:58:18 -05:00
|
|
|
// ***** BEGIN DEFAULT GENERIC BEHAVIOR (DO NOT TOUCH) ***** //
|
|
|
|
SetListeningPatterns();
|
|
|
|
WalkWayPoints();
|
|
|
|
GenerateNPCTreasure();
|
|
|
|
// ***** END DEFAULT GENERIC BEHAVIOR ***** //
|
|
|
|
|
|
|
|
// Sit in the assigned chair.
|
|
|
|
string sChairTag = "RoyalSeat";
|
|
|
|
object oChair = GetNearestObjectByTag(sChairTag);
|
|
|
|
DelayCommand(15.0, ActionSit(oChair));
|
|
|
|
|
2023-08-08 16:22:17 -04:00
|
|
|
}
|