AnonymousSocks 1 Posted February 17, 2021 Need help solving this issue. Just trying to change the camouflage value of a drone in another mod by creating a new drone through inheritance without overwriting the existing one in the original mod. I am almost there but running into an issue. https://gyazo.com/5f26742ad002f56945d5dfe0c060f008 class CfgPatches { class JLTS_drones_prowler; }; class CfgVehicles { class JLTS_UAV_prowler_gar { class assembleInfo; }; class JLTS_UAV_prowler_gar_backpack { class assembleInfo; }; class 212th_UAV_bag:JLTS_UAV_prowler_gar_backpack { author="South" display="212th UAV Stealth Drone"; class assembleInfo:assembleInfo { base=""; displayName="212th Prowler UAV"; assembleTo=" 212_UAV"; }; }; class 212_UAV:JLTS_UAV_prowler_gar { author="South"; displayName="212th Prowler UAV" camoflauge=0.6; class assembleInfo:assembleInfo { dissasembleTo[]="212th_UAV_bag" }; }; }; Share this post Link to post Share on other sites
m1lkm8n 411 Posted February 18, 2021 Missing a “;” after displayName="212th Prowler UAV" Share this post Link to post Share on other sites
AnonymousSocks 1 Posted February 18, 2021 Ah thank you! I showed this my friends, and even they couldn't find the error haha. 1 Share this post Link to post Share on other sites