mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
CfgVehicles and Scope issues done
This commit is contained in:
62
SQF/dayz_code/Configs/CfgVehicles/Car/LAV25.hpp
Normal file
62
SQF/dayz_code/Configs/CfgVehicles/Car/LAV25.hpp
Normal file
@@ -0,0 +1,62 @@
|
||||
class LAV25;
|
||||
class LAV25_DZ: LAV25 {
|
||||
scope = 2;
|
||||
side = TGuerrila;
|
||||
displayName = "LAV-25 DZ";
|
||||
|
||||
commanderCanSee = 2+16+32;
|
||||
gunnerCanSee = 2+16+32;
|
||||
driverCanSee = 2+16+32;
|
||||
|
||||
crew = "";
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines{};
|
||||
|
||||
transportMaxMagazines = 100; // Default: 100
|
||||
transportMaxWeapons = 10; // Default: 10
|
||||
//transportmaxbackpacks = ; // Default:
|
||||
|
||||
class Turrets; // External class reference
|
||||
class MainTurret; // External class reference
|
||||
};
|
||||
class LAV25_HQ;
|
||||
class LAV25_HQ_DZ: LAV25_HQ {
|
||||
scope = 2;
|
||||
side = TGuerrila;
|
||||
displayName = "LAV-25 (HQ) DZ";
|
||||
|
||||
commanderCanSee = 2+16+32;
|
||||
gunnerCanSee = 2+16+32;
|
||||
driverCanSee = 2+16+32;
|
||||
|
||||
crew = "";
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines{};
|
||||
|
||||
transportSoldier = 6;
|
||||
|
||||
transportMaxMagazines = 100; // Default: 100
|
||||
transportMaxWeapons = 10; // Default: 10
|
||||
//transportmaxbackpacks = ; // Default:
|
||||
|
||||
class Turrets; // External class reference
|
||||
class MainTurret; // External class reference
|
||||
};
|
||||
|
||||
// Ammo Less
|
||||
class LAV25_DZE: LAV25_DZ {
|
||||
displayName = "LAV-25 AL";
|
||||
class Turrets: Turrets {
|
||||
class MainTurret : MainTurret {
|
||||
magazines[] = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
class LAV25_HQ_DZE: LAV25_HQ_DZ {
|
||||
displayName = "LAV-25 (HQ) AL";
|
||||
class Turrets: Turrets {
|
||||
class MainTurret : MainTurret {
|
||||
magazines[] = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user