Search the Community
Showing results for tags 'circular dependency'.
Found 1 result
-
Circular Dependency Error while building addon
_SCAR posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I have two mods: A mod that contain houses, properly named with Land_* prefixes. A terrain mod. From Terrain Builder I have imported the houses, and I can place them and render them with Buldozer - no problems here. Problems arise when I build the terrain mod, I get a: 19:10:37 ------------------------------------------------------------------------------------------------------------------ 19:10:37 Circular addon dependency detected (2 addons). 19:10:37 List of addons that can't be resolved and their dependencies: 19:10:37 ---------------------------------------------------- 19:10:37 my_terrain 19:10:37 - My_Terrain_Houses 19:10:37 ---------------------------------------------------- 19:10:37 My_Terrain_Houses 19:10:37 - my_terrain 19:10:37 ------------------------------------------------------------------------------------------------------------------ ErrorMessage: Circular addon dependency detected, check Rpt for details. ======================================================= This is CfgPatches for my_terrain: class CfgPatches { class my_terrain { units[] = {my_terrain}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_Data_F","A3_Roads_F","A3_Map_Data","A3_Map_Stratis","A3_Structures_F"}; fileName = "my_terrain.pbo"; author[] = {"_SCAR"}; versionDesc = "My Terrain"; version = "1.00"; versionStr = 1.0; versionAr[] = {1, 0, 0}; magazines[] = {}; ammo[] = {}; }; }; This is CfgPatches for My_Terrain_Houses: class CfgPatches { class My_Terrain_Houses { // author name = "My Terrain Houses"; author = "_SCAR"; // settings weapons[] = {}; requiredVersion = 0.1; units[] = { "Land_Colored_House_01_F" }; requiredAddons[] = {"A3_Structures_F"}; }; }; This generates 2 pbo: @my_terrain\Addons\my_terrain.pbo @my_terrain\Addons\my_terrain_houses.pbo Any ideas of what I may be doing wrong? Or, alternatively, how to generate a *single* pbo which contains everything?