Aschbourne_PRC8/_module/nss/spawn_leavebody.nss

17 lines
262 B
Plaintext
Raw Permalink Normal View History

2024-06-14 10:48:20 -04:00
/**
spawn_leavebody
OnSpawn: NPC will leave behind a body when killed
J.D. Robertson, 2002
*/
#include "NW_I0_GENERIC"
void main()
{
// Set listening
SetListeningPatterns();
// Leave a body
SetIsDestroyable(FALSE, FALSE, FALSE);
}