
BFAPI
BFAPI is a specialized toolkit that significantly simplifies the process of developing mods for Minecraft. The main advantages of this API include:
• Facilitating the creation of standard game mechanics and features • Ensuring easy compatibility between various modifications • Simplifying work with configuration files and their settings
Compatible Add-ons
Among the popular mods using BFAPI are:
• TreeFeller - automatic tree chopping • SimpleHomes - home point teleportation system • FabricSit - ability to sit on blocks • FabricHealthDisplayer - creature health display • LifeSteal - health stealing mechanics
Recommended Mods
• FastDecay - accelerated leaf decay
Configuration Settings
The configuration file is located at bfapi.json
in the config directory and contains the following parameters:
Parameter | Type | Description | Default |
---|---|---|---|
debugMode | Boolean | Enable additional debug information | false |
blockedProviders | Array | Provider names to disable | N/A |
blockedMarks | Array | NbtMark names to disable | N/A |
previewMode | Boolean | Activation of experimental features | false |
{
"debugMode": false,
"blockedProviders": [],
"blockedMarks": [],
"previewMode": false
}