Request how to increase allowed claimed chunks

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
A

Arkhelios

Guest
Good evening

sorry for my English

Here I would like to know how to increment the ftb utilities chunks loaded.

Here is my config file on my server, which does not work:

{
"default_ranks": {
"player": "player",
"op": "op"
}
"ranks": {
"player": {
"parent": "builtin_player",
"permissions": [],
"config": {
"ftbu.claims.max_chunks": 1000,
"ftbu.chunkloader.max_chunks": 1000
}
}
"op": {
"parent": "builtin_op",
"syntax": "<& 2 $ name & r>",
"permissions": [],
"config": {
"ftbu.claims.max_chunks": 3000,
"ftbu.chunkloader.max_chunks": 1000
}
}
}

I do not understand why it does not work, it seems correct. Someone would have the solution to this problem? Thank you beforehand
 
P

Pjc21

Guest
@Arkhelios - just to confirm when you say config file you mean the "ranks.json" file located in local/ftbutilities folder on server. If yes then the file looks good apart from two things - missing a couple comma's & a closing bracket
- highlighted in red :)


{
"default_ranks": {
"player": "player",
"op": "op"
},
"ranks": {
"player": {
"parent": "builtin_player",
"permissions": [],
"config": {
"ftbu.claims.max_chunks": 1000,
"ftbu.chunkloader.max_chunks": 1000
}
},
"op": {
"parent": "builtin_op",
"syntax": "<&2$name&r> ",
"permissions": [],
"config": {
"ftbu.claims.max_chunks": 3000,
"ftbu.chunkloader.max_chunks": 1000
}
}
}
}

Hope this helps.
 
  • Like
Reactions: Hambeau

Hambeau

Over-Achiever
Jul 24, 2013
2,598
1,531
213
@Arkhelios - just to confirm when you say config file you mean the "ranks.json" file located in local/ftbutilities folder on server. If yes then the file looks good apart from two things - missing a couple comma's & a closing bracket
- highlighted in red :)

... (moved outside quote)
Hope this helps.

Code:
{
   "default_ranks": {
     "player": "player",
     "op": "op"
   },
   "ranks": {
     "player": {
       "parent": "builtin_player",
       "permissions": [],
       "config": {
       "ftbu.claims.max_chunks": 1000,
       "ftbu.chunkloader.max_chunks": 1000
       }
     },
     "op": {
       "parent": "builtin_op",
       "syntax": "<&2$name&r> ",
       "permissions": [],
       "config": {
         "ftbu.claims.max_chunks": 3000,
         "ftbu.chunkloader.max_chunks": 1000
       }
     }
   }
}
Indenting code helps to find these issues but the "Code Block" apparently ignores color tags... See original post for missing commas and brackets.
I like to use the "Code block".

Code:
 This is a {Code}{/Code} block:  Just replace { with [ and } with ]

You can properly indent multi-column data with spaces to display code, tables
and the like because it uses a monospaced font and does not ignore extra
white spaces.

Col. A      Col. B
   1          a
   2          b

Tabs won't work but spaces do.
 
Last edited:
  • Like
Reactions: Pjc21
A

Arkhelios

Guest
Thanks a lot for your help ! It works

On the other hand, how to add the permission of home without having the bug of syntax?

Apparently, the loaded chunks do not work in an RFTools dimension :(
 
P

Pjc21

Guest
@Arkhelios, did some testing on home permissions and posted new thread here. Not sure if this is the info your after, let me know.

As far as the loaded chunks goes, depending on the modpack your playing you could add the ChickenChunks 1.8+ mod which will allow you to craft an in-game chunk loader that can be placed in the world - that should keep RFTools dimension loaded when placed in the dimensions, right-clicking on it will allow you to increase or decrease to chunks to load.

Chicken chunks 1.8+ also requires CodeChicken Lib 1.8+

Hope this helps :)
 
Last edited:

Hambeau

Over-Achiever
Jul 24, 2013
2,598
1,531
213
If you are using an FtB pack v.1.12.2 you may already have Chicken chunks in the pack... The FtB Utilities chunk loader is bugged and Chicken Chunks was added as a stopgap, at least in the Direwolf20 pack.