Jump to content
Sign in to follow this  
major_desync

Binarisation problem - addon builder and pboproject - possibly inheritance related.

Recommended Posts

Hi all,

I've got my first terrain all the way to final binarization - but I'm failing to make that one last hurdle. I've looked everywhere, but can't seem to get a resolution, Perhaps some of the wise folk here might know what's up.

So here's the facts:

- config.cpp passes Eliteness LintCheck without errors.

- the terrain packs fine unbinarized via Addon Builder; I can load it up and run it in game without any obvious issue.

- however, when I binarize with Addon Builder, it packs, but the satmap textures are missing in game. But hey, Addon Builder, right? :p

- in pboproject, I've also had a series of issues (2 resolved, 1 unresolved):

1: at first packing failed, due to lack of (I think) a RequiredAddons line in the config. Certainly when I added one (see config below), this issue went away.

2: Then I ran into an issue where only the configs packed and nothing else. This I fixed thanks to this post on the forums.

3: Now - the packing process proceeds halfway, then crashes at the Bis Binarise stage (it says "Bis Binarise failed Gorgona"), producing the outputs below. My best guess is that there's an issue with the inheritance from Stratis - since it looks to be not finding a bunch of CfgWorlds parameters (I think). However I have no idea how to fix this. So any help would be appreciated!

By way of a bribe - here's some screenshots of the terrain itself: :)

Config:

#define _ARMA_

//Class config.bin{
class CfgPatches
{
class Gorgona
{
 units[] = {"Gorgona"};
 weapons[] = {};
 requiredVersion = 1.0;
 requiredAddons[] = {"A3_Data_F","A3_Roads_F","A3_Rocks_F","A3_Structures_F","A3_Structures_F_bootcamp","A3_Structures_F_epa","A3_Structures_F_epb","A3_Structures_F_epc","A3_Map_Data","A3_Map_Stratis"};
 version = "30/07/2011";
 fileName = "Gorgona.pbo";
 author = "Major Desync";
};
};
class CfgWorlds
{
class CAWorld;
class Stratis: CAWorld
{
 class Grid;
 class DefaultClutter;
};
class Gorgona: Stratis
{
 cutscenes[] = {};
 description = "Gorgona";
 worldName = "Gorgona\Gorgona.wrp";
 pictureShot[] = {};
 startTime = "11:00";
 startDate = "01/01/2015";
 startWeather = 0.2;
 startFog = 0.0;
 forecastWeather = 0.6;
 forecastFog = 0.0;
 centerPosition[] = {2048,2048,500};
 seagullPos[] = {2048,2048,500};
 longitude = 10;
 latitude = -43;
 elevationOffset = 0;
  envTexture = "A3\Data_f\env_land_ca.tga";
 minTreesInForestSquare = 2;
 minRocksInRockSquare = 2;
 newRoadsShape = "Gorgona\data\roads\roads.shp";
 ilsPosition[] = {1024,1024};
 ilsDirection[] = {0.5075,0.08,-0.8616};
 ilsTaxiIn[] = {};
 ilsTaxiOff[] = {};
 drawTaxiway = 0;
class SecondaryAirports {};

class Sea
 {
  seaTexture = "a3\data_f\seatexture_co.paa";
  seaMaterial = "#water";
  shoreMaterial = "#shore";
  shoreFoamMaterial = "#shorefoam";
  shoreWetMaterial = "#shorewet";
  WaterMapScale = 20;
  WaterGrid = 50;
  MaxTide = 0;
  MaxWave = 0;
  SeaWaveXScale = "2.0/50";
  SeaWaveZScale = "1.0/50";
  SeaWaveHScale = 2.0;
  SeaWaveXDuration = 5000;
  SeaWaveZDuration = 10000;
 };

/*
class OutsideTerrain
     {
       satellite = "Gorgona\Data\s_satout_co.paa";
       enableTerrainSynth = 1;
       class Layers
       {
         class Layer0
         {
           nopx = "Gorgona\data\gorgona_strbeach_nopx.paa";
           texture = "Gorgonai\data\gorgona_strbeach_co.paa";
         };
       };
     };
*/


