PWE_PRC8/_module/nss/for_sitconstart.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

16 lines
571 B
Plaintext

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