Basic entrance/exit configuration confusionSolved
Okay, so I'm not usually this dense but for some reason I can't figure out how to configure the portals in regards to assigning the approriate entrances and exits. I've tried both using the in game commands as well as researching the config file but I guess I'm just missing something rather basic. I'll describe my basic setup and what I'm shooting for and hoping that someone might be able to point me to what should be the blantantly obvious change to make.

So short description is that I'm trying to create several commuity locations around the map with "quick travel" spot (aka: portals) to travel between them. Each of these locations with have a single exit portal for travel from the other locations as well as an exit portal for travel from each of the other locations. So if I have four quick travel spots then each of these locations will have four portals - one exit and three entrances. 

Here is the config I'm using. It doesn't include any of the linking between entrances and exits as I know for a fact what I have is wrong so instead of wasting people's time wading through that I thought it best to just ommit it. Also, I have stripped this down to only two locations to keep things simpler and the file smaller.

Any help you can provide would be greatly appreciated. Much thanks.


{
  "Sphere Radius": 1.0,
  "Sphere Density (Enterable)": 3,
  "Sphere Density (Not Enterable)": 1,
  "Portals": [
    {
      "Name": "ExitForSpot1",
      "IsOneWay": true,
      "RequiresIndiviualPermission": false,
      "TeleportationTime": 0,
      "Entrances": [ ],
      "Exits": [
        {
          "x": 19,
          "y": 26,
          "z": -458
        }
      ]
    },
    {
      "Name": "ExitForSpot2",
      "IsOneWay": true,
      "RequiresIndiviualPermission": false,
      "TeleportationTime": 0,
      "Entrances": [ ],
      "Exits": [
        {
          "x": -5,
          "y": 25,
          "z": -440
        }
      ]
    },
    {
      "Name": "EntranceForSpot2FromSpot1",
      "IsOneWay": true,
      "RequiresIndiviualPermission": false,
      "TeleportationTime": 0,
      "Entrances": [
        {
          "x": 16,
          "y": 26,
          "z": -458
        }
      ],
      "Exits": []
    },
    {
      "Name": "EntranceForSpot1FromSpot2",
      "IsOneWay": true,
      "RequiresIndiviualPermission": false,
      "TeleportationTime": 0,
      "Entrances": [
        {
          "x": -5,
          "y": 25,
          "z": -443
        }
      ],
      "Exits": []
    }
  ]
}
​
Okay, I knew it had to be something pretty basic that was just eluding me and that once I figured it out it would be obvious. Consider it obvious. 

:)
Locked automatically