 class Grid: Grid
 {
  offsetX = 0;
  offsetY = 2560;
  class Zoom1
  {
   zoomMax = 0.15;
   format = "XY";
   formatX = "000";
   formatY = "000";
   stepX = 100;
   stepY = -100;
  };
  class Zoom2
  {
   zoomMax = 0.85;
   format = "XY";
   formatX = "00";
   formatY = "00";
   stepX = 1000;
   stepY = -1000;
  };
  class Zoom3
  {
   zoomMax = 1e+030.0;
   format = "XY";
   formatX = "0";
   formatY = "0";
   stepX = 10000;
   stepY = -10000;
  };
 };
#include "cfgClutter.hpp"
	class Names
	{
		#include "Gorgona.hpp"
	};
};
};
class CfgWorldList
{
class Gorgona{};
};
class CfgMissions
{
class Cutscenes
{

};
};


//SURFACES
#include "cfgSurfaces.hpp"

Pboproject binlog (UPDATE WITH FULL BINLOG):

No entry 'P:\bin\config.cpp.CfgVehicles'.

No entry 'P:\bin\config.cpp.CfgAmmo'.

No entry 'P:\bin\config.cpp.CfgNonAIVehicles'.

No entry 'P:\bin\config.cpp.CfgInGameUI'.

No entry '.DebugFont'.

No entry '.font'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgFonts'.

No entry 'P:\bin\config.cpp.CfgFontFamilies'.

String id 0 is not registered

!!! UNREGISTERED STRING

No entry '.'.

No entry '.fonts'.

Size: '/' not an array

No entry '.size'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.rough'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.dust'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.soundEnviron'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.isWater'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/Default.files'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_dry_grass.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_dry_grass.isWater'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_strbeach.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_strbeach.isWater'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_stony.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_stony.isWater'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaceCharacters.empty'.

No entry '.probability'.

Size: '/' not an array

Default clutter names TypeX used for /

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_rock.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_rock.isWater'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaceCharacters.Empty'.

No entry '.probability'.

Size: '/' not an array

Default clutter names TypeX used for /

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_forest_pine.impact'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces/gorgo_forest_pine.isWater'.

'/' is not a value

Clutter names value count different in P:\bin\config.cpp/CfgSurfaceCharacters/gorgo_forest_pine_clutter/ (4!=5)

Config: 'names' array does not have 5 entries.

No entry 'P:\bin\config.cpp.CfgDefaultSettings'.

No entry '.defaultVisibility'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgDefaultSettings'.

No entry '.defaultTerrainGrid'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgDefaultSettings'.

No entry '.defaultObjectViewDistance'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgDefaultSettings'.

No entry '.hazeDefaultDistance'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.RadioChannels'.

No entry '.GlobalChannel'.

No entry '.level'.

'/' is not a value

No entry '.noise'.

'/' is not a value

No entry '.micOuts'.

'/' is not a value

No entry '.pauseAfterWord'.

'/' is not a value

No entry '.pauseInNumber'.

'/' is not a value

No entry '.pauseAfterNumber'.

'/' is not a value

No entry '.pauseInUnitList'.

'/' is not a value

No entry '.pauseAfterUnitList'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgVoice'.

No speaker configuration found.

No entry 'P:\bin\config.cpp/CfgWorlds.DefaultWorld'.

No entry '.skyTexture'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds.DefaultWorld'.

No entry '.skyTextureR'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgLensFlare'.

No entry '.flarePos'.

..\Lib\scene.cpp(2153)(func: Scene::InitLensFlares) [AssertUSR] MainThread=2336 Group: Config Invalid configuration of flarePos - must be array with 16 members!

No entry '.flareSizeCam'.

..\Lib\scene.cpp(2184)(func: Scene::InitLensFlares) [AssertUSR] MainThread=2336 Group: Config Invalid configuration of flareSizeCam - must be array with 16 members!

No entry '.flareBright'.

..\Lib\scene.cpp(2215)(func: Scene::InitLensFlares) [AssertUSR] MainThread=2336 Group: Config Invalid configuration of flareBright - must be array with 16 members!

