An addon of a friend of mine keeps chrashing the game when it loads.
He thinks it' s caused by a bug in the config.cpp file.
I don' t have a clue what' s wrong with it.
//some basic defines
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSideUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7
// true or false
#define true 1
#define false 0
//visibility
#define private 0
#define protected 1
#define public 1
class CfgPatches
{
class east_turret
{
units[]={east_turret};
weapons[]={};
worlds[]={};
requiredVersion=v1.91;
};
};
class CfgVehicles
{
class All {};
class AllVehicles: All {};
class LandVehicle: AllVehicles {};
class Tank: LandVehicle {};
class M60: Tank {};
class east_turret: M60
{
displayName="east turret";
model="/east_turret/east_turret.p3d";
};
};
pbo file: east_turret.pbo
p3d file: east_turret.p3d
could anyone plz tell me what' s the cause of it?