Aantioch_Infernum/_module/nss/speak_sit_spawn.nss
EpicValor 44323d16c6 Added full CEP3 & Complete Rural/City tileset
Sarum City has been rebuilt with the new tileset, and all the exterior areas were combined into one. New areas added outside the city. They're called Environs.  Some additional areas redone to tie into the new areas. Environs are mostly decorated, but lack NPCs in some.  Those will be added later.
2023-11-17 01:59:49 -06:00

17 lines
429 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";
object oChair = GetNearestObjectByTag(sChairTag);
DelayCommand(15.0, ActionSit(oChair));
}