No entry '.flareSizeEye'.

..\Lib\scene.cpp(2246)(func: Scene::InitLensFlares) [AssertUSR] MainThread=2336 Group: Config Invalid configuration of flareSizeEye - must be array at least 1 member!

No entry '.flareSizeEyeSun'.

..\Lib\scene.cpp(2277)(func: Scene::InitLensFlares) [AssertUSR] MainThread=2336 Group: Config Invalid configuration of flareSizeEyeSun - must be array at least 1 member!

<world = "Gorgona\gorgona.wrp">

No entry 'P:\bin\config.cpp/CfgWorlds.DefaultWorld'.

No entry '.Weather'.

No entry '.RainConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.averageCloudLimit'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minRainDensity'.

'/' is not a value

No entry '.maxRainDensity'.

'/' is not a value

No entry '.rainFading'.

'/' is not a value

No entry '.squareLength'.

'/' is not a value

No entry '.RainbowConfig'.

No entry '.distance'.

'/' is not a value

No entry '.intensityCoef'.

'/' is not a value

No entry '.maxCloudiness'.

'/' is not a value

No entry '.LightningsConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minCount'.

'/' is not a value

No entry '.maxCount'.

'/' is not a value

No entry '.scatter'.

'/' is not a value

No entry '.WindConfig'.

No entry '.windChange'.

'/' is not a value

No entry '.minForce'.

'/' is not a value

No entry '.maxForce'.

'/' is not a value

No entry '.minForceScatter'.

'/' is not a value

No entry '.maxForceScatter'.

'/' is not a value

No entry '.minGustCount'.

'/' is not a value

No entry '.maxGustCount'.

'/' is not a value

No entry '.gustTimeScatter'.

'/' is not a value

No entry '.minGustScatter'.

'/' is not a value

No entry '.maxGustScatter'.

'/' is not a value

No entry '.gustInfluenceMin'.

'/' is not a value

No entry '.gustInfluenceMax'.

'/' is not a value

No entry '.speedOfWindChange'.

'/' is not a value

No entry '.minGustValue'.

'/' is not a value

No entry '.maxGustValue'.

'/' is not a value

No entry '.Overcast'.

No entry '.Lighting'.

No weather defined in .Overcast

No lighting defined in .Lighting

No entry '.rainEnabled'.

'/' is not a value

No entry '.ThunderboltNorm'.

No entry '.model'.

'/' is not a value

Cannot open object

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.ThunderboltHeavy'.

No entry '.model'.

'/' is not a value

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.temperatureDayMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureDayMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.overcastTemperatureFactor'.

'/' is not a value

No entry '.blackSurfaceTemperatureDelta'.

'/' is not a value

No entry '.whiteSurfaceTemperatureDelta'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds.DefaultWorld'.

No entry '.Weather'.

No entry '.RainConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.averageCloudLimit'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minRainDensity'.

'/' is not a value

No entry '.maxRainDensity'.

'/' is not a value

No entry '.rainFading'.

'/' is not a value

No entry '.squareLength'.

'/' is not a value

No entry '.RainbowConfig'.

No entry '.distance'.

'/' is not a value

No entry '.intensityCoef'.

'/' is not a value

No entry '.maxCloudiness'.

'/' is not a value

No entry '.LightningsConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minCount'.

'/' is not a value

No entry '.maxCount'.

'/' is not a value

No entry '.scatter'.

'/' is not a value

No entry '.WindConfig'.

No entry '.windChange'.

'/' is not a value

No entry '.minForce'.

'/' is not a value

No entry '.maxForce'.

'/' is not a value

No entry '.minForceScatter'.

'/' is not a value

No entry '.maxForceScatter'.

'/' is not a value

No entry '.minGustCount'.

'/' is not a value

No entry '.maxGustCount'.

'/' is not a value

No entry '.gustTimeScatter'.

'/' is not a value

No entry '.minGustScatter'.

'/' is not a value

No entry '.maxGustScatter'.

