Aschbourne_PRC8/_module/spawn_leavebody.nss
GetOffMyYarn 8622e5ce08 Area Changes and other fixes
added areas and ccoh,
fixed some areas to work with crafting
fixed some on death issues
added server entry/ooc
2024-08-30 10:38:04 -04:00

17 lines
262 B
Plaintext

/**
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);
}