Various fixes to areas, mobs, CRs, items, and scripts

This commit is contained in:
EpicValor
2023-09-18 17:58:18 -05:00
parent 1a97a1f036
commit 05986aecf7
72 changed files with 37563 additions and 7192 deletions

14
_module/nss/kingspeak.nss Normal file
View File

@@ -0,0 +1,14 @@
void main()
{
if(GetCommandable(OBJECT_SELF))
{
// Standard response, but clear actions *after* the conversation starts.
BeginConversation();
ClearAllActions();
// Sit in the assigned chair.
string sChairTag = "RoyalSeat";
object oChair = GetNearestObjectByTag(sChairTag);
ActionSit(oChair);
}
}