'/' is not a value

No entry '.gustInfluenceMin'.

'/' is not a value

No entry '.gustInfluenceMax'.

'/' is not a value

No entry '.speedOfWindChange'.

'/' is not a value

No entry '.minGustValue'.

'/' is not a value

No entry '.maxGustValue'.

'/' is not a value

No entry '.Overcast'.

No entry '.Lighting'.

No weather defined in .Overcast

No lighting defined in .Lighting

No entry '.rainEnabled'.

'/' is not a value

No entry '.ThunderboltNorm'.

No entry '.model'.

'/' is not a value

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.ThunderboltHeavy'.

No entry '.model'.

'/' is not a value

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.temperatureDayMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureDayMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.overcastTemperatureFactor'.

'/' is not a value

No entry '.blackSurfaceTemperatureDelta'.

'/' is not a value

No entry '.whiteSurfaceTemperatureDelta'.

'/' is not a value

No entry '.aroundSunCoefMultiplier'.

'/' is not a value

No entry '.aroundSunCoefExponent'.

'/' is not a value

No entry '.horizonParallaxCoef'.

'/' is not a value

No entry '.horizonFogColorationStart'.

'/' is not a value

No entry '.skyFogColorationStart'.

'/' is not a value

No entry '.skyColorInfluencesFogColor'.

'/' is not a value

No entry '.horizonSunColorationScale'.

'/' is not a value

No entry '.midDetailTexture'.

'/' is not a value

No entry '.seaTexture'.

'/' is not a value

No entry '.Rain'.

No entry '.texture'.

'/' is not a value

No entry '.seaMaterial'.

'/' is not a value

No entry '.shoreMaterial'.

'/' is not a value

No entry '.shoreFoamMaterial'.

'/' is not a value

No entry '.shoreWetMaterial'.

'/' is not a value

No entry '.terrainMaterial'.

'/' is not a value

Cannot load material file .

Cannot load material file

No entry '.clouds'.

[]: '/' not an array

No entry '.clouds'.

[]: '/' not an array

No entry '.clouds'.

[]: '/' not an array

No entry '.clouds'.

[]: '/' not an array

No entry '.clutterGrid'.

'/' is not a value

No entry '.clutterDist'.

'/' is not a value

No entry '.noDetailDist'.

'/' is not a value

No entry '.fullDetailDist'.

'/' is not a value

No entry '.satelliteNormalBlendStart'.

'/' is not a value

No entry '.satelliteNormalBlendEnd'.

'/' is not a value

No entry '.satelliteNormalOnDetail'.

'/' is not a value

No entry '.soundMapSizeCoef'.

'/' is not a value

No entry '.Underwater'.

No entry '.noWaterFog'.

'/' is not a value

No entry '.fullWaterFog'.

'/' is not a value

No entry '.deepWaterFog'.

'/' is not a value

No entry '.waterFogDistance'.

'/' is not a value

No entry '.waterFogDistanceNear'.

'/' is not a value

No entry '.waterColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.deepWaterColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.surfaceColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.deepSurfaceColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.enableTracks'.

'/' is not a value

No entry '.enableFootsteps'.

'/' is not a value

No entry '.enableBloodSplashes'.

'/' is not a value

No entry '.Clutter'.

No entry '.Rain'.

No entry '.raindrop'.

'/' is not a value

No entry '.skyObject'.

'/' is not a value

No entry '.underwaterOcclusionObject'.

'/' is not a value

No entry '.starsObject'.

'/' is not a value

No entry '.pointObject'.

'/' is not a value

No entry '.horizontObject'.

'/' is not a value

No entry '.haloObject'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgSurfaces.Water'.

No entry '.files'.

'/' is not a value

No entry '.rough'.

'/' is not a value

No entry '.lucidity'.

'/' is not a value

No entry '.dust'.

'/' is not a value

No entry '.soundEnviron'.

'/' is not a value

No entry '.impact'.

'/' is not a value

String id 0 is not registered

No entry 'P:\bin\config.cpp.CfgInGameUI'.

No entry '.DragAndDropFont'.

