home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2003 June / macformat-130.iso / mac / Reviewed⁄Demos / Spearhead Demo / demota / pak2.pk3 / global / credits_data.scr next >
Encoding:
Text File  |  2002-11-01  |  38.1 KB  |  655 lines

  1. ////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  MoH: Allied Assault Spearhead ***DEMO*** Script File  
  4. //  Global function: Ending credits data
  5. //  MOHAA:Spearhead Script Written By: Jon Galvan
  6. //  Original MOHAA Script Written By: Benson 'elmagoo' Russell, Jeff Heath, Brad Allen, Vince Zampella
  7. //  NOTE: THIS VERSION OF THE CREDITS_DATA IS DIFFERENT THAN THE RELEASE VERSION
  8. //        THIS VERSION SHOULD NOT BE USED FOR THE RELEASE BUILD
  9. ////////////////////////////////////////////////////////////////////////////////////////
  10. credits_start:
  11.  
  12. //***************************************************************************************************
  13. //***************************************************************************************************
  14. //*** documentation on credit script commands
  15. //***************************************************************************************************
  16. //***************************************************************************************************
  17. //    The way the credits work is you pass commands to the script with what you want to display
  18. //    These are the commands for text:
  19. //        section          - this is for passing text for a section header, such as 'CAST'
  20. //        sub_section   - this is for smaller, sub-section style text, such as 'Filmed in XRAY VISION'
  21. //        entry          - this is for passing text for an entry with a header, such as 'Art Director', and a body, such as 'Tadd Whomever'
  22. //        entry_single  - this is for a single line of entry header style text with no body
  23. //        image          - this is for displaying an image on-que at certain points in the credits
  24. //        image_scroll  - this is to place an image to scroll up with the text
  25. //        pause          - this puts a pause in the scrolling text for spacing
  26. //        done          - ends the credits and disconnects back to the menu
  27. //
  28. //    These are the commands for pictures:
  29. //        show      - used to display a graphic on the screen
  30. //        hide      - used to take an already displayed graphic off the screen
  31. //
  32. //
  33. //    Syntax for text commands:
  34. //    All text commands are called with this statement and parameters:
  35. //
  36. //    waitthread global/credits.scr::credits_add <command> <header text> <body text>
  37. //
  38. //
  39. //    Here's how you add text to scroll up the screen.  First, pick the command to use.
  40. //    You have to specify the command in quotes.
  41. //
  42. //    "section"  - This is for displaying main headings, such as 'CAST'  You only need to enter
  43. //             the <header text> parameter for this command, <body text> is not used.
  44. //
  45. //    "sub_section"   - This is the same as section, but used for sub-section style headings such
  46. //              as 'Filmed in XRAY VISION'
  47. //
  48. //    "entry"    - This is for displaying people and their titles, such as 'Art Director'
  49. //             'Tadd Whomever'.  The <header text> is the label, which would be the
  50. //             'Art Director' portion.  The <body text> is the accompanying text, which
  51. //             would be the 'Tadd Whomever' portion.
  52. //
  53. //    "entry_single   - This is like entry text, only it's for a single line of <header text> with
  54. //              no <body text>.  So if you wanted to create just a list of persons after
  55. //              a section header, you would use this command
  56. //
  57. //    "image"       - This is for passing an image command into the sequence of credits for more
  58. //             precise queing of when to display an image.  Following the "image" command
  59. //             you enter the following just like you would with a normal image command:
  60. //
  61. //             <image_command> <element number> <image> [time] [ul_x] [ul_y] [br_x] [br_y]
  62. //
  63. //             For a description of all the image parameters, look under the picture commands
  64. //             syntax descriptions below.
  65. //
  66. //    "image_scroll"  - This is for having a picture scoll in with the text in the credits.  You
  67. //            - pass these parameters with it:
  68. //
  69. //              <image> [ul_x] [br_x] [br_y]
  70. //
  71. //              <image> first is the reference to the picture.  <ul_x> is the x coordinate
  72. //              where you want it to scroll up the screen.  <br_x> <br_y> specifiy the
  73. //              bottom right corner of the image (works as the normal image command).
  74. //              NOTE: DO NOT use images that are taller than 80 units.  If an image is
  75. //              taller than 80 units, then you will see it disappear since it won't be
  76. //              completely obscured by the top border.
  77. //
  78. //    "pause"    - This is for placing blank spacing between entries.  So say you entered all
  79. //             of the 'CAST' entries, and you want some space before you start the next
  80. //             section of text.  Pause is used to place that space.
  81. //
  82. //    "done"     - This is when the credits are done and you want to return back to the main
  83. //             menu.  This will fade out the borders, wait a second, then go back to
  84. //             the main menu.  Make sure to fade out everything else and wait a bit for
  85. //             whatever remaining text to scroll off the screen, else it will bail out
  86. //             in the middle of it scrolling.
  87. //
  88. //
  89. //    Syntax for Picture commands:
  90. //    All picture commands are called with this statement and parameters:
  91. //
  92. //    waitthread global/credits.scr::credits_image <command> <element number> <image> [time] [ul_x] [ul_y] [br_x] [br_y]
  93. //
  94. //
  95. //    Here's how you display a picture up on the screen.  All pictures will display behind the
  96. //    borders of the screen, so you want to make sure all your pictures are made to be in that area.
  97. //    The important thing to remember when adding pictures is the <element number> that you use.
  98. //    You have 100 element numbers you can use, 1 - 100 (the script will error out if you go
  99. //    outside of this range, or don't enter one at all).  The number determines which pictures get
  100. //    drawn on top of other pictures.  The higher the number, the more 'on-top' that picture is.
  101. //    So element 100 is the topmost picture and will draw on top of all other elements, and 1 is the
  102. //    bottommost element and will draw under all other elements.  Also, you can use the same element
  103. //    number for multiple pictures, but if you assign a new picture to a used element, that element
  104. //    will switch to that picture, whether it's shown or not.  So keep track of your <element number>
  105. //    that you use.  One thing to note is to wait the appropriate amount of time before sending the
  106. //    next picture.  Else you'll see the transition occur before the pictures fully fade.
  107. //
  108. //    Here is the explaination of all the parameters and which ones are optional:
  109. //
  110. //    <command>     - Commands given have to be in quotes as with text commands.  There are only
  111. //              two draw commands.  You have to enter this parameter.
  112. //
  113. //              "show" - This will fade the desired picture in on the specified <element number>
  114. //              "hide" - This will fade the desired <element number> out
  115. //
  116. //    <element number>   This is the element number to display a picture on, numbers 1 - 100.
  117. //               You have to enter this parameter.  NO quotes used for this parameter.
  118. //
  119. //    <image>        -  This is the graphic to display, entered in quotes.  It can either be a shader name, or a 
  120. //               direct reference to the picture.  If it's a direct reference to a picture,
  121. //               then you have to enter the path starting with "textures/" (with the rest of the path).
  122. //               So for example, this is a reference to a direct picture:
  123. //
  124. //               "textures/mohmenu/credits/bottomborder"
  125. //
  126. //               It is recommended to place all images for the credits screen in the
  127. //               "textures/mohmenu/credits/" folder where the borders already are.
  128. //               You have to enter this paramter.
  129. //
  130. //    [time]        -  This is an optional parameter that's not entered within quotes.  If a time
  131. //               is entered, then the displayed picture will automatically fade out in the
  132. //               specified time.  So if you enter a time of 5, then after 5 seconds the
  133. //               picture will fade without having to give a fade command.  Without the time
  134. //               parameter, an image will stay on the screen until it is told to fade.
  135. //
  136. // [ul_x] [ul_y] [br_x] [br_y]  -  These last four parameters are used to specify a direct placement
  137. //                   and size of a picture.  The first two parameters specify the
  138. //                   upper-left coordinate for the image (hence the ul).  The last two
  139. //                   parameters specify the bottom-right corner for the image (hence the br).
  140. //                   All coordinates are based on a 640 x 480 setting, no matter what the
  141. //                   user's resolution.  To use these parameters, ALL 4 have to be used.
  142. //                   If you enter only one, and not the rest, bad things can happen and
  143. //                   borkiness behavior will occur.
  144. //
  145. //                   NOTE:  If you want to use these parameters but do NOT wish to use
  146. //                          the [time] parameter, just enter a value of NIL where the [time]
  147. //                      parameter is.
  148. //
  149. //
  150. //
  151. //    I left in my test entries just as an example for you to look at.  MAKE SURE TO REMOVE ALL
  152. //    THE SAMPLE ENTRIES WHEN YOU ENTER THE FINAL CREDITS!!!!  One techinque you might want to use
  153. //    is to display the pictures using a seperate thread, so you can control and keep track of the
  154. //    timing easier, rather than intermixing all the pictures with the text since reading over that
  155. //    might get confusing.  Come see me if you'd like some help with this.
  156. //
  157. //***************************************************************************************************
  158. //***************************************************************************************************
  159.  
  160. //*** launch the thread to show the pictures
  161. thread credits_start_pictures
  162.  
  163. //*** start the credits
  164. waitthread global/credits.scr::credits_add "image" "show" 1 "textures/mohmenu/credits/creditbacksky" NIL 0 80 640 320
  165.  
  166. //***************************************************
  167. //***************************************************
  168.  
  169. //waitthread global/credits.scr::credits_add "section" "Medal of Honor Allied Assault"
  170.  
  171. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/creditbackmoh" 235 170 80
  172. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/mohaas_logo" 192 256 256
  173. waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/mohaas_logo" 245 150 150
  174. waitthread global/credits.scr::credits_add "pause"
  175. waitthread global/credits.scr::credits_add "pause"
  176. waitthread global/credits.scr::credits_add "pause"
  177. waitthread global/credits.scr::credits_add "pause"
  178. waitthread global/credits.scr::credits_add "pause"
  179. waitthread global/credits.scr::credits_add "pause"
  180. waitthread global/credits.scr::credits_add "pause"
  181. waitthread global/credits.scr::credits_add "pause"
  182. waitthread global/credits.scr::credits_add "pause"
  183.  
  184.  
  185. //***************************************************
  186. //***************************************************
  187. //*** Reload Team
  188. //***************************************************
  189. //***************************************************
  190.  
  191. // waitthread global/credits.scr::credits_add "section" "*******NOT FINAL******" 
  192. // waitthread global/credits.scr::credits_add "sub_section" "               In Loving Memory"
  193. // waitthread global/credits.scr::credits_add "sub_section" "                          of"  
  194. // waitthread global/credits.scr::credits_add "sub_section" "                    Tim Eifert"
  195. // waitthread global/credits.scr::credits_add "pause"
  196. // waitthread global/credits.scr::credits_add "pause"
  197. // waitthread global/credits.scr::credits_add "pause"
  198. waitthread global/credits.scr::credits_add "sub_section" "     Medal of Honor Allied Assault"
  199. waitthread global/credits.scr::credits_add "section" "                    Spearhead"  
  200. waitthread global/credits.scr::credits_add "pause"
  201. waitthread global/credits.scr::credits_add "pause"
  202. waitthread global/credits.scr::credits_add "section" "             Development Team"
  203. waitthread global/credits.scr::credits_add "pause"
  204. waitthread global/credits.scr::credits_add "entry" "David Kury" "Animation Lead"
  205. waitthread global/credits.scr::credits_add "pause"
  206. //waitthread global/credits.scr::credits_add "image" "show" 2 "textures/mohmenu/credits/soldiers_walking" 35 0 80 640 320
  207. waitthread global/credits.scr::credits_add "entry" "Kyle McKisic" "Art Director"
  208. waitthread global/credits.scr::credits_add "pause"
  209.  
  210. waitthread global/credits.scr::credits_add "entry" "Erik Kraber" "Audio Lead" 
  211. waitthread global/credits.scr::credits_add "pause"
  212.  
  213. waitthread global/credits.scr::credits_add "entry" "Dave C. Nash" "Design Lead"
  214. waitthread global/credits.scr::credits_add "pause"
  215.  
  216. waitthread global/credits.scr::credits_add "entry" "Keith Francart" "Development Director"
  217. waitthread global/credits.scr::credits_add "pause"
  218.  
  219. waitthread global/credits.scr::credits_add "entry" "Paul Keet" "Engineering Lead"
  220. waitthread global/credits.scr::credits_add "pause"
  221.  
  222. //waitthread global/credits.scr::credits_add "image" "show" 3 "textures/mohmenu/credits/soldier_shooting" 35 0 80 640 320
  223. waitthread global/credits.scr::credits_add "entry" "Brady Bell" "Game Design"
  224. waitthread global/credits.scr::credits_add "entry" "Dave C. Nash"
  225. waitthread global/credits.scr::credits_add "pause"
  226.  
  227. waitthread global/credits.scr::credits_add "entry" "Tom Allen" "Lighting Director"
  228. waitthread global/credits.scr::credits_add "pause"
  229.  
  230. waitthread global/credits.scr::credits_add "entry" "Brady Bell" "Producer"
  231. waitthread global/credits.scr::credits_add "pause"
  232.  
  233. waitthread global/credits.scr::credits_add "entry" "Jon Galvan" "Associate Producer"
  234. waitthread global/credits.scr::credits_add "pause"
  235.  
  236. waitthread global/credits.scr::credits_add "entry" "Kyle McKisic" "Technical Art Director"
  237. waitthread global/credits.scr::credits_add "pause"
  238.  
  239. waitthread global/credits.scr::credits_add "entry" "Kevin Lewis" "Test Lead" 
  240. waitthread global/credits.scr::credits_add "pause"
  241. waitthread global/credits.scr::credits_add "pause"
  242.  
  243. waitthread global/credits.scr::credits_add "section" "Animation Team"
  244. waitthread global/credits.scr::credits_add "entry" "Ken Angliongto"
  245. waitthread global/credits.scr::credits_add "entry" "Wendy K. Fuller"
  246. //waitthread global/credits.scr::credits_add "image" "show" 4 "textures/mohmenu/credits/left_soldier_shooting" 26 0 80 640 320
  247. waitthread global/credits.scr::credits_add "entry" "Jeffrey K. Joe"
  248. waitthread global/credits.scr::credits_add "entry" "David Kury"
  249. waitthread global/credits.scr::credits_add "entry" "Shawn McInerney"
  250. waitthread global/credits.scr::credits_add "entry" "Dana O'Connor"
  251. waitthread global/credits.scr::credits_add "entry" "Brian Ormiston"
  252. waitthread global/credits.scr::credits_add "entry" "Jim Richardson"
  253. waitthread global/credits.scr::credits_add "pause"
  254. waitthread global/credits.scr::credits_add "pause"
  255.  
  256. waitthread global/credits.scr::credits_add "section" "Art Team"
  257. waitthread global/credits.scr::credits_add "entry" "Jeff Bigman"
  258. waitthread global/credits.scr::credits_add "entry" "Eben Cook"
  259. waitthread global/credits.scr::credits_add "entry" "Matt Hall"
  260. waitthread global/credits.scr::credits_add "entry" "Kyle McKisic"
  261. waitthread global/credits.scr::credits_add "entry" "Chris Shelton"
  262. waitthread global/credits.scr::credits_add "entry" "Chaz Sutherland"
  263. waitthread global/credits.scr::credits_add "entry" "Chad Woyewodzic"
  264. waitthread global/credits.scr::credits_add "pause"
  265. waitthread global/credits.scr::credits_add "section" "Additional Art"
  266. waitthread global/credits.scr::credits_add "entry" "Peter Chen"
  267. waitthread global/credits.scr::credits_add "entry" "Peter Choe"
  268. waitthread global/credits.scr::credits_add "entry" "Mayan Escalante"
  269. waitthread global/credits.scr::credits_add "entry" "Nils Holden"
  270. waitthread global/credits.scr::credits_add "entry" "Ian House"
  271. waitthread global/credits.scr::credits_add "pause"
  272. waitthread global/credits.scr::credits_add "pause"
  273.  
  274. waitthread global/credits.scr::credits_add "section" "Audio Team"
  275. waitthread global/credits.scr::credits_add "entry" "Rebecca Hanck"
  276. waitthread global/credits.scr::credits_add "entry" "Erik Kraber"
  277. //waitthread global/credits.scr::credits_add "image" "show" 5 "textures/mohmenu/credits/soldiers_in_boat" 35 0 80 640 320
  278. waitthread global/credits.scr::credits_add "entry" "Yuan Liu"
  279. waitthread global/credits.scr::credits_add "entry" "Eric Shemkovitz"
  280. waitthread global/credits.scr::credits_add "pause"
  281. waitthread global/credits.scr::credits_add "pause"
  282.  
  283. waitthread global/credits.scr::credits_add "section" "Engineering Team"
  284. waitthread global/credits.scr::credits_add "entry" "Mark Dochtermann"
  285. waitthread global/credits.scr::credits_add "entry" "Michael J. Goodwin"
  286. waitthread global/credits.scr::credits_add "entry" "Paul Keet"
  287. waitthread global/credits.scr::credits_add "entry" "Jeff Leggett"
  288. waitthread global/credits.scr::credits_add "entry" "John Machin"
  289. waitthread global/credits.scr::credits_add "entry" "Rafael Paiz"
  290. waitthread global/credits.scr::credits_add "entry" "Chris Shelton"
  291. waitthread global/credits.scr::credits_add "pause"
  292. waitthread global/credits.scr::credits_add "pause"
  293.  
  294. waitthread global/credits.scr::credits_add "section" "Level Design Team"
  295. waitthread global/credits.scr::credits_add "entry" "Brady Bell"
  296. waitthread global/credits.scr::credits_add "entry" "David Howe"
  297. //waitthread global/credits.scr::credits_add "image" "show" 6 "textures/mohmenu/credits/log_soldier" 45 0 80 640 320
  298. waitthread global/credits.scr::credits_add "entry" "Victor S. Mercieca"
  299. waitthread global/credits.scr::credits_add "entry" "Edward J. Moore III"
  300. waitthread global/credits.scr::credits_add "entry" "Dave C. Nash"
  301. waitthread global/credits.scr::credits_add "entry" "Matt Sophos"
  302. waitthread global/credits.scr::credits_add "entry" "Ken Spencer"
  303. waitthread global/credits.scr::credits_add "pause"
  304. waitthread global/credits.scr::credits_add "pause"
  305.  
  306.  
  307. waitthread global/credits.scr::credits_add "section" "Test Team"
  308. waitthread global/credits.scr::credits_add "entry" "Darrell Abney"
  309. waitthread global/credits.scr::credits_add "entry" "Brian Bland" 
  310. waitthread global/credits.scr::credits_add "entry" "Maathew Campisi"
  311. waitthread global/credits.scr::credits_add "entry" "Will Drees"
  312. waitthread global/credits.scr::credits_add "entry" "Tom Hess"
  313. waitthread global/credits.scr::credits_add "entry" "William Lee"
  314. waitthread global/credits.scr::credits_add "entry" "Kevin Lewis"
  315. waitthread global/credits.scr::credits_add "entry" "Steve Lin"
  316. waitthread global/credits.scr::credits_add "entry" "Anthony Miller"
  317. waitthread global/credits.scr::credits_add "entry" "Mark Quinanola"
  318. waitthread global/credits.scr::credits_add "entry" "Mike Roloson"
  319. waitthread global/credits.scr::credits_add "entry" "Luis Sempe"
  320. waitthread global/credits.scr::credits_add "entry" "Marcel Tirtariandi"
  321. waitthread global/credits.scr::credits_add "pause"
  322.  
  323.  
  324. waitthread global/credits.scr::credits_add "section" "Voice Talent"
  325.  
  326. waitthread global/credits.scr::credits_add "pause"
  327.  
  328. //waitthread global/credits.scr::credits_add "image" "show" 2 "textures/mohmenu/credits/soldiers_walking" 45 0 80 640 320
  329. waitthread global/credits.scr::credits_add "sub_section" "Gary Oldman as Sergeant Jack Barnes"
  330. waitthread global/credits.scr::credits_add "pause"
  331. waitthread global/credits.scr::credits_add "pause"
  332. waitthread global/credits.scr::credits_add "sub_section" "Mr. Oldman was recorded at"
  333. waitthread global/credits.scr::credits_add "sub_section" "Sony Recording Studios"
  334. waitthread global/credits.scr::credits_add "sub_section" "Los Angeles, California"
  335. waitthread global/credits.scr::credits_add "pause"
  336. waitthread global/credits.scr::credits_add "pause"
  337.  
  338. waitthread global/credits.scr::credits_add "section" "Voice Recording Services Provided by"
  339. waitthread global/credits.scr::credits_add "section" "Voicegroup, Hollywood"
  340. waitthread global/credits.scr::credits_add "pause"
  341. waitthread global/credits.scr::credits_add "entry" "Charles de Vries & Alex Kuznetsov" "International Voice Direction"
  342. waitthread global/credits.scr::credits_add "pause"
  343. waitthread global/credits.scr::credits_add "entry" "Jim MacNeill" "Producer"
  344. waitthread global/credits.scr::credits_add "pause"
  345. waitthread global/credits.scr::credits_add "entry" "David Beron" "Pasha D. Lychnikoff"
  346. waitthread global/credits.scr::credits_add "entry" "Robert Biehn" "Matt K. Miller"
  347. waitthread global/credits.scr::credits_add "entry" "Kenneth Danziger" "Tony Oliver" 
  348. waitthread global/credits.scr::credits_add "entry" "Guido Foehrweisser" "Paul St. Peter"
  349. waitthread global/credits.scr::credits_add "entry" "Rene Klaus Heger" "Julian Stone"
  350. waitthread global/credits.scr::credits_add "entry" "Neil Hunt" "Alex Veadov" 
  351. waitthread global/credits.scr::credits_add "entry" "Steve Kramer" "Illia Volok"
  352. waitthread global/credits.scr::credits_add "entry" "Alex Kuznetsov" "Gunter Ziegler" 
  353. waitthread global/credits.scr::credits_add "entry" "Neil Larson" 
  354. waitthread global/credits.scr::credits_add "pause"
  355. waitthread global/credits.scr::credits_add "entry" "Al Johnson" "Voice Recording Engineer"
  356. waitthread global/credits.scr::credits_add "pause"
  357. waitthread global/credits.scr::credits_add "pause"
  358. waitthread global/credits.scr::credits_add "section" "Crocodile Productions"
  359. waitthread global/credits.scr::credits_add "entry" "Patrick O'Brien" "Vice President"
  360. waitthread global/credits.scr::credits_add "entry" "Marci Galea" "Manager, Business Affairs"
  361. waitthread global/credits.scr::credits_add "entry" "Jennifer Ansaldo" "Administrative Assistant"
  362. waitthread global/credits.scr::credits_add "pause"
  363. waitthread global/credits.scr::credits_add "pause"
  364.  
  365. waitthread global/credits.scr::credits_add "section" "Written by"
  366. waitthread global/credits.scr::credits_add "entry" "Brady Bell"
  367. waitthread global/credits.scr::credits_add "entry" "Danny Bilson"
  368. //waitthread global/credits.scr::credits_add "image" "show" 7 "textures/mohmenu/credits/tank" 35 0 80 640 320
  369. waitthread global/credits.scr::credits_add "entry" "Paul DeMeo"
  370. waitthread global/credits.scr::credits_add "entry" "Jon Galvan"
  371. waitthread global/credits.scr::credits_add "entry" "Dave C. Nash"
  372. waitthread global/credits.scr::credits_add "pause"
  373. waitthread global/credits.scr::credits_add "section" "Movies by"
  374. waitthread global/credits.scr::credits_add "entry" "Jon Galvan"
  375. waitthread global/credits.scr::credits_add "pause"
  376.  
  377. waitthread global/credits.scr::credits_add "section" "Poetry"
  378. waitthread global/credits.scr::credits_add "entry_single" "'The Hour is Go' by Francis J. Turner"
  379. waitthread global/credits.scr::credits_add "entry_single" "from his personal archives"
  380. waitthread global/credits.scr::credits_add "pause"
  381. waitthread global/credits.scr::credits_add "entry_single" "'The Hills of Bastogne' by Bernard J. Mckearney"
  382. waitthread global/credits.scr::credits_add "entry_single" "from the book"
  383. waitthread global/credits.scr::credits_add "entry_single" "Rendezvous with Destiny, A History of the 101st Airborne Division"
  384. waitthread global/credits.scr::credits_add "entry_single" "by"
  385. waitthread global/credits.scr::credits_add "entry_single" "Leonard Rapport and Arthur Northwood, Jr."
  386. waitthread global/credits.scr::credits_add "entry_single" "under license by Sean Konecky"
  387. waitthread global/credits.scr::credits_add "entry_single" "Konecky & Konecky Books"
  388. waitthread global/credits.scr::credits_add "pause"
  389. waitthread global/credits.scr::credits_add "entry_single" "'That Something' by Ronald Tee - 56 Recce Reg't,Battleaxe Div., British 8th Army"
  390. waitthread global/credits.scr::credits_add "entry_single" "from the book"
  391. waitthread global/credits.scr::credits_add "entry_single" "A British Soldier Remembers"
  392. waitthread global/credits.scr::credits_add "pause"
  393. waitthread global/credits.scr::credits_add "pause"
  394. waitthread global/credits.scr::credits_add "entry_single" "Medal of Honor Allied Assault Spearhead"
  395. waitthread global/credits.scr::credits_add "entry_single" "uses Miles Sound System."
  396. waitthread global/credits.scr::credits_add "entry_single" "Copyright (C) 1991-2002 by RAD Game Tools, Inc."
  397. waitthread global/credits.scr::credits_add "pause"
  398. waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/miles" 150 64 64
  399.  
  400. // insert Miles logo here
  401. waitthread global/credits.scr::credits_add "pause"
  402. waitthread global/credits.scr::credits_add "pause"
  403. waitthread global/credits.scr::credits_add "entry_single" "MPEG Layer-3 playback supplied with the Miles Sound System from RAD Game Tools, Inc."
  404. waitthread global/credits.scr::credits_add "entry_single" "MPEG Layer-3 audio compression technology licensed by Fraunhofer IIS and THOMSON multimedia."
  405. waitthread global/credits.scr::credits_add "pause"
  406. waitthread global/credits.scr::credits_add "pause"
  407. waitthread global/credits.scr::credits_add "entry_single" "This product contains software technology licensed by GameSpy Industries, Inc."
  408. waitthread global/credits.scr::credits_add "entry_single" "(c) 1999-2002 GameSpy Industries, Inc. All rights reserved."
  409. waitthread global/credits.scr::credits_add "pause"
  410. waitthread global/credits.scr::credits_add "pause"
  411. waitthread global/credits.scr::credits_add "entry_single" "The Way It's Meant to be Played Logo and other NVIDIA Marks are trademarks"
  412. waitthread global/credits.scr::credits_add "entry_single" "of NVIDIA Corporation."
  413. waitthread global/credits.scr::credits_add "pause"
  414. waitthread global/credits.scr::credits_add "pause"
  415. //***************************************************
  416. //***************************************************
  417. //*** EA studio and WW credits
  418. //***************************************************
  419. //***************************************************
  420. //waitthread global/credits.scr::credits_add "image" "show" 8 "textures/mohmenu/credits/shooters" 35 0 80 640 320
  421.  
  422. waitthread global/credits.scr::credits_add "section" "Electronic Arts"
  423.  
  424. waitthread global/credits.scr::credits_add "pause"
  425. waitthread global/credits.scr::credits_add "pause"
  426.  
  427. waitthread global/credits.scr::credits_add "section" "Electronic Arts - Los Angeles"
  428.  
  429.  
  430. waitthread global/credits.scr::credits_add "pause"
  431. waitthread global/credits.scr::credits_add "section" "Executive Staff"
  432. waitthread global/credits.scr::credits_add "entry" "Rick Giolito" "Executive Producer"
  433. waitthread global/credits.scr::credits_add "entry" "John Batter" "General Manager"
  434. waitthread global/credits.scr::credits_add "entry" "Steve Anderson" "CTO"
  435. waitthread global/credits.scr::credits_add "entry" "Joe Aguilar & Steve Arnold" "IS&T"
  436. waitthread global/credits.scr::credits_add "entry" "Ray Robinson & Steve Rottman" "IT Support"
  437. waitthread global/credits.scr::credits_add "entry" "Evan Birkby" "QA Manager"
  438. waitthread global/credits.scr::credits_add "pause"
  439.  
  440. //waitthread global/credits.scr::credits_add "image" "show" 9 "textures/mohmenu/credits/building" 35 0 80 640 320
  441.  
  442. waitthread global/credits.scr::credits_add "pause"
  443. waitthread global/credits.scr::credits_add "section" "EA Marketing"
  444. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_train" 420 170 80
  445. waitthread global/credits.scr::credits_add "entry_single" "Jillian Goldberg"
  446. waitthread global/credits.scr::credits_add "entry_single" "Lincoln Hershberger"
  447.  
  448. waitthread global/credits.scr::credits_add "pause"
  449. waitthread global/credits.scr::credits_add "section" "EA UK Marketing"
  450. waitthread global/credits.scr::credits_add "entry_single" "Jonathan Bunney"
  451. waitthread global/credits.scr::credits_add "entry_single" "Audrey Meehan"
  452.  
  453.  
  454. //waitthread global/credits.scr::credits_add "image" "show" 10 "textures/mohmenu/credits/train" 35 0 80 640 320
  455. waitthread global/credits.scr::credits_add "pause"
  456. waitthread global/credits.scr::credits_add "section" "EA Public Relations"
  457. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_tank_rubble" 420 170 80
  458. waitthread global/credits.scr::credits_add "entry_single" "Steve Groll"
  459. waitthread global/credits.scr::credits_add "entry_single" "Anne Marie Stein"
  460.  
  461.  
  462. waitthread global/credits.scr::credits_add "pause"
  463.  
  464.  
  465. // 
  466. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_soviet_flag" 420 170 80
  467. // 
  468. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_shooter" 420 170 80
  469. // 
  470. // 
  471. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_3_2" 420 170 80
  472. // 
  473. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_1_2" 420 170 80
  474.  
  475. waitthread global/credits.scr::credits_add "section" "International Development"
  476. waitthread global/credits.scr::credits_add "entry_single" "Dagmar Bruenig"
  477. waitthread global/credits.scr::credits_add "entry_single" "Atsuko Matsumoto"
  478. waitthread global/credits.scr::credits_add "entry_single" "Lafayette Taylor"
  479.  
  480. //waitthread global/credits.scr::credits_add "image" "show" 11 "textures/mohmenu/credits/tank_commander" 35 0 80 640 320
  481.  
  482. waitthread global/credits.scr::credits_add "pause"
  483. waitthread global/credits.scr::credits_add "section" "EA WorldWide Studios"
  484. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_sub_pen_explosion" 420 170 80
  485. waitthread global/credits.scr::credits_add "entry_single" "Don Mattrick"
  486. waitthread global/credits.scr::credits_add "entry_single" "Bruce McMillan"
  487. waitthread global/credits.scr::credits_add "entry_single" "Paul Lee"
  488. waitthread global/credits.scr::credits_add "entry_single" "Scott Cronce"
  489.  
  490. waitthread global/credits.scr::credits_add "pause"
  491. waitthread global/credits.scr::credits_add "section" "EA FLT"
  492. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_soviet_flag" 420 170 80
  493. waitthread global/credits.scr::credits_add "entry_single" "Kevin Enos"
  494. waitthread global/credits.scr::credits_add "entry_single" "Arnel Flandez"
  495. waitthread global/credits.scr::credits_add "entry_single" "Pierre Fuger"
  496. waitthread global/credits.scr::credits_add "entry_single" "Luis Iga"
  497. waitthread global/credits.scr::credits_add "entry_single" "Chris Kassabian"
  498. waitthread global/credits.scr::credits_add "entry_single" "Michael Yeung"
  499. waitthread global/credits.scr::credits_add "pause"
  500.  
  501. //waitthread global/credits.scr::credits_add "image" "show" 12 "textures/mohmenu/credits/snow_trucks" 35 0 80 640 320
  502. waitthread global/credits.scr::credits_add "section" "EA CQC"
  503. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_snow_trucks" 420 170 80
  504. waitthread global/credits.scr::credits_add "entry_single" "Tony Alexander"
  505. waitthread global/credits.scr::credits_add "entry_single" "Anthony Barbagallo"
  506. waitthread global/credits.scr::credits_add "entry_single" "Eron Garcia"
  507. waitthread global/credits.scr::credits_add "entry_single" "Darryl Jenkins"
  508. waitthread global/credits.scr::credits_add "entry_single" "Dave Knudson"
  509. waitthread global/credits.scr::credits_add "entry_single" "Russell Medeiros"
  510. waitthread global/credits.scr::credits_add "entry_single" "Simon Steel"
  511.  
  512. waitthread global/credits.scr::credits_add "pause"
  513. waitthread global/credits.scr::credits_add "section" "EA CAT Lab"
  514. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_ho-ix" 420 170 80
  515. waitthread global/credits.scr::credits_add "entry_single" "Angelo Bayan"
  516. waitthread global/credits.scr::credits_add "entry_single" "Dave Caron"
  517. waitthread global/credits.scr::credits_add "entry_single" "Mark Gonzales"
  518. waitthread global/credits.scr::credits_add "entry_single" "John Hanley"
  519. waitthread global/credits.scr::credits_add "entry_single" "Dave Koerner"
  520.  
  521. // waitthread global/credits.scr::credits_add "pause"
  522. // waitthread global/credits.scr::credits_add "section" "EARS Test"
  523. // waitthread global/credits.scr::credits_add "entry" "Kurt Hsu" "Test Manager"
  524. // waitthread global/credits.scr::credits_add "entry" "Ludon Lee" "Project Supervisor"
  525. // waitthread global/credits.scr::credits_add "entry" "Melissa Tague" "Lead Tester"
  526. // waitthread global/credits.scr::credits_add "pause"
  527. // waitthread global/credits.scr::credits_add "entry" "Vince Brooks" "Roo Henson"
  528. // waitthread global/credits.scr::credits_add "entry" "Jensen Delap" "Daniel Kim"
  529. // waitthread global/credits.scr::credits_add "entry" "Stewart Graff" "Sullivan Manikhong"
  530. // waitthread global/credits.scr::credits_add "entry" "Rob Harrell"
  531.  
  532.  
  533. //waitthread global/credits.scr::credits_add "image" "show" 13 "textures/mohmenu/credits/shooter" 35 0 80 640 320
  534. waitthread global/credits.scr::credits_add "pause"
  535. waitthread global/credits.scr::credits_add "section" "Medal of Honor Music by"
  536. waitthread global/credits.scr::credits_add "entry_single" "Michael Giacchino"
  537.  
  538. waitthread global/credits.scr::credits_add "pause"
  539. waitthread global/credits.scr::credits_add "sub_section" "Military Advisor"
  540. waitthread global/credits.scr::credits_add "entry_single" "Captain Dale Dye, USMC (ret.)"
  541.  
  542. waitthread global/credits.scr::credits_add "pause"
  543. waitthread global/credits.scr::credits_add "sub_section" "Created by"
  544. waitthread global/credits.scr::credits_add "entry_single" "Steven Spielberg"
  545.  
  546. waitthread global/credits.scr::credits_add "pause"
  547. waitthread global/credits.scr::credits_add "section" "Created in Partnership with the" 
  548. waitthread global/credits.scr::credits_add "section" "Congressional Medal of Honor Society" 
  549. waitthread global/credits.scr::credits_add "entry_single" "www.cmohs.org"
  550. waitthread global/credits.scr::credits_add "entry" "Nicky D. Bacon" "President"
  551. waitthread global/credits.scr::credits_add "entry" "Victoria Leslie" "Director"
  552. waitthread global/credits.scr::credits_add "pause"
  553. waitthread global/credits.scr::credits_add "section" "MOH Community Map Winners"
  554. waitthread global/credits.scr::credits_add "entry" "Lothar 'Surgeon' Bies" "Stadt" 
  555. waitthread global/credits.scr::credits_add "entry" "Johnathan Porter" "Gewitter"
  556. waitthread global/credits.scr::credits_add "entry" "Steven Delrue" "Unterseite"
  557.  
  558. //waitthread global/credits.scr::credits_add "image" "show" 14 "textures/mohmenu/credits/soviet_flag" 15 0 80 640 320
  559. waitthread global/credits.scr::credits_add "pause"
  560. waitthread global/credits.scr::credits_add "pause"
  561. waitthread global/credits.scr::credits_add "section" "Special Thanks"
  562. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_building" 420 170 80
  563. waitthread global/credits.scr::credits_add "entry_single" "Gary Oldman"
  564. waitthread global/credits.scr::credits_add "entry_single" "Doug Urbanski"
  565. waitthread global/credits.scr::credits_add "entry_single" "Bing Gordon"
  566. waitthread global/credits.scr::credits_add "entry_single" "Vinnie Vicari"
  567. waitthread global/credits.scr::credits_add "entry_single" "Max Spielberg"
  568. waitthread global/credits.scr::credits_add "entry_single" "Mumbo Jumbo"
  569. waitthread global/credits.scr::credits_add "entry_single" "Ryan Gordon"
  570. waitthread global/credits.scr::credits_add "entry_single" "Steve Karnes"
  571. waitthread global/credits.scr::credits_add "entry_single" "Phil Spangenberger"
  572. waitthread global/credits.scr::credits_add "entry_single" "Stembridge Gun Rentals"
  573. waitthread global/credits.scr::credits_add "entry_single" "Fred Garvin"
  574. waitthread global/credits.scr::credits_add "entry_single" "John Travis"
  575. //waitthread global/credits.scr::credits_add "image" "show" 15 "textures/mohmenu/credits/soldiers_walking" 22 0 80 640 320
  576. waitthread global/credits.scr::credits_add "entry_single" "Robyn Dowsett"
  577. // waitthread global/credits.scr::credits_add "image_scroll" "textures/mohmenu/credits/i_1_3" 420 170 80
  578. waitthread global/credits.scr::credits_add "entry_single" "Paul Quilliam"
  579. waitthread global/credits.scr::credits_add "entry_single" "Sylvie Stulic"
  580. waitthread global/credits.scr::credits_add "entry_single" "Michael Daugherty"
  581. waitthread global/credits.scr::credits_add "entry_single" "David Mills"
  582. waitthread global/credits.scr::credits_add "entry_single" "Kari Taina"
  583.  
  584. //*********************************************************
  585. //*********************************************************
  586. //*** terminate the credits
  587.  
  588. waitthread global/credits.scr::credits_add "pause"
  589. waitthread global/credits.scr::credits_add "pause"
  590. waitthread global/credits.scr::credits_add "pause"
  591. waitthread global/credits.scr::credits_add "pause"
  592. waitthread global/credits.scr::credits_add "pause"
  593. waitthread global/credits.scr::credits_add "pause"
  594. waitthread global/credits.scr::credits_add "pause"
  595. waitthread global/credits.scr::credits_add "pause"
  596. waitthread global/credits.scr::credits_add "pause"
  597.  
  598. // waitthread global/credits.scr::credits_add "image" "show" 2 "textures/mohmenu/credits/creditbackmoh" 4 192 185 256 128
  599. // waitthread global/credits.scr::credits_add "image" "show" "textures/mohmenu/credits/mohaas_logo" 4 192 112 256 256
  600.  
  601. waitthread global/credits.scr::credits_add "image" "show" 16 "textures/mohmenu/credits/mohaas_logo" 5 192 112 256 256
  602.  
  603. waitthread global/credits.scr::credits_add "pause"
  604. waitthread global/credits.scr::credits_add "pause"
  605. waitthread global/credits.scr::credits_add "pause"
  606. waitthread global/credits.scr::credits_add "pause"
  607. waitthread global/credits.scr::credits_add "pause"
  608.  
  609. // waitthread global/credits.scr::credits_add "image" "show" 20 "textures/mohmenu/credits/dedication" 9 64 179 512 128
  610. // 
  611. // waitthread global/credits.scr::credits_add "pause"
  612. // waitthread global/credits.scr::credits_add "pause"
  613. // waitthread global/credits.scr::credits_add "pause"
  614. // waitthread global/credits.scr::credits_add "pause"
  615. // waitthread global/credits.scr::credits_add "pause"
  616. // waitthread global/credits.scr::credits_add "pause"
  617. // waitthread global/credits.scr::credits_add "pause"
  618. waitthread global/credits.scr::credits_add "image" "hide" 1
  619.  
  620. waitthread global/credits.scr::credits_add "pause"
  621. waitthread global/credits.scr::credits_add "done"
  622.  
  623. end
  624.  
  625.  
  626. //*********************************************************
  627. //*** start the pictures
  628. //*********************************************************
  629. credits_start_pictures:
  630.  
  631. /*
  632. //*** show a picture normally with now time value
  633. waitthread global/credits.scr::credits_image "show" 1 "textures/mohmenu/credits/creditbacksky" NIL 0 83 640 400
  634.  
  635. wait 5
  636.  
  637. //*** show a picture for 5 seconds
  638. waitthread global/credits.scr::credits_image "show" 2 "textures/mohmenu/credits/creditbackmoh" 15 0 83 640 400
  639.  
  640. wait 30
  641.  
  642. //*** show a pictures with coordinates
  643. waitthread global/credits.scr::credits_image "show" 3 "textures/mohmenu/credits/creditbacktrrops" 60 0 83 640 400
  644.  
  645. wait 70
  646. waitthread global/credits.scr::credits_image "show" 4 "textures/mohmenu/credits/creditbacktrrops2" 60 0 83 640 400
  647.  
  648. wait 70
  649. waitthread global/credits.scr::credits_image "show" 5 "textures/mohmenu/credits/p47-1" 60 0 83 640 400
  650.  
  651. wait 100
  652. waitthread global/credits.scr::credits_image "hide" 1
  653. */
  654.  
  655. end