Skip to content

Instantly share code, notes, and snippets.

@LatvianModder
Last active March 1, 2017 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LatvianModder/5cb31cc1d15b64ead607f5ad8aa0b583 to your computer and use it in GitHub Desktop.
Save LatvianModder/5cb31cc1d15b64ead607f5ad8aa0b583 to your computer and use it in GitHub Desktop.
FTBUtilities: Setting up ranks.json

Example ranks:

{
    "default_ranks": {
        "player": "player",
        "op": "op"
    },
    "ranks": {
        "player": {
            "parent": "builtin_player",
            "permissions": [
              "+commands.tp"
            ],
            "config": {}
        }
        "mod": {
            "parent": "builtin_op",
            "syntax": "<&1Mod &r$name> ",
            "permissions": [
                "+*"
            ],
            "config": {
                "ftbu.badge": "http://files.latmod.com/badges/admin.png"
            }
        },
        "admin": {
            "parent": "mod",
            "syntax": "<&4Admin &r$name> "
        }
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment