Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.29 KB | None | 0 0
  1. #include "CfgPatches.hpp"
  2.  
  3. class CfgVehicles {
  4.     class Man;
  5.     class CAManBase: Man {
  6.  
  7.         class ACE_Actions {
  8.           class Xenoa {
  9.             displayName = "Xenoa";
  10.                 icon = "\Xenoa_Interaction\data\Xenoa.paa";
  11.  
  12.               class Xenoa_Civil {
  13.                   displayName = "Civil";
  14.                   condition = "playerSide isEqualTo civilian";
  15.                   icon = "\Xenoa_Interaction\data\civil.paa";
  16.  
  17.                   #include "\Xenoa_Interaction\custom\Xenoa_Interaction_Civil.hpp"
  18.               };
  19.  
  20.               class Xenoa_Flic {
  21.                   displayName = "Police";
  22.                   condition = "playerSide isEqualTo west";
  23.                   icon = "\Xenoa_Interaction\data\flic.paa";
  24.  
  25.                   #include "\Xenoa_Interaction\custom\Xenoa_Interaction_Flic.hpp"
  26.               };
  27.  
  28.               class Xenoa_Medecin {
  29.                   displayName = "Medecin";
  30.                   condition = "playerSide isEqualTo independent";
  31.                   icon = "\Xenoa_Interaction\data\medecin.paa";
  32.  
  33.                   #include "\Xenoa_Interaction\custom\Xenoa_Interaction_Medecin.hpp"
  34.               };
  35.            };
  36.         };
  37.     };
  38.  
  39.     class AllVehicles;
  40.       class Vehicle: AllVehicles {
  41.       class ACE_Actions {
  42.         class Xenoa_Vehicule {
  43.             displayName = "Xenoa";
  44.             icon = "\Xenoa_Interaction\data\Xenoa.paa";
  45.             class Xenoa_Civ_Car {
  46.                 displayName = "Civil";
  47.                 condition = "playerSide isEqualTo civilian";
  48.                 icon = "\Xenoa_Interaction\data\civil.paa";
  49.  
  50.                 #include "\Xenoa_Interaction\custom\Xenoa_Veh_Civil.hpp"
  51.             };
  52.  
  53.             class Xenoa_Flic_Car {
  54.                 displayName = "Police";
  55.                 condition = "playerSide isEqualTo west";
  56.                 icon = "\Xenoa_Interaction\data\flic.paa";
  57.  
  58.                 #include "\Xenoa_Interaction\custom\Xenoa_Veh_Flic.hpp"
  59.             };
  60.  
  61.             class Xenoa_Medecin_Car {
  62.                 displayName = "Medecin";
  63.                 condition = "playerSide isEqualTo independent";
  64.                 icon = "\Xenoa_Interaction\data\medecin.paa";
  65.  
  66.                 #include "\Xenoa_Interaction\custom\Xenoa_Veh_Medecin.hpp"
  67.             };
  68.           };
  69.       };
  70.     };
  71. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement