Disable Backpacks for NPCSuggestion
In response to Gamingoutlaws ():
I am guessing these edits need to be made to the CS file. 
Both posted code changes/additions?
From what I am hearing the fixes stated above are not working, except maybe the one that had a problem with scarecrows.
I'll be taking a look here in due time and I'll report back with a fix when I find it.
i changed nothing in public static Backpack LoadOrCreate(ulong id) its default. i use just the fix from post
https://umod.org/community/backpacks/2227-disable-backpacks-for-npc?page=1#post-3
and it help for all, no wrong/NPCs backpack data entrys, no NRE errors.

from:
if (victim is BasePlayer && !(victim is NPCPlayer))​

to:
if (victim is BasePlayer && !(victim is NPCPlayer) && !(victim is HTNPlayer))​
In response to dIMjIM ():
i changed nothing in public static Backpack LoadOrCreate(ulong id) its default. i use just the fix f...
Ah okay, I was just over thinking this all haha.
Thanks.
In response to dIMjIM ():
i changed nothing in public static Backpack LoadOrCreate(ulong id) its default. i use just the fix f...
The code need to be added at the end of the .CS file or in the middle of it somewhere?
Thanks
In response to Gamingoutlaws ():
The code need to be added at the end of the .CS file or in the middle of it somewhere?
Thanks
@Gamingoutlaws  you find it on Line 532
In response to dIMjIM ():
@Gamingoutlaws  you find it on Line 532
Thanks. Made the edits lets see what happens lol.
I had over 5k backpack data files I just deleted. lol

Merged post

Looks like that fixed it. So far only player backpack data files. Thanks everyone.