Ancordia_PRC8/_module/nss/talk_sit.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

18 lines
576 B
Plaintext

/////////////////////////////////////////////////////////
//Place in "Actions Taken" of the NPCs first convo node
//Make sure tag is correct and remove the nw_walk_wp
//script from the End Conversation Normally handle.
/////////////////////////////////////////////////////////
void main()
{
object oChair = GetNearestObjectByTag("Chair");
//Make sure no one is in chair, if not sit-down.
if(!GetIsObjectValid(GetSittingCreature(oChair)))
{
ClearAllActions(); //This is so he doesn't spin in his chair, following you.
ActionSit(oChair);
}
}
//End