config.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #define COMPONENT RPS6
  2. #include "../../../RD501_main/config_macros.hpp"
  3. #include "../../_common/common.hpp"
  4. class CfgPatches
  5. {
  6. class macro_patch_name(RPS6)
  7. {
  8. author="RD501";
  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(launcher,RPS6)
  18. };
  19. };
  20. };
  21. class CfgWeapons
  22. { class Launcher_Base_F;
  23. class 3AS_RPS6_HP:Launcher_Base_F
  24. {
  25. class OpticsModes{class optic;};
  26. };
  27. class macro_new_weapon(launcher,RPS6):3AS_RPS6_HP
  28. {
  29. scope=2;
  30. canLock = 2;
  31. airLock=2;
  32. displayName="Republic RPS6 Launcher";
  33. weaponInfoType="RscOptics_titan";
  34. modelOptics="\A3\Weapons_F_Beta\acc\reticle_titan.p3d";
  35. icon = "\RD501_Weapons\Launchers\RPS6\icon.paa";
  36. picture = "\RD501_Weapons\Launchers\RPS6\icon.paa";
  37. nameSound="aalauncher";
  38. recoil="";
  39. magazines[]=
  40. {
  41. macro_new_mag(RPS_AT,1),
  42. macro_new_mag(RPS_AA,1)
  43. };
  44. class OpticsModes
  45. {
  46. class StepScope
  47. {
  48. opticsID=1;
  49. useModelOptics=1;
  50. opticsPPEffects[]=
  51. {
  52. "OpticsCHAbera1",
  53. "OpticsBlur1"
  54. };
  55. opticsFlare=0;
  56. opticsZoomInit =scope_magnification(1); //0.1083;
  57. opticsZoomMax = scope_magnification(1); //0.1083;
  58. opticsZoomMin = scope_magnification(6); //0.1083;
  59. distanceZoomMin=300;
  60. distanceZoomMax=300;
  61. memoryPointCamera="eye";
  62. cameraDir="look";
  63. visionMode[]=
  64. {
  65. "Normal",
  66. "NVG",
  67. "Ti"
  68. };
  69. thermalMode[]={0};
  70. opticsDisablePeripherialVision=1;
  71. discretefov[] = {scope_magnification(1),scope_magnification(3),scope_magnification(6)};
  72. discreteInitIndex=0;
  73. };
  74. };
  75. };
  76. };