guys, i am following a tutorial from here
http://ofp.gamezone.cz/_hosted/brsseb/tutorials.htm, the making a helicopter, however, i made me own model, but for some reason, it just wont let me get into the vehicle, has no command "get in {NAME} as pilot"
here is the config file
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSideUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7
#define true 1
#define false 0
#define private 0
#define protected 1
#define public 2
class CfgPatches
{
class FirstHeli
{
units[] = {FirstHeli};
weapons[] = {};
requiredVersion = 1.3;
};
};
{
class default {};
class Air: default {};
class Helicopter: Air {};
class UH60: Helicopter{};
class FirstHeli: UH60 {};
};
class CfgVehicles
{
class All{};
class AllVehicles:All{};
class Air: AllVehicles{};
class Helicopter: Air{};
class UH60: Helicopter{};
class FirstHeli: UH60
{
side=TCivilian;
scope=public;
displayName="My first heli";
model="\firstheli\firstheli";
nameSound="chopper";
hasGunner=0;
crew="SoldierWPilot";
maxSpeed=130;
armor=60;
transportSoldier=1;
accuracy=0.08;
simulation=helicopter;
typicalCargo[]={Man};
driverAction = ManActUH60Pilot;
enableSweep=true;
driverIsCommander=true;
};
};
if you could help me, anyway possible, please do
thankyouf or your time