No entry '.font'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgFonts'.

No entry '.size'.

'/' is not a value

No entry '.colorEnabled'.

Size: '/' not an array

Size: '/' not an array

No entry '.colorDisabled'.

Size: '/' not an array

Size: '/' not an array

No entry '.hideCursor'.

'/' is not a value

No entry '.shadow'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgWrapperUI'.

No entry '.Cursors'.

No entry '.Arrow'.

No entry '.texture'.

'/' is not a value

No entry '.hotspotX'.

'/' is not a value

No entry '.hotspotY'.

'/' is not a value

No entry '.width'.

'/' is not a value

No entry '.height'.

'/' is not a value

No entry '.color'.

Size: '/' not an array

Size: '/' not an array

No entry 'P:\bin\config.cpp.RscDisplayLoading'.

No entry '.Variants'.

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.Weather'.

No entry '.RainConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.averageCloudLimit'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minRainDensity'.

'/' is not a value

No entry '.maxRainDensity'.

'/' is not a value

No entry '.rainFading'.

'/' is not a value

No entry '.squareLength'.

'/' is not a value

No entry '.RainbowConfig'.

No entry '.distance'.

'/' is not a value

No entry '.intensityCoef'.

'/' is not a value

No entry '.maxCloudiness'.

'/' is not a value

No entry '.LightningsConfig'.

No entry '.minCloudiness'.

'/' is not a value

No entry '.minProbability'.

'/' is not a value

No entry '.maxProbability'.

'/' is not a value

No entry '.minCount'.

'/' is not a value

No entry '.maxCount'.

'/' is not a value

No entry '.scatter'.

'/' is not a value

No entry '.WindConfig'.

No entry '.windChange'.

'/' is not a value

No entry '.minForce'.

'/' is not a value

No entry '.maxForce'.

'/' is not a value

No entry '.minForceScatter'.

'/' is not a value

No entry '.maxForceScatter'.

'/' is not a value

No entry '.minGustCount'.

'/' is not a value

No entry '.maxGustCount'.

'/' is not a value

No entry '.gustTimeScatter'.

'/' is not a value

No entry '.minGustScatter'.

'/' is not a value

No entry '.maxGustScatter'.

'/' is not a value

No entry '.gustInfluenceMin'.

'/' is not a value

No entry '.gustInfluenceMax'.

'/' is not a value

No entry '.speedOfWindChange'.

'/' is not a value

No entry '.minGustValue'.

'/' is not a value

No entry '.maxGustValue'.

'/' is not a value

No entry '.Overcast'.

No entry '.Lighting'.

No weather defined in .Overcast

No lighting defined in .Lighting

No entry '.rainEnabled'.

'/' is not a value

No entry '.ThunderboltNorm'.

No entry '.model'.

'/' is not a value

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.ThunderboltHeavy'.

No entry '.model'.

'/' is not a value

No entry '.soundFar'.

Size: '/' not an array

No entry '.soundNear'.

Size: '/' not an array

No entry '.temperatureDayMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureDayMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMax'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.temperatureNightMin'.

Size: '/' not an array

Size: '/' not an array

Warning: expected 12 values in the array , but only 0 present

Size: '/' not an array

Size: '/' not an array

Size: '/' not an array

Error: unable to load content of the array

No entry '.overcastTemperatureFactor'.

'/' is not a value

No entry '.blackSurfaceTemperatureDelta'.

'/' is not a value

No entry '.whiteSurfaceTemperatureDelta'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.aroundSunCoefMultiplier'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.aroundSunCoefExponent'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.horizonParallaxCoef'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.horizonFogColorationStart'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.skyFogColorationStart'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.skyColorInfluencesFogColor'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.horizonSunColorationScale'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.midDetailTexture'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.seaTexture'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.Rain'.

No entry '.texture'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.seaMaterial'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.shoreMaterial'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.shoreFoamMaterial'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.shoreWetMaterial'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.terrainMaterial'.

'/' is not a value

No entry 'P:\bin\config.cpp.CfgMaterials'.

Material #water not found in CfgMaterials

