onSpawn and onDeath usually play a part of the loot generation.
Check the onDeath/onSpawn events for your creatures, and modify the default nw_ script to return out of the script.
eg
void main()
{
return; //Your code here to exit out of the function before items are created.
//Spawning code here
}