How do I allow more then 1 home to be set.

  • Tech Support section is for getting help with FTB related problems. If there's a repeatable issue that can be labeled as a bug, then please use the issue tracker for the pack or the app at GitHub issue trackers - If there's no repository for a pack that means that the pack is old and/or will not be updated. Bugs for older packs will not be fixed, unless they are critical.

romrider07

New Member
Jul 29, 2019
18
0
0
Title How do I allow more then 1 home to be set.

Launcher Type Curse App

Modpack FTB Beyond

Modpack version Current

Have you modified the pack? No

Link to log file

Details of the issue I am trying to allow more then 1 /sethome but I cannot figure out how on my server. I don't have anything extra installed it's all fresh install. Does anyone know where/how to fix this?
 
Last edited by a moderator:
C

CDArena

Guest
Not sure about servers, but in single player:

/sethome - saves a spawnpoint default-named "home"
/home - teleports you to the default "home"

/sethome {some name or number} - saves a spawnpoint with the given name/number
/home {some number or name} - teleports you to the given name/number

/home list - shows a list of spawnpoint names

Are you talking about having issues sharing the points between players? I'm not sure how (or if) that works, but it it does work, make sure each players uses different names. (Unless the mod author has some way to specify a player - "/home list (playername)" does appear to be valid, but for all I know it simply ignores anything after the word "list")
 
C

CDArena

Guest
Personally, I use Journeymap waypoints and the Teleport buttons...
 

mc.crab

Well-Known Member
Feb 2, 2013
1,397
116
89
You need to edit the FTBU ranks.json, by default I think it only allows players to use one home.


Code:
{
  "default_ranks": {
    "player": "player",
    "op": "op"
  },
  "ranks": {
    "player": {
      "parent": "builtin_player",
      "permissions": [],
      "config": {
        "ftbu.claims.max_chunks": 100,
        "ftbu.chunkloader.max_chunks": 100,
        "ftbu.homes.max": 10,
        "ftbu.chunkloader.offline_timer": -1.0
      }
    },
    "op": {
      "parent": "builtin_op",
      "syntax": "<&2$name&r> ",
      "permissions": [],
      "config": {
        "ftbu.claims.max_chunks": 1000,
        "ftbu.chunkloader.max_chunks": 1000,
        "ftbu.homes.max": 100,
        "ftbu.chunkloader.offline_timer": -1.0
      }
    }
  }
}