BPages
- Create helpful info pages for your server. Main command is /page.
- “Alias” in config refers to the page alias, for alias “help” it will be /page help - or simply click on the pages when using the main /page command.
- User permission is “bpages.user” (base command) and “bpages.page.alias” for specific page permissions.
- Admin permission is “bpages.admin” (for config reload /page reload)

Example config:
mainCommandAlias=page
mainLinesPerPage=10
mainPagePadding="&6="
mainPagePrefix="&l&8-&r&b"
mainPageTitle="&l&8[&r&dB&aPages&l&8]&r"
pageListNode {
    pageList=[
        {
            alias=help
            content=[
                "Example content"
            ]
            linesPerPage=10
            padding="&8="
            title="&bHelp"
        },
        {
            alias=kits
            content=[
                "Example content"
            ]
            linesPerPage=10
            padding="&l-"
            title="&aKits"
        }
    ]
}