19 lines
497 B
Plaintext
Raw Permalink Normal View History

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