Crates not working
I am having issues with crates working, everything is setup right I tried reloading the plugin. When fishing 0 crates can be caught. Even if I turn them up to 100% chance still nothing. Seems like maybe its been an issues since the last rust update. Am I the only person with this issue? Thanks.
Bump, I see the plugin got some new work but we tested it today and still cant pull crates when fishing.
In response to HeyThere ():
Bump, I see the plugin got some new work but we tested it today and still cant pull crates when fish...
will do, ill check it out and see whats up
Having a similar problem. Any resolution to this?
  Its always been like this even before last updates. Just turn them off to stop the errors and miss catches. Use chance 0.
For players having issues finding crates even if crates are set to 100%, what is the chance to catch a fish at?
100% crates just means, anytime you do catch a fish, it should always be a crate as well. 100% does not mean every time you cast, you pull up a crate. 

But i tried it with default config and no other plugins that might interfere with loot spawn. and it works well for me. I will test with some common loot spawn plugins and such and see as well.

what other plugins are you guys using as well?
Magic loot is the one I have that would effect it. I can apply the plugin on my test server and get the error for you. Thanks for helping.
I am able to get crates to spawn with bows and spears, but not with fishing poles (bows and spears have red status bar while poles have blue status bar). I run alpha loot on our server. A variety of other ones like component blocker, compound options, stacksize controller etc, but not sure if those would impact it at all.
ill check that specifically for cast fishing.

Merged post

as this was a issue before, i double  checked with latest update i did a few days ago. Both casting and spear/bow fishing pull up loot crates  correctly.

just remember, you have to catch "something" to have a chance that "something" is a loot box :)

@ColonBlow Thanks for the updates! Everything appears to be working on my server correctly now :)
@ColonBlow I think I found the problem. It looks like a simple copy/paste mistake.

Lines 4 and 7 in the config file are the same...
"Global - Enable Random Item Condition Loss when Spear/Bow Fishing ? ": false,​
Lline 45 in the plugin cs file...
[JsonProperty(PropertyName = "Global - Enable Random Item Condition Loss when Spear/Bow Fishing ? ")] public bool enableRandomLootBox { get; set; }​

You can see that the description says it's for item condition loss but the value is being assigned to the flag for enabling loot boxes. Right below that you can see that the same config value is being loaded again and properly used for condition loss.

For those wanting to fix this on their own until an official update is released simply change the name of the config value in both the config file (line 4) and the cs file (line 47)...

From:

"Global - Enable Random Item Condition Loss when Spear/Bow Fishing ? "

To:

"Global - Enable Random Loot Boxes ? "

Hope this helps.

BTW, love the plugin. :)

well. thats doesnt look right :( 
ill check it out and see. ty for noting that.