Jump to content
Sign in to follow this  
mcfck

Game crash

Recommended Posts

Hello! I need help. My game crash when i place my model,i create this model. Why it happend? How I can fix it?
My config.cpp

 

#include "basicdefines_A3.hpp"

class CfgPatches
{
	class rl 
	{
		requiredAddons[] = {"A3_Structures_F"};
		requiredVersion = 0.1;
		units[] =
		{
			"Hard"
		};
		weapons[] = {};
	};
};

class CfgVehicleClasses {

	class House {
		displayName = "Hard";
	};
};

class CfgVehicles
{
	class House;
	class House_f: House
	{
		class DestructionEffects;
	};
	
	class rl: House_f
	{
		vehicleClass = "House";
		model="\poteem\rou.p3d";
		scope=2;
		displayName="Hard";
		armor=999999;
	};


};

Share this post


Link to post
Share on other sites

Fixed. It was wrong LODs

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  

×