Jump to content
AnonymousSocks

''" encountered instead of '{'

Recommended Posts

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

 

Missing a “;” after

 

displayName="212th Prowler UAV"

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

×