Advertisement
t3quila

AHEP (config.cpp)

Mar 28th, 2014
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. class CfgPatches
  2. {
  3. class LYN_AHEP
  4. {
  5. units[] = {};
  6. weapons[] = {};
  7. requiredVersion = 1.0;
  8. requiredAddons[] = {"A3_Weapons_F","cba_main_a3"};
  9. };
  10. };
  11.  
  12. class CfgWeapons
  13. {
  14. class ItemCore;
  15. class ItemInfo;
  16. class InventoryItem_Base_F;
  17. class InventoryEarPlugItem_Base_F: InventoryItem_Base_F
  18. {
  19. type = 401;
  20. };
  21. class lyn_earplugs: ItemCore
  22. {
  23. scope = 2;
  24. displayname = "Earplugs";
  25. descriptionShort = "Usable on: Self";
  26. picture = "\ahep\data\bilde.paa";
  27. model = "\A3\weapons_F\ammo\mag_univ.p3d";
  28. class ItemInfo: InventoryEarPlugItem_Base_F
  29. {
  30. mass = 1;
  31. };
  32. };
  33. };
  34. class Extended_PostInit_EventHandlers
  35. {
  36. XEH_LYN_AHEP_PostInit = "[] execVM '\ahep\protection.sqf'";
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement