# FAQ (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
```

{% hint style="warning" %}
Going over 100% will cause some tiers of fish to not be calculated and may lead to them being uncatchable.&#x20;
{% endhint %}

## 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.&#x20;

## 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pyrotempus.gitbook.io/pyro-plugins/pyrofishingpro/setup-manual/faq-server-owners.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
