Advertisement
HydroBull3T

Description

Dec 12th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. // =======================================================================================
  2. // ========================== MENU SCREEN | MISSION OVERVIEW ===========================
  3. // =======================================================================================
  4.  
  5. // F3 - Respawn Settings
  6. // Credits: Please see the F3 online manual (http://www.ferstaberinde.com/f3/en/)
  7.  
  8. class Header
  9. {
  10. gameType = Coop; //
  11. minPlayers = 1; // Minimum players
  12. maxPlayers = 32; // Maximum players
  13. };
  14.  
  15. Respawn = 3; // See options above
  16. respawnDelay = 5; // Respawn delay in seconds
  17. respawnVehicleDelay = 120; // Vehicle respawn delay in seconds
  18. saving=0;
  19.  
  20. onLoadName = "Template"; // Mission title
  21. author = "1st Special Missions Unit"; // Author
  22. loadScreen = "images\overview.jpg"; // File location of small overlay image (512x256 | JPEG format)
  23. overviewText = "Template"; // Brief mission summary
  24. overviewPicture = "images\overview.jpg"; // File location of mission snapshot ( 2:1 aspect ratio | ideally 1024x512 | JPEG format)
  25. onLoadMission = "Template"; // Brief mission description
  26.  
  27. aiKills = 0; // Enable scorelist for AI players (1=yes/0=no)
  28. disabledAI = 1; // Remove playable units not controlled by human players (1=yes/0=no)
  29.  
  30. // ============================================================================================
  31.  
  32. // Loadout Parameters
  33.  
  34. class Params {
  35.  
  36. class 1stsmu_param_loadout_type
  37. {
  38. title = "Day\Night Loadout (Does not include NVG's)";
  39. values[] = {0,1};
  40. texts[] = {"Day","Night"};
  41. default = 0;
  42. code = "1stsmu_param_loadout_type = %1;publicVariable ""1stsmu_param_loadout_type"";";
  43. };
  44.  
  45. class 1stsmu_param_nvg
  46. {
  47. title = "NVG";
  48. values[] = {0,1};
  49. texts[] = {"Without","With"};
  50. default = 0;
  51. code = "1stsmu_param_nvg = %1;publicVariable ""1stsmu_param_nvg"";";
  52. };
  53.  
  54. class 1stsmu_param_silencer
  55. {
  56. title = "Silencers Packed In Unit's Gear";
  57. values[] = {0,1};
  58. texts[] = {"Yes","No"};
  59. default = 0;
  60. code = "1stsmu_param_silencer = %1;publicVariable ""1stsmu_param_silencer"";";
  61. };
  62.  
  63. class 1stsmu_param_navaids
  64. {
  65. title = "Navigation Aids (Ctab, GPS - For Commanders/Pilots/Divers/Crewmans)";
  66. values[] = {0,1};
  67. texts[] = {"With","Without"};
  68. default = 0;
  69. code = "1stsmu_param_navaids = %1;publicVariable ""1stsmu_param_navaids"";";
  70. };
  71.  
  72. };
  73.  
  74. class CfgFunctions
  75. {
  76. class F // Defines the "owner"
  77. {
  78. class common // catagory
  79. {
  80. file = "functions";
  81.  
  82. // Defines the function to preInit (the paramArray dosent seem to be constructed at preInit stage).
  83. class processParamsArray
  84. {
  85. preInit = 1;
  86. postInit = 1;
  87. };
  88.  
  89. };
  90.  
  91. };
  92. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement