Heya, just wondering why this keeps getting errors on SolarSystemGenerator. it's a direct save from the EPD. Code: --- TemperatureDay: [-200, -100] Radiation: [5, 10] UseFixed: True PvPProb: 0.5 Gravity: 0 Music: [moonstone, space, DistantWorlds, Migration] PlayfieldType: Space PlanetType: Space Skybox: - [SunFlareWhite3Space, SkyboxStarsGreen, PrefabNebulaBlueGlittery] POIs: - Type: omgdoomed Name: [omgdoomed] DisplayName: OMG Doomed Mode: Survival CountMinMax: [1, 1] Probability: 1 InitPower: True Properties: - Key: RegenAfter Value: 1 FixedPlayerStart: - Mode: Survival Spawn: Structure Structure: omgdoomed Items: ['MultiToolT2, MultiCharge:999, EVABoost'] Armor: ArmorMedium Think i put that in right lol
First thing I see is that Type is set to omgdoomed. Needs to be BA_Player instead. Code: POIs: - Type: BA_Player Name: [omgdoomed] DisplayName: OMG Doomed Mode: Survival CountMinMax: [1, 1] Probability: 1 InitPower: True Properties: - Key: RegenAfter Value: 1 /jmc
Under "FixedPlayerStart," try putting single quotation marks around the structure name. The default documentation uses double quotes (which you could try), but I have not found that it makes a big difference so long as you are consistent in which ones you use. Here's the code: Code: FixedPlayerStart: - Mode: Survival Spawn: Structure Structure: 'omgdoomed' Items: ['MultiToolT2, MultiCharge:999, EVABoost'] Armor: ArmorMedium
Does your omgdoomed POI have a player spawner? Here's the code for my server's space start playfield, which works fine: (umm how do you pose code snippets on this forum?) The POI itself: - Type: BA_Admin Prefab: ODBA-OmicronOmega Mode: Survival Name: Omega Station Pos: [ -139, 35, 203 ] Rot: [ 0, 0, 0 ] InitPower: True Properties: - Key: PersonalContainer Value: "AntibioticOintment:1, StomachPills:1, EnergyDrink:1, EVABoost, RadiationBoost, ArmorMedium, OxygenBottleSmall:10, Drill, BioFuel:8" - Key: MapMarker Value: Neutral Down at fixed start area: FixedPlayerStart: - Mode: Debug # Creative or Survival Pos: [ -5000, 0, 5000 ] # position coordinates RotY: 0 # rotation angle around Y axis - Mode: Survival Spawn: Structure Structure: "Omega Station"
Along the top bar right above where you type your post, there is a little + icon (4th from the right, next to the save and undo/redo icons). Click that and then select code and just copy and paste whatever you need into the box. Nice thing is it preserves the spacing and format so others can easily paste it into their yaml files if needed.