FAQ (server owners)
Frequently asked questions from server owners.
Why do I catch a normal and custom fish at the same time?
By default the configuration option below is set to false. If you wish to disable this and only catch either custom or normal on their own, set this to true.
This setting is found in the config.yml.
DisableNormalAndCustomCatch: false
How do I make it so I only catch custom fish?
Ensure that the above setting is set to true. Then you must make sure your catch chances equal 100%. Below is an example.
ChanceToCatch:
Bronze: 80
Silver: 10
Gold: 4
Diamond: 3
Platinum: 2
Mythical: 1
Going over 100% will cause some tiers of fish to not be calculated and may lead to them being uncatchable.
How do I disable vanilla treasure / loot?
Look for the setting under Settings.Other and you will see the following below. Set this to true to disable vanilla treasure.
#If you have McMMo you will have to disable it in there as well.
DisableTreasure: false
Is there a public API?
No. I don't make APIs for any of my resources currently. This could change in the future but will not be prioritised.
How can I disable / add permissions to commands?
Disabling commands is very easy. In the config.yml, there is a section below:
Permissions:
MainMenu:
enabled: false
permission-node: 'pf.menu'
Shop:
enabled: false
permission-node: 'pf.shop'
Bag:
enabled: false
permission-node: 'pf.bag'
Deliveries:
enabled: false
permission-node: 'pf.deliveries'
Scales:
enabled: false
permission-node: 'pf.scales'
Gut:
enabled: false
permission-node: 'pf.gut'
Skills:
enabled: false
permission-node: 'pf.skills'
#enabling this will make it so players cannot catch custom fish or crabs.
CatchingCustomFish:
enabled: false
permission-node: 'pf.fish'
#This will require a permission to see the fish command list
FishCommandList:
enabled: false
permission-node: 'pf.commandslist'
#Disables fishing, fish shop, fish gutting, fish deliveries, fish bag and augment crafting / augmentation while in creative mode.
DisableFishingInCreative:
enabled: false
override-permission: 'pf.admin'
To disable a command, set the enable to true under the command and assuming the player does not have permission, they will not be able to use that command anymore. You can then attach these to NPCs using the /npc command function. (requires Citizens).
More questions will be added at a later point.
Last updated