config.cpp 576 B

1234567891011121314151617181920212223242526272829303132
  1. #define COMPONENT E22
  2. #include "../../../RD501_main/config_macros.hpp"
  3. #include "../../_common/common.hpp"
  4. class CfgPatches
  5. {
  6. class macro_patch_name(e22)
  7. {
  8. author=DANKAUTHORS;
  9. addonRootClass= macro_patch_name(weapons)
  10. requiredAddons[]=
  11. {
  12. macro_patch_name(weapons)
  13. };
  14. requiredVersion=0.1;
  15. units[]={};
  16. weapons[]={
  17. macro_new_weapon(e,22)
  18. };
  19. };
  20. };
  21. class CfgWeapons
  22. {
  23. class SWOP_E22;
  24. class macro_new_weapon(e,22):SWOP_E22
  25. {
  26. author="RD501";
  27. baseWeapon=macro_new_weapon(e,22)
  28. scope=2;
  29. displayName="CIS E22"
  30. magazines[]={"JLTS_E5_mag"};
  31. };
  32. };