Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. // CBB Framework
  2. // Template for FHQ Tasktracker 2
  3. // by Iron
  4.  
  5. // -------------------------------------------
  6. // -------------------------------------------
  7.  
  8. // READ FHQ_tasktracker.pdf INCLUDED IN MISSION FRAMEWORK DOCS FOLDER FOR USAGE INSTRUCTIONS AND MORE INFORMATION!!!
  9.  
  10. // -------------------------------------------
  11. // -------------------------------------------
  12.  
  13. /*
  14. // EXAMPLE BRIEFING:
  15. [
  16. // filter,
  17. // ["Title", "Text block"],
  18. // ["New Menu Entry (Notes/Credits/Etc)", "Title", "Text block"],
  19. west, // only West players see this
  20. ["Mission", "Get some!"],
  21. ["Enemy Forces", "There's lots of ruskies around"],
  22. east, // only East players see this
  23. ["Mission", "Get those imperialistic americans"],
  24. ["Current Supply of Vodka", "Low"],
  25. grp1, // only members of group grp1 see this
  26. ["Group Only Mission", "Hello group grp1"],
  27. {true},
  28. ["Credits", "Mission by", "Some Dude"],
  29. ["Credits", "Uses scripts by", "Some other dude<br/>Yet another dude"]
  30. ] call FHQ_TT_addBriefing;
  31.  
  32.  
  33. ===========================
  34. NOTES ABOUT BRIEFING FORMAT
  35. ===========================
  36.  
  37. A generally useful format to use is Situation/Mission/Execution/Service Support/Command and Signal
  38. ---
  39.  
  40. SITUATION
  41. A: Enemy numbers, types and what they are doing
  42. B: Friendly units and what they are doing
  43. C: What weapon system wep det has. Type and number of attached LAVs. Bravo squad detached, performing secondary objective. ect
  44.  
  45. MISSON
  46. One sentance description of the overall task. MUST include; who(Unit callsign), what(objective, eg. town name),
  47. when(the date and time), where(what island, where on it), why(how this task fits with higher level plan),
  48. and how(what type of mission, eg. platoon attack, raid, ect).
  49.  
  50. EXECUTION
  51. A: Quick description of the units overall task.
  52. B: Quick description of how the untis task fits in with higher level operations. Make soldiers feel part of a bigger plan
  53. C: Task list. Pretty much copy of in-game task list.
  54. D: Limit of advances, timings for tasks if necessary, basically any misc info that could have to do with another unit
  55.  
  56. SERVICE SUPPORT
  57. A: Notes on loadout, resupply points.
  58. B: Respawn point
  59.  
  60. COMMAND AND SIGNAL
  61. A: Each callsign, 343/148/117 channels
  62. In theory A would be the chain of command but we don't really need that at this time.
  63.  
  64.  
  65. Another briefing template style:
  66. SITUATION
  67. ENEMY FORCES Size, activity, location, uniform, time seen and equipment
  68. FRIENDLY FORCES Higher units (including mission and intent), adjacent units, supporting units and security
  69. MISSION
  70. What must be accomplised by the mission team, not how
  71. EXECUTION
  72. COMMANDER'S INTENT A short summary of plan
  73. MOVEMENT PLAN Movement instructions
  74. FIRE SUPPORT PLAN Fire support instructions
  75. SPECIAL TASKS Instructions for specific units
  76. ADMINISTRATION
  77. Information on administration and logistics
  78. */
  79.  
  80. [
  81. [true},
  82. ["SITUATION","
  83. A. Enemy<br/>
  84. Russian forces have taken the airfields in the Northwest and Krasnostavin a lightning attack. Take their FOB at Khelm to stop them from staging heavier weaponry in the AO. <br/>
  85. <br/>
  86. <br/>
  87. B. Friendly<br/>
  88. One US Army Infantry platoon will assault the FOB, with a Ranger Squad disrupting <br/>
  89. the enemy rear. An Apache will attempt to assist both units as best as it can. <br/>
  90. <br/>
  91. <br/>
  92. C. Attachments/Detachments<br/>
  93. 1 x AH-64D<br/>
  94. 2 x Transport Trucks
  95. "],
  96. ["MISSION","
  97. A platoon of 10th Mountain troops are assaulting a Russian FOB at Krasnostav while Rangers wreak havoc elsewhere.
  98. "],
  99. ["EXECUTION","
  100. A. Intent<br/>
  101. US Army troops must take the FOB at Krasnostav, Rangers must destroy enemy assets to assist.<br/>
  102. <br/>
  103. B. Concept<br/>
  104. This mission involves coordination at distance between Rangers, 10th Mountain, and the Apache.<br/>
  105. <br/>
  106. C. Tasks<br/>
  107. Sieze the FOB at Krasnostav<br/>
  108. <br/>
  109. D. Coordination<br/>
  110. Mission starts at 05:30hrs<br/>
  111. <br/>
  112. "],
  113. ["SERVICE SUPPORT","
  114. A. Support<br/>
  115. 1x AH-64D<br/>
  116. <br/>
  117. B. Medical Evac<br/>
  118. If at anytime the Section Leaders feel that casualties have become too high they can call for Evac
  119. "],
  120. ["COMMAND AND SIGNAL","
  121. A. Signal<br/>
  122. AN/PRC-148:<br/>
  123. 1 - Platoon <br/>
  124. 2- Air
  125. <br/>
  126. AN/PRC-343:<br/>
  127. 1 - Alpha<br/>
  128. 2 - Bravo<br/>
  129. 3 - Wepdet<br/>
  130. 4 - Apache<br/>
  131. 5 - Rangers
  132. <br/>
  133. "]
  134.  
  135. [true}, // SFilters objectives to all co-op players.
  136. ["taskObj1", "Capture the Russian Forward Operating Base at Khelm", "Capture Khelm","CLEAR", getMarkerPos "FOB_KHELM", "assigned"],
  137. ["taskObj2", "Destroy the Russian artillery battery threatening our assault", "Destroy Artillery","CLEAR", getMarkerPos "OldFields"],
  138. ["taskObj3", "Destroy communications station at Devil's Castle to hamper enemy response time", "Sieze Black Mountain", "CLEAR", getMarkerPos "BlackMountain"],
  139. ["taskObj4", "Destroy communications station at Black Mountain to hamper enemy response time", "Sieze Devil's Castle", "CLEAR", getMarkerPos "DevilsCastle"],
  140. ["taskObj5", "Destroy enemy QRF helicopters before they can leave the airfield", "Destroy Helo QRF","CLEAR", getMarkerPos "RUS_4"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement