Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. class CfgXM8
  2. {
  3. extraApps[] = {"BRAmaRecipes","ExAd_APOC_Airdrop","ExAd_Journal","ExAd_Info","ExAd_CHVD","ExAd_VG"};
  4.  
  5. class BRAmaRecipes
  6. {
  7. controlID = 107000;
  8. title = "Recipies";
  9. logo = "ExAdClient\XM8\Apps\BRAmaRecipes\BRAma.paa";
  10. config = "ExAdClient\XM8\Apps\BRAmaRecipes\config.sqf";
  11. onLoad = "ExAdClient\XM8\Apps\BRAmaRecipes\onLoad.sqf";
  12. onOpen = "ExAdClient\XM8\Apps\BRAmaRecipes\onOpen.sqf";
  13. };
  14. class ExAd_APOC_Airdrop
  15. {
  16. title = "APOC Airdrop";
  17. controlID = 66000; //IDC:66000 -> 66005 || These need to be unique and out of range from each other
  18. logo = "\a3\Ui_f\data\GUI\Cfg\CommunicationMenu\supplydrop_ca.paa";
  19. config = "ExadClient\XM8\Apps\APOC_Airdrop\config.sqf";
  20. onLoad = "ExAdClient\XM8\Apps\APOC_Airdrop\onLoad.sqf";
  21. onOpen = "ExAdClient\XM8\Apps\APOC_Airdrop\onOpen.sqf";
  22. onClose = "ExAdClient\XM8\Apps\APOC_Airdrop\onClose.sqf";
  23. };
  24. class ExAd_Info
  25. {
  26. title = "Server Info";
  27. controlID = 50100; //IDC:50100 -> 50102 || These need to be unique and out of range from each other
  28. logo = "ExadClient\XM8\Apps\Info\Icon_SI.paa";
  29. onLoad = "ExAdClient\XM8\Apps\Info\onLoad.sqf";
  30. onOpen = "ExAdClient\XM8\Apps\Info\onOpen.sqf";
  31. onClose = "ExAdClient\XM8\Apps\Info\onClose.sqf";
  32. };
  33. class ExAd_Journal
  34. {
  35. title = "Journal";
  36. controlID = 50300; //IDC:50300 -> 50305 || These need to be unique and out of range from each other
  37. config = "ExadClient\XM8\Apps\Journal\config.sqf";
  38. logo = "ExadClient\XM8\Apps\Journal\Icon_Journal.paa";
  39. onLoad = "ExAdClient\XM8\Apps\Journal\onLoad.sqf";
  40. onOpen = "ExAdClient\XM8\Apps\Journal\onOpen.sqf";
  41. onClose = "ExAdClient\XM8\Apps\Journal\onClose.sqf";
  42. };
  43. class ExAd_CHVD
  44. {
  45. title = "View Distance Settings";
  46. controlID = 50200; //IDC:50200 -> 50102 || These need to be unique and out of range from each other
  47. config = "ExadClient\XM8\Apps\CHVD\config.sqf";
  48. logo = "ExadClient\XM8\Apps\CHVD\Icon_CHVD.paa";
  49. onLoad = "ExAdClient\XM8\Apps\CHVD\onLoad.sqf";
  50. onOpen = "ExAdClient\XM8\Apps\CHVD\onOpen.sqf";
  51. onClose = "ExAdClient\XM8\Apps\CHVD\onClose.sqf";
  52. };
  53. class ExAd_VG
  54. {
  55. title = "Virtual Garage";
  56. controlID = 50000; //These need to be unique
  57. onLoad = "ExAdClient\XM8\Apps\VG\onLoad.sqf";
  58. onOpen = "ExAdClient\XM8\Apps\VG\onOpen.sqf";
  59. onClose = "ExAdClient\XM8\Apps\VG\onClose.sqf";
  60. };
  61. };
  62. class Exile_AbstractCraftingRecipe
  63. {
  64. name = "";
  65. pictureItem = "";
  66. returnedItems[] = {};
  67. components[] = {}; // Required components
  68. tools[] = {}; // Required tools (matches, gas cooker etc.)
  69. requiredInteractionModelGroup = ""; // See CfgInteractionModels
  70. requiresOcean = 0; // isSurfaceWater test
  71. requiresFire = 0; // inflamed object nearby
  72. requiresConcreteMixer = 0; // Check if concrete mixer is nearby
  73. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement