Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class CfgPatches
- {
- class FFWellenkamp
- {
- units[] = {"FFWellenkamp"};
- weapons[] = {};
- requiredVersion = 0.1;
- requiredAddons[] = {"A3_Structure_F_Items"};
- };
- };
- class CfgVehicles
- {
- class Items_base_F;
- class FFWellenkamp: Items_base_F
- {
- scope = 2;
- model = "\FFWellenkamp\FFWellenkamp.p3d";
- displayName = "Firestation Itzehoe Wellenkamp";
- vehicleClass = "small_items";
- class AnimationSources
- {
- class DoorFrontRotation
- {
- source = "user";
- initPhase = 0;
- animPeriod = 1;
- sound = "GenericDoorsSound";
- };
- class DoorBackRotation
- {
- source = "user";
- initPhase = 0;
- animPeriod = 1;
- sound = "GenericDoorsSound";
- };
- class Gate1Rotation
- {
- source = "user";
- initPhase = 0;
- animPeriod = 3;
- sound = "steinburg_garage_door";
- };
- class Gate2Rotation
- {
- source = "user";
- initPhase = 0;
- animPeriod = 3;
- sound = "steinburg_garage_door";
- };
- };
- class UserActions
- {
- class DoorFrontOpen
- {
- displayNameDefault = "<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
- displayName = "Open Door";
- position = "DoorFrontAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""DoorFrontRotation"", 1];";
- };
- class DoorFrontClose
- {
- displayName = "Close Door";
- position = "DoorFrontAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""DoorFrontRotation"", 0];";
- };
- class DoorBackOpen
- {
- displayNameDefault = "<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
- displayName = "Open Door";
- position = "DoorBackAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""DoorBackRotation"", 1];";
- };
- class DoorBackClose
- {
- displayName = "Close Door";
- position = "DoorBackAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""DoorBackRotation"", 0];";
- };
- class Gate1Open
- {
- displayNameDefault = "<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
- displayName = "Open Gate 1";
- position = "GatesAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""Gate1Rotation"", 1];";
- };
- class Gate1Close
- {
- displayName = "Close Gate 1";
- position = "GatesAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""Gate1Rotation"", 0];";
- };
- class Gate2Open
- {
- displayNameDefault = "<img image='\A3\Ui_f\data\IGUI\Cfg\Actions\open_door_ca.paa' size='2.5' />";
- displayName = "Open Gate 2";
- position = "GatesAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""Gate2Rotation"", 1];";
- };
- class Gate2Close
- {
- displayName = "Close Gate 2";
- position = "GatesAction"
- radius = 1.5;
- onlyForPlayer = 0;
- showWindow = 0;
- condition = true;
- statement = "this animate [""Gate2Rotation"", 0];";
- };
- };
- };
- };
- class cfgSounds
- {
- class steinburg_garage_door
- {
- name = "steinburg garage door";
- sound[] = {"FFWellenkamp\Sounds\electrical_gate.ogg",0.5,1.0};
- titles[] = {};
- };
- };
Add Comment
Please, Sign In to add comment