Problem FTBUtils - New version included w/ FTB Beyonds

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
S

Snigz

Guest
Hello there !
I'm really sorry to bother you if this was already answered, but I can't seem to find any clue on it ! Maybe I'm bad at searching !
Anyways, I'm having a bit of trouble with the new FTBUtils packed with FTB Beyond
I'm running a private server, and I'm trying to edit the config, such as modifying max homes/claims etc...
I used to (on prior FTBUtils versions) go to local/ftbu and look for config.json to edit those values, but I can't find the place to edit them now.
config.json doesn't show any kind of those things to edit, and the only clue I got is an .html file that listed all Rank Config. I tried entering "ftbu.chunkloader.max_chunks 100" as a command, but it didn't work.
Well, as you guesses, my question is how do I edit those things in the new version of FTBUtils ?
Thanks !
 

Henry Link

Forum Addict
Dec 23, 2012
2,601
553
153
USA - East Coast
You need to edit the ranks.jason file. Below is an example of the one I'm currently using on Beyond.

Code:
{ 
 "default_ranks": {
    "player": "player",
    "op": "op"
  },
  "ranks": {
    "player": {
      "parent": "builtin_player",
      "permissions": [],
      "config": {
        "ftbu.chunkloader.max_chunks": 25,
        "ftbu.claims.max_chunks": 500
      }
    },
    "op": {
      "parent": "builtin_op",
      "syntax": "<&2$name&r> ",
      "permissions": [],
      "config": {
        "ftbu.chunkloader.max_chunks": 50,
        "ftbu.claims.max_chunks": 1000
      }
    }
  }
}
 
  • Like
Reactions: Jeffwcollins