EpicValor 70cd1ac3e2 Updated henchman inventory
turned off their combat one-liners
and added treasure script to destroy itself 30s after closing
2023-09-14 18:46:27 -05:00

17 lines
435 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 ***** //
// Sit in the assigned chair.
string sChairTag = "CHAIR_Queen";
object oChair = GetNearestObjectByTag(sChairTag);
DelayCommand(15.0, ActionSit(oChair));
}