I am using the FCOM_WarCry 109 update.
I looked at it in TES4Edit. The "old" FCOM_Warcry (from ufcom dated 07-07-2010) has another version of the knife for the player (xx00081D FlayerKnifePC). It also have some script changes, that switch the knife when the player picks it up. Both are missing from the FCOM_Warcry 109 update.
That is because we merged those changes into Warcry EV 1.09 Update itself.
The old version would switch knife from warcry version to fcom version. New version does not. all FCOM Warcry changes is the reach value.
Script is just this for Flayer Knife.
scn 01FlayerBladeScript
begin onunequip
setscale 0.5
end
begin onactivate player
messagebox "You can not use this weapon."
end
We can totally prevent the item from being equipped by player by doing this to the script itself
begin onactivate player
messagebox "You can not use this weapon."
end
begin onequip player
messagebox "You can not use this weapon."
removeitem FlayerKnife 1
end
May need to add in a menu check has well if they happen to be in inventory let me run it by the scripters..