Can someone tell me if this could be wrong? My vehicle does not show up in the editor at all. I'm learning how to use O-2 but I think the config is wrong. This is what I've got......
class CfgModels
{
class default {};
class Vehicle: default {};
class Car: Vehicle {};
class Jeep: Car {};
class firstCar: Jeep {};
};
class CfgPatches
{
class firstCar
{
units[] = {firstCar};
weapons[] = {};
requiredVersion = 1.0;
};
};
class CfgVehicles
{
class All {};
class AllVehicles: All {};
class Land: AllVehicles {};
class LandVehicle: Land {};
class Car: LandVehicle {};
class Jeep: Car {};
class firstcar: Jeep
{
displayName="My First Car"; // Displayname in editor
model= \firstcar\firstcar; // our p3d model path
side=3; // Its on the civilian side
crew="Civilian2"; // The default driver are civilians
maxSpeed=300; // Max speed
transportSoldier=0; // Right now just driver, no cargo
};
}
Its supposed to go into Civilian cars