No entry 'P:\bin\config.cpp.CfgMaterials'.

Material #shore not found in CfgMaterials

No entry 'P:\bin\config.cpp.CfgMaterials'.

Material #shorefoam not found in CfgMaterials

No entry 'P:\bin\config.cpp.CfgMaterials'.

Material #shorewet not found in CfgMaterials

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clouds'.

[]: '/' not an array

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clouds'.

[]: '/' not an array

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clouds'.

[]: '/' not an array

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clouds'.

[]: '/' not an array

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clutterGrid'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.clutterDist'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.noDetailDist'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.fullDetailDist'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.satelliteNormalBlendStart'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.satelliteNormalBlendEnd'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.satelliteNormalOnDetail'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.soundMapSizeCoef'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.Underwater'.

No entry '.noWaterFog'.

'/' is not a value

No entry '.fullWaterFog'.

'/' is not a value

No entry '.deepWaterFog'.

'/' is not a value

No entry '.waterFogDistance'.

'/' is not a value

No entry '.waterFogDistanceNear'.

'/' is not a value

No entry '.waterColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.deepWaterColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.surfaceColor'.

Size: '/' not an array

Size: '/' not an array

No entry '.deepSurfaceColor'.

Size: '/' not an array

Size: '/' not an array

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.enableTracks'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.enableFootsteps'.

'/' is not a value

No entry 'P:\bin\config.cpp/CfgWorlds/Gorgona.enableBloodSplashes'.

'/' is not a value

Edited by Major_Desync
To provide more info

Share this post


Link to post
Share on other sites

I've resolved this. It turned out to be a pboProject/ArmA3p issue rather than inheritance.

Reinstalling and rerunning ArmA3p allowed binarisation with pboProject to complete successfully.

I do have a couple of minor irritations though:

1: With the terrain enabled in expansions - I get a couple of error dialogues as I start Arma3:

- The first is "Addon 'Gorgona' requires addon 'A3_Structures_F_bootcamp'". This is indeed one of the required addons in the config. I'm just not sure why Arma3 wants to make an issue of it. It's not serious - clicking OK allows startup to proceed.

- The second is "Config: 'names' array does not have 5 entries". This is despite the fact I do have more than 5 entries in the names.hpp (which display perfectly). Again, it's not serious - click OK and start up continues.

Does anyone know how to get rid of these issues (or why they might be occurring)?

2: The binarised terrain throws up an error when a Zeus gamemaster module is placed down: "No entry 'Config.bin/cfgPatches.A3_Rock_f'" (regardless what Default Addon setting is selected in the module dialogue). This is probably not the forum to ask about Zeus compatibility, but I'm wondering if anyone else has encountered and overcome this? Also - the addon filename in A3 is Rocks_f. Is there just a typo in the error message or is Zeus bugged in looking for the wrong filename?

Those minor issues aside, the terrain works fine and loads up wonderfully quickly. I'll be sending it out for private alpha shortly and (barring disasters) hope to have a public beta for you all to play with by the end of the month.

Edited by Major_Desync
typos

Share this post


Link to post
Share on other sites

OK - sorted all these issues. The source of problem was located between computer and chair. :p

Idiot that I was - I thought the requiredAddons line of the Config needed to include all the addons used on the map. In fact it just needs the ones you see in the Altis or Stratis configs:

requiredAddons[] = {"A3_Data_F","A3_Roads_F","A3_Structures_F","A3_Map_Data"};

Lesson learned: in mapmaking, confine creative thinking to the map itself and not to innovations in coding. :eek:

I still have the map icon issue noted elsewhere, but will need to see if the amazing Mikero can sort that one out.

Share this post


Link to post
Share on other sites

I am having the exact same issue you did. I am not sure what I am missing. Under setup my used only when building island area is empty. Should there be something there.

Share this post


Link to post
Share on other sites

Short answer (also the long answer ;)): I didn't. I flagged it as a known issue in the release.

It is an annoying bug, as it makes it difficult to accurately place triggers and units in the Editor, but I live in hope that Top Men are working on it.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×