Alangara_PRC8/_module/nss/ldsitchairnoact2.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

18 lines
634 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 oTemplecurvedinvbench = GetNearestObjectByTag("Templecurvedinvbench");
//Make sure no one is in chair, if not sit-down.
if(!GetIsObjectValid(GetSittingCreature(oTemplecurvedinvbench)))
{
ClearAllActions(); //This is so he don't spin in his chair, following you.
ActionSit(oTemplecurvedinvbench);
}
}
//End