Gudsawn 93 Posted February 15, 2014 (edited) I'm trying to overwrite the "RscMapControl" class which is proving a difficult task. I've already followed this guide but that assumes you are trying overwrite classes (e.g. BAF_Soldier_base_EP1) within a 'master' class (e.g. CfgVehicles). Here's what I have so far: class CfgPatches { class gdsn_OSMap { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {A3_UI_F, "A3_Functions_F", "A3_UIFonts_F", "A3_Data_F"}; }; }; class RscMapControl; // External class reference class RscMapControl : RscMapControl { //values in here }; This throws the expected error "Member class already defined". How would I correctly overwrite/replace values within RscMapControl? Thanks, J Edited February 15, 2014 by GDSN Share this post Link to post Share on other sites
UNN 0 Posted February 16, 2014 You can't inherit a base class like that and still use the same name, you have to redefine the entire class RscMapControl. Share this post Link to post Share on other sites
.kju 3245 Posted February 16, 2014 class CfgPatches { class gdsn_OSMap { units[] = {}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_UI_F"}; }; }; class RscMapControl { //values in here }; Share this post Link to post Share on other sites