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

16 lines
490 B
Plaintext

///////////////////////////////////////////////
//This script causes a NPC, upon initiating////
//conversation, to NOT follow the PC with its//
//eyes and remain stationary. Put in the///////
//OnConversation Script location.//////////////
///////////////////////////////////////////////
void main()
{
if(GetCommandable(OBJECT_SELF))
//This sets the NPC as the speaker
{
ClearAllActions();
// Clears the actions so the NPC will not follow you with his/her eyes
}
}