Advertisement
Guest User

Config

a guest
Dec 17th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.20 KB | None | 0 0
  1. span class="re5"> class CfgFactionClasses
  2. {
  3.     class NO_CATEGORY;
  4.     class FOXHOUND: NO_CATEGORY
  5.     {
  6.         displayName = "FOXHOUND";
  7.         units[] = {"MKD3_ModuleGTP"};
  8.     };
  9. };
  10. class CfgVehicles
  11. {
  12.     class Logic;
  13.     class Module_F: Logic
  14.     {
  15.         class ArgumentsBaseUnits
  16.         {
  17.             class Units;
  18.         };
  19.         class ModuleDescription
  20.         {
  21.             class AnyBrain;
  22.         };
  23.     };
  24.     class MKD3_ModuleGTP: Module_F
  25.     {
  26.         author = "MKD[FOX]";
  27.         scope = 2;
  28.         displayName = "GTP Settings";
  29.         icon = "MKD3_GTP\icons\iconModule_GTP.paa";
  30.         category = "FOXHOUND";
  31.         function = "MKD3_fnc_ModuleGTP";
  32.         functionPriority = 1;
  33.         isGlobal = 1;
  34.         isTriggerActivated = 1;
  35.         isDisposable = 0;
  36.         is3DEN = 0;
  37.         class Arguments: ArgumentsBaseUnits
  38.         {
  39.             class GTP_isLRM
  40.             {
  41.                 displayName = "LRM MODE";
  42.                 description = "if ON, players can only spawn on created bases";
  43.                 typeName = "BOOL";
  44.                 class values
  45.                 {
  46.                     class isNotLRM
  47.                     {
  48.                         name = "OFF";
  49.                         value = 0;
  50.                         default = 1;
  51.                     };
  52.                     class isLRM
  53.                     {
  54.                         name = "ON";
  55.                         value = 1;
  56.                     };
  57.                 };
  58.             };
  59.         };
  60.         class ModuleDescription: ModuleDescription
  61.         {
  62.             description = "This controls GTP UI and Functions";
  63.             duplicate = 0;
  64.             optional = 1;
  65.         };
  66.     };
  67. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement