./col_text_adventure.lua

  1.  
  2.  
  3. local LIST_SCALE = .8 
  4.  
  5. local Image_sets = { 
  6. 	title = 		{frames = {"ui_txt_adv_title_1", "ui_txt_adv_title_2"}, sheet = "ui_bms_txt_adv_title"}, 
  7. } 
  8.  
  9. --[[ 
  10. Scene 					COL_TXT_ADV_01_SC_01 		-- The screen the text adventure is on  
  11. Choice 					COL_TXT_ADV_01_SC_01_CH1 	-- The choice available to the player 
  12. Continue					COL_TXT_ADV_NEXT 				-- A generic CONTINUE button for screens that have enough text to require two screens 
  13. To be continued... 	COL_TXT_ADV_END 				-- A final last option at the end of a text adventure 
  14. Try Again 				COL_TXT_ADV_RETRY 			-- An option for when you hit a fail state in the adventure and have to go back 
  15. ]]-- 
  16.  
  17. --TESTING 
  18. --Cur_text_adv = 18 
  19.  
  20. local Screen_width = 860 
  21.  
  22. local Data = {} 
  23.  
  24. local COLOR_TEXT_ADVENTURE_PRIMARY = {R = 255/255, G = 255/255, B = 255/255} 
  25. local COLOR_TEXT_ADVENTURE_SECONDARY = {R = 120/255, G = 120/255, B = 120/255} 
  26. local COLOR_TEXT_ADVENTURE_TERTIARY = {R = 255/255, G = 255/255, B = 255/255} 
  27.  
  28. local Text_buffer = {} 
  29. local Max_text_buffer_length = 6 
  30. local Input_tracker 
  31. local Mouse_input_tracker 
  32. local Col_text_adventure_doc_handle = -1 
  33. local Cur_scen = 1 
  34. local Cur_audio_id = -1 
  35. local Action = {} 
  36. local Image_h = -1 
  37. local Prev_image = {} 
  38. local Image_frames_table = -1 
  39. local Hint_bar 
  40.  
  41. Col_text_adventure_list = -1 
  42.  
  43. function col_text_adventure_init() 
  44.  
  45.  
  46. 	--Get doc handle 
  47. 	Col_text_adventure_doc_handle = vint_document_find("col_text_adventure") 
  48.  
  49. 	 
  50. 	 
  51. 	--Handle Input Tracker 
  52. 	Input_tracker = Vdo_input_tracker:new() 
  53. 	Input_tracker:add_input("nav_up", "col_text_adventure_nav_up", 50) 
  54. 	Input_tracker:add_input("nav_down", "col_text_adventure_nav_down", 50) 
  55. 	Input_tracker:add_input("select", "col_text_adventure_button_a", 50) 
  56. 	Input_tracker:add_input("back", "col_text_adventure_button_b", 50) 
  57. 	Input_tracker:subscribe(true)	 
  58.  
  59. 	--Setup megalist 
  60. 	Col_text_adventure_list = Vdo_mega_list:new("choice_list", 0, Col_text_adventure_doc_handle, "col_text_adventure.lua", "Col_text_adventure_list") 
  61. 	Col_text_adventure_list:set_highlight_color(COLOR_TEXT_ADVENTURE_TERTIARY,COLOR_TEXT_ADVENTURE_TERTIARY,COLOR_STORE_VEHICLE_TERTIARY) 
  62. 	 
  63. 	--set up image 
  64. 	Image_h = vint_object_find("image", 0, Col_text_adventure_doc_handle) 
  65. 	 
  66. 	--Hint Bar 
  67. 	Hint_bar = Vdo_hint_bar:new("hint_bar", 0, Col_text_adventure_doc_handle) 
  68. 	local hint_data = { 
  69. 		{CTRL_MENU_BUTTON_B, "MENU_BACK"}, 
  70. 	} 
  71. 	Hint_bar:set_hints(hint_data) 
  72. 	Hint_bar:set_visible(true) 
  73. 	 
  74. 	-- Add mouse input subscriptions for the PC 
  75. 	if game_get_platform() == "PC" then 
  76. 		Hint_bar:set_highlight(0) 
  77. 		Mouse_input_tracker = Vdo_input_tracker:new() 
  78. 		 
  79. 		Hint_bar:add_mouse_inputs("col_text_adventure", Mouse_input_tracker, 700000) 
  80. 		Mouse_input_tracker:subscribe(false) 
  81. 	end 
  82. 	 
  83. 	--Hide base text 
  84. 	local base_text = vint_object_find("base_text", 0, Col_text_adventure_doc_handle) 
  85. 	vint_set_property(base_text, "visible", false)	 
  86. 	 
  87. 	if vint_is_std_res() then 
  88. 		Screen_width = 800 
  89. 		--vint_set_property(base_text, "wrap_width", 815)	 
  90. 	else 
  91. 		Screen_width = 860 
  92. 		--vint_set_property(base_text, "wrap_width", 860)	 
  93. 	end 
  94. 	 
  95. 	local cursor_blink = Vdo_anim_object:new("cursor_blink", 0, Col_text_adventure_doc_handle) 
  96. 	cursor_blink:play(0) 
  97. 	 
  98. 	local cursor_h = vint_object_find("cursor", 0, Col_text_adventure_doc_handle) 
  99. 	local prompt_txt_h = vint_object_find("prompt_txt", 0, Col_text_adventure_doc_handle) 
  100. 	 
  101. 	if Cur_text_adv >= 21 then 
  102. 		vint_set_property(cursor_h, "visible", false) 
  103. 		vint_set_property(prompt_txt_h, "visible", false) 
  104. 	else 
  105. 		vint_set_property(cursor_h, "visible", true) 
  106. 		vint_set_property(prompt_txt_h, "visible", true) 
  107. 	end 
  108. 	 
  109. 		if Cur_text_adv == 1 then 
  110. 			Data = { 
  111. 				[1] = { 
  112. 					scenario = "COL_TXT_ADV_01_SC_01", 
  113. 					image = Image_sets.title, 
  114. 					choices = { 
  115. 						[1] = { 
  116. 							label = "COL_TXT_ADV_NEXT", 
  117. 							target = 2, 
  118. 							type = TYPE_BUTTON, 
  119. 						}, 
  120. 					}, 
  121. 					sfx = "Scenario", 
  122. 				}, 
  123. 				[2] = { 
  124. 					scenario = "COL_TXT_ADV_01_SC_02", 
  125. 					image = Image_sets.title, 
  126. 					choices = { 
  127. 						[1] = { 
  128. 							label = "COL_TXT_ADV_01_SC_02_CH1", 
  129. 							target = 3, 
  130. 							type = TYPE_BUTTON,				 
  131. 						}, 
  132. 						[2] = { 
  133. 							label = "COL_TXT_ADV_01_SC_02_CH2", 
  134. 							target = 4,				 
  135. 							type = TYPE_BUTTON,				 
  136. 						}, 
  137. 						[3] = { 
  138. 							label = "COL_TXT_ADV_01_SC_02_CH3", 
  139. 							target = 5,				 
  140. 							type = TYPE_BUTTON,				 
  141. 						} 
  142. 					}, 
  143. 					sfx = "Neutral", 
  144. 				}, 
  145. 				[3] = { 
  146. 					scenario = "COL_TXT_ADV_01_SC_03", 
  147. 					image = Image_sets.title, 
  148. 					choices = { 
  149. 						[1] = { 
  150. 							label = "COL_TXT_ADV_RETRY", 
  151. 							target = 2, 
  152. 							type = TYPE_BUTTON,				 
  153. 						}, 
  154. 					}, 
  155. 					sfx = "Neutral", 
  156. 				}, 
  157. 				[4] = { 
  158. 					scenario = "COL_TXT_ADV_01_SC_04", 
  159. 					image = Image_sets.title, 
  160. 					choices = { 
  161. 						[1] = { 
  162. 							label = "COL_TXT_ADV_RETRY", 
  163. 							target = 2, 
  164. 							type = TYPE_BUTTON,				 
  165. 						}, 
  166. 					}, 
  167. 					sfx = "Neutral", 
  168. 				}, 
  169. 				[5] = { 
  170. 					scenario = "COL_TXT_ADV_01_SC_05", 
  171. 					image = Image_sets.title, 
  172. 					choices = { 
  173. 						[1] = { 
  174. 							label = "COL_TXT_ADV_NEXT", 
  175. 							target = 6, 
  176. 							type = TYPE_BUTTON,				 
  177. 						}, 
  178. 					}, 
  179. 					sfx = "Neutral", 
  180. 				}, 
  181. 				[6] = { 
  182. 					scenario = "COL_TXT_ADV_01_SC_06", 
  183. 					image = Image_sets.title, 
  184. 					choices = { 
  185. 						[1] = { 
  186. 							label = "COL_TXT_ADV_01_SC_06_CH1", 
  187. 							target = 7, 
  188. 							type = TYPE_BUTTON,				 
  189. 						}, 
  190. 						[2] = { 
  191. 							label = "COL_TXT_ADV_01_SC_06_CH2", 
  192. 							target = 8,				 
  193. 							type = TYPE_BUTTON,				 
  194. 						}, 
  195. 						[3] = { 
  196. 							label = "COL_TXT_ADV_01_SC_06_CH3", 
  197. 							target = 10,				 
  198. 							type = TYPE_BUTTON,				 
  199. 						}, 
  200. 					}, 
  201. 					sfx = "Neutral", 
  202. 				}, 
  203. 				[7] = { 
  204. 					scenario = "COL_TXT_ADV_01_SC_07", 
  205. 					image = Image_sets.title, 
  206. 					choices = { 
  207. 						[1] = { 
  208. 							label = "COL_TXT_ADV_RETRY", 
  209. 							target = 6, 
  210. 							type = TYPE_BUTTON,				 
  211. 						}, 
  212. 					}, 
  213. 					sfx = "Neutral", 
  214. 				}, 
  215. 				[8] = { 
  216. 					scenario = "COL_TXT_ADV_01_SC_08", 
  217. 					image = Image_sets.title, 
  218. 					choices = { 
  219. 						[1] = { 
  220. 							label = "COL_TXT_ADV_NEXT", 
  221. 							target = 9, 
  222. 							type = TYPE_BUTTON,				 
  223. 						}, 
  224. 					}, 
  225. 					sfx = "Neutral", 
  226. 				}, 
  227. 				[9] = { 
  228. 					scenario = "COL_TXT_ADV_01_SC_09", 
  229. 					image = Image_sets.title, 
  230. 					choices = { 
  231. 						[1] = { 
  232. 							label = "COL_TXT_ADV_01_SC_09_CH1", 
  233. 							target = 11, 
  234. 							type = TYPE_BUTTON,				 
  235. 						}, 
  236. 						[2] = { 
  237. 							label = "COL_TXT_ADV_01_SC_09_CH2", 
  238. 							target = 12,				 
  239. 							type = TYPE_BUTTON,				 
  240. 						}, 
  241. 						 
  242. 						[3] = { 
  243. 							label = "COL_TXT_ADV_01_SC_09_CH3", 
  244. 							target = 13,				 
  245. 							type = TYPE_BUTTON,				 
  246. 						}, 
  247. 					}, 
  248. 					sfx = "Neutral", 
  249. 				}, 
  250. 				[10] = { 
  251. 					scenario = "COL_TXT_ADV_01_SC_10", 
  252. 					image = Image_sets.title, 
  253. 					choices = { 
  254. 						[1] = { 
  255. 							label = "COL_TXT_ADV_RETRY", 
  256. 							target = 6, 
  257. 							type = TYPE_BUTTON,				 
  258. 						}, 
  259. 					}, 
  260. 					sfx = "Neutral", 
  261. 				}, 
  262. 				[11] = { 
  263. 					scenario = "COL_TXT_ADV_01_SC_11", 
  264. 					image = Image_sets.title, 
  265. 					choices = { 
  266. 						[1] = { 
  267. 							label = "COL_TXT_ADV_END", 
  268. 							target = -1, 
  269. 							type = TYPE_BUTTON,				 
  270. 						}, 
  271. 					}, 
  272. 					sfx = "Neutral", 
  273. 				}, 
  274. 				[12] = { 
  275. 					scenario = "COL_TXT_ADV_01_SC_12", 
  276. 					image = Image_sets.title, 
  277. 					choices = { 
  278. 						[1] = { 
  279. 							label = "COL_TXT_ADV_RETRY", 
  280. 							target = 9, 
  281. 							type = TYPE_BUTTON,				 
  282. 						}, 
  283. 					}, 
  284. 					sfx = "Neutral", 
  285. 				}, 
  286. 				[13] = { 
  287. 					scenario = "COL_TXT_ADV_01_SC_13", 
  288. 					image = Image_sets.title, 
  289. 					choices = { 
  290. 						[1] = { 
  291. 							label = "COL_TXT_ADV_RETRY", 
  292. 							target = 9, 
  293. 							type = TYPE_BUTTON,				 
  294. 						}, 
  295. 					}, 
  296. 					sfx = "Neutral", 
  297. 				}, 
  298. 			} 
  299. 		elseif Cur_text_adv == 2 then 
  300. 			Data = { 
  301. 				[1] = { 
  302. 					scenario = "COL_TXT_ADV_02_SC_01", 
  303. 					image = Image_sets.title, 
  304. 					choices = { 
  305. 						[1] = { 
  306. 							label = "COL_TXT_ADV_NEXT", 
  307. 							target = 2, 
  308. 							type = TYPE_BUTTON,				 
  309. 						}, 
  310. 					}, 
  311. 					sfx = "Scenario", 
  312. 				}, 
  313. 				[2] = { 
  314. 					scenario = "COL_TXT_ADV_02_SC_02", 
  315. 					image = Image_sets.title, 
  316. 					choices = { 
  317. 						[1] = { 
  318. 							label = "COL_TXT_ADV_02_SC_02_CH1", 
  319. 							target = 3, 
  320. 							type = TYPE_BUTTON,				 
  321. 						}, 
  322. 						[2] = { 
  323. 							label = "COL_TXT_ADV_02_SC_02_CH2", 
  324. 							target = 5,				 
  325. 							type = TYPE_BUTTON,				 
  326. 						}, 
  327. 						[3] = { 
  328. 							label = "COL_TXT_ADV_02_SC_02_CH3", 
  329. 							target = 6,				 
  330. 							type = TYPE_BUTTON,				 
  331. 						}, 
  332. 					}, 
  333. 					sfx = "Neutral", 
  334. 				}, 
  335. 				[3] = { 
  336. 					scenario = "COL_TXT_ADV_02_SC_03", 
  337. 					image = Image_sets.title, 
  338. 					choices = { 
  339. 						[1] = { 
  340. 							label = "COL_TXT_ADV_NEXT", 
  341. 							target = 4, 
  342. 							type = TYPE_BUTTON,				 
  343. 						}, 
  344. 					}, 
  345. 					sfx = "Neutral", 
  346. 				}, 
  347. 				[4] = { 
  348. 					scenario = "COL_TXT_ADV_02_SC_04", 
  349. 					image = Image_sets.title, 
  350. 					choices = { 
  351. 						[1] = { 
  352. 							label = "COL_TXT_ADV_02_SC_04_CH1", 
  353. 							target = 7, 
  354. 							type = TYPE_BUTTON,				 
  355. 						}, 
  356. 						[2] = { 
  357. 							label = "COL_TXT_ADV_02_SC_04_CH2", 
  358. 							target = 8,				 
  359. 							type = TYPE_BUTTON,				 
  360. 						}, 
  361. 						[3] = { 
  362. 							label = "COL_TXT_ADV_02_SC_04_CH3", 
  363. 							target = 9,				 
  364. 							type = TYPE_BUTTON,				 
  365. 						}, 
  366. 						[4] = { 
  367. 							label = "COL_TXT_ADV_02_SC_04_CH4", 
  368. 							target = 10,				 
  369. 							type = TYPE_BUTTON,				 
  370. 						}, 
  371. 					}, 
  372. 					sfx = "Neutral", 
  373. 				}, 
  374. 				[5] = { 
  375. 					scenario = "COL_TXT_ADV_02_SC_05", 
  376. 					image = Image_sets.title, 
  377. 					choices = { 
  378. 						[1] = { 
  379. 							label = "COL_TXT_ADV_RETRY", 
  380. 							target = 2, 
  381. 							type = TYPE_BUTTON,				 
  382. 						}, 
  383. 					}, 
  384. 					sfx = "Neutral", 
  385. 				}, 
  386. 				[6] = { 
  387. 					scenario = "COL_TXT_ADV_02_SC_06", 
  388. 					image = Image_sets.title, 
  389. 					choices = { 
  390. 						[1] = { 
  391. 							label = "COL_TXT_ADV_RETRY", 
  392. 							target = 2, 
  393. 							type = TYPE_BUTTON,				 
  394. 						}, 
  395. 					}, 
  396. 					sfx = "Neutral", 
  397. 				}, 
  398. 				[7] = { 
  399. 					scenario = "COL_TXT_ADV_02_SC_07", 
  400. 					image = Image_sets.title, 
  401. 					choices = { 
  402. 						[1] = { 
  403. 							label = "COL_TXT_ADV_RETRY", 
  404. 							target = 4, 
  405. 							type = TYPE_BUTTON,				 
  406. 						}, 
  407. 					}, 
  408. 					sfx = "Neutral", 
  409. 				}, 
  410. 				[8] = { 
  411. 					scenario = "COL_TXT_ADV_02_SC_08", 
  412. 					image = Image_sets.title, 
  413. 					choices = { 
  414. 						[1] = { 
  415. 							label = "COL_TXT_ADV_RETRY", 
  416. 							target = 4, 
  417. 							type = TYPE_BUTTON,				 
  418. 						}, 
  419. 					}, 
  420. 					sfx = "Neutral", 
  421. 				}, 
  422. 				[9] = { 
  423. 					scenario = "COL_TXT_ADV_02_SC_09", 
  424. 					image = Image_sets.title, 
  425. 					choices = { 
  426. 						[1] = { 
  427. 							label = "COL_TXT_ADV_RETRY", 
  428. 							target = 4, 
  429. 							type = TYPE_BUTTON,				 
  430. 						}, 
  431. 					}, 
  432. 					sfx = "Neutral", 
  433. 				}, 
  434. 				[10] = { 
  435. 					scenario = "COL_TXT_ADV_02_SC_10", 
  436. 					image = Image_sets.title, 
  437. 					choices = { 
  438. 						[1] = { 
  439. 							label = "COL_TXT_ADV_NEXT", 
  440. 							target = 11, 
  441. 							type = TYPE_BUTTON,				 
  442. 						}, 
  443. 					}, 
  444. 					sfx = "Neutral", 
  445. 				}, 
  446. 				[11] = { 
  447. 					scenario = "COL_TXT_ADV_02_SC_11", 
  448. 					image = Image_sets.title, 
  449. 					choices = { 
  450. 						[1] = { 
  451. 							label = "COL_TXT_ADV_02_SC_11_CH1", 
  452. 							target = 12, 
  453. 							type = TYPE_BUTTON,				 
  454. 						}, 
  455. 						[2] = { 
  456. 							label = "COL_TXT_ADV_02_SC_11_CH2", 
  457. 							target = 13,				 
  458. 							type = TYPE_BUTTON,				 
  459. 						}, 
  460. 						[3] = { 
  461. 							label = "COL_TXT_ADV_02_SC_11_CH3", 
  462. 							target = 16,				 
  463. 							type = TYPE_BUTTON,				 
  464. 						}, 
  465. 						[4] = { 
  466. 							label = "COL_TXT_ADV_02_SC_11_CH4", 
  467. 							target = 17,				 
  468. 							type = TYPE_BUTTON,				 
  469. 						}, 
  470. 					}, 
  471. 					sfx = "Neutral", 
  472. 				}, 
  473. 				[12] = { 
  474. 					scenario = "COL_TXT_ADV_02_SC_12", 
  475. 					image = Image_sets.title, 
  476. 					choices = { 
  477. 						[1] = { 
  478. 							label = "COL_TXT_ADV_RETRY", 
  479. 							target = 11, 
  480. 							type = TYPE_BUTTON,				 
  481. 						}, 
  482. 					}, 
  483. 					sfx = "Neutral", 
  484. 				}, 
  485. 				[13] = { 
  486. 					scenario = "COL_TXT_ADV_02_SC_13", 
  487. 					image = Image_sets.title, 
  488. 					choices = { 
  489. 						[1] = { 
  490. 							label = "COL_TXT_ADV_NEXT", 
  491. 							target = 14, 
  492. 							type = TYPE_BUTTON,				 
  493. 						}, 
  494. 					}, 
  495. 					sfx = "Neutral", 
  496. 				}, 
  497. 				[14] = { 
  498. 					scenario = "COL_TXT_ADV_02_SC_14", 
  499. 					image = Image_sets.title, 
  500. 					choices = { 
  501. 						[1] = { 
  502. 							label = "COL_TXT_ADV_NEXT", 
  503. 							target = 15, 
  504. 							type = TYPE_BUTTON,				 
  505. 						}, 
  506. 					}, 
  507. 					sfx = "Neutral", 
  508. 				}, 
  509. 				[15] = { 
  510. 					scenario = "COL_TXT_ADV_02_SC_15", 
  511. 					image = Image_sets.title, 
  512. 					choices = { 
  513. 						[1] = { 
  514. 							label = "COL_TXT_ADV_END", 
  515. 							target = -1, 
  516. 							type = TYPE_BUTTON,				 
  517. 						}, 
  518. 					}, 
  519. 					sfx = "Neutral", 
  520. 				}, 
  521. 				[16] = { 
  522. 					scenario = "COL_TXT_ADV_02_SC_16", 
  523. 					image = Image_sets.title, 
  524. 					choices = { 
  525. 						[1] = { 
  526. 							label = "COL_TXT_ADV_RETRY", 
  527. 							target = 11, 
  528. 							type = TYPE_BUTTON,				 
  529. 						}, 
  530. 					}, 
  531. 					sfx = "Neutral", 
  532. 				}, 
  533. 				[17] = { 
  534. 					scenario = "COL_TXT_ADV_02_SC_17", 
  535. 					image = Image_sets.title, 
  536. 					choices = { 
  537. 						[1] = { 
  538. 							label = "COL_TXT_ADV_RETRY", 
  539. 							target = 11, 
  540. 							type = TYPE_BUTTON,				 
  541. 						}, 
  542. 					}, 
  543. 					sfx = "Neutral", 
  544. 				}, 
  545. 			} 
  546. 		elseif Cur_text_adv == 3 then 
  547. 			Data = { 
  548. 				[1] = { 
  549. 					scenario = "COL_TXT_ADV_03_SC_01", 
  550. 					image = Image_sets.title, 
  551. 					choices = { 
  552. 						[1] = { 
  553. 							label = "COL_TXT_ADV_NEXT", 
  554. 							target = 2, 
  555. 							type = TYPE_BUTTON,				 
  556. 						}, 
  557. 					}, 
  558. 					sfx = "Scenario", 
  559. 				}, 
  560. 				[2] = { 
  561. 					scenario = "COL_TXT_ADV_03_SC_02", 
  562. 					image = Image_sets.title, 
  563. 					choices = { 
  564. 						[1] = { 
  565. 							label = "COL_TXT_ADV_03_SC_02_CH1", 
  566. 							target = 3, 
  567. 							type = TYPE_BUTTON,				 
  568. 						}, 
  569. 						[2] = { 
  570. 							label = "COL_TXT_ADV_03_SC_02_CH2", 
  571. 							target = 4,				 
  572. 							type = TYPE_BUTTON,				 
  573. 						}, 
  574. 						[3] = { 
  575. 							label = "COL_TXT_ADV_03_SC_02_CH3", 
  576. 							target = 6,				 
  577. 							type = TYPE_BUTTON,				 
  578. 						}, 
  579. 					}, 
  580. 					sfx = "Neutral", 
  581. 				}, 
  582. 				[3] = { 
  583. 					scenario = "COL_TXT_ADV_03_SC_03", 
  584. 					image = Image_sets.title, 
  585. 					choices = { 
  586. 						[1] = { 
  587. 							label = "COL_TXT_ADV_RETRY", 
  588. 							target = 2, 
  589. 							type = TYPE_BUTTON,				 
  590. 						}, 
  591. 					}, 
  592. 					sfx = "Neutral", 
  593. 				}, 
  594. 				[4] = { 
  595. 					scenario = "COL_TXT_ADV_03_SC_04", 
  596. 					image = Image_sets.title, 
  597. 					choices = { 
  598. 						[1] = { 
  599. 							label = "COL_TXT_ADV_NEXT", 
  600. 							target = 5, 
  601. 							type = TYPE_BUTTON,				 
  602. 						}, 
  603. 					}, 
  604. 					sfx = "Neutral", 
  605. 				}, 
  606. 				[5] = { 
  607. 					scenario = "COL_TXT_ADV_03_SC_05", 
  608. 					image = Image_sets.title, 
  609. 					choices = { 
  610. 						[1] = { 
  611. 							label = "COL_TXT_ADV_03_SC_05_CH1", 
  612. 							target = 7, 
  613. 							type = TYPE_BUTTON,				 
  614. 						}, 
  615. 						[2] = { 
  616. 							label = "COL_TXT_ADV_03_SC_05_CH2", 
  617. 							target = 8,				 
  618. 							type = TYPE_BUTTON,				 
  619. 						}, 
  620. 						[3] = { 
  621. 							label = "COL_TXT_ADV_03_SC_05_CH3", 
  622. 							target = 9,				 
  623. 							type = TYPE_BUTTON,				 
  624. 						}, 
  625. 					}, 
  626. 					sfx = "Neutral", 
  627. 				}, 
  628. 				[6] = { 
  629. 					scenario = "COL_TXT_ADV_03_SC_06", 
  630. 					image = Image_sets.title, 
  631. 					choices = { 
  632. 						[1] = { 
  633. 							label = "COL_TXT_ADV_RETRY", 
  634. 							target = 2, 
  635. 							type = TYPE_BUTTON,				 
  636. 						}, 
  637. 					}, 
  638. 					sfx = "Neutral", 
  639. 				}, 
  640. 				[7] = { 
  641. 					scenario = "COL_TXT_ADV_03_SC_07", 
  642. 					image = Image_sets.title, 
  643. 					choices = { 
  644. 						[1] = { 
  645. 							label = "COL_TXT_ADV_RETRY", 
  646. 							target = 5, 
  647. 							type = TYPE_BUTTON,				 
  648. 						}, 
  649. 					}, 
  650. 					sfx = "Neutral", 
  651. 				}, 
  652. 				[8] = { 
  653. 					scenario = "COL_TXT_ADV_03_SC_08", 
  654. 					image = Image_sets.title, 
  655. 					choices = { 
  656. 						[1] = { 
  657. 							label = "COL_TXT_ADV_RETRY", 
  658. 							target = 5, 
  659. 							type = TYPE_BUTTON,				 
  660. 						}, 
  661. 					}, 
  662. 					sfx = "Neutral", 
  663. 				}, 
  664. 				[9] = { 
  665. 					scenario = "COL_TXT_ADV_03_SC_09", 
  666. 					image = Image_sets.title, 
  667. 					choices = { 
  668. 						[1] = { 
  669. 							label = "COL_TXT_ADV_NEXT", 
  670. 							target = 10, 
  671. 							type = TYPE_BUTTON,				 
  672. 						}, 
  673. 					}, 
  674. 					sfx = "Neutral", 
  675. 				}, 
  676. 				[10] = { 
  677. 					scenario = "COL_TXT_ADV_03_SC_10", 
  678. 					image = Image_sets.title, 
  679. 					choices = { 
  680. 						[1] = { 
  681. 							label = "COL_TXT_ADV_NEXT", 
  682. 							target = 11, 
  683. 							type = TYPE_BUTTON,				 
  684. 						}, 
  685. 					}, 
  686. 					sfx = "Neutral", 
  687. 				}, 
  688. 				[11] = { 
  689. 					scenario = "COL_TXT_ADV_03_SC_11", 
  690. 					image = Image_sets.title, 
  691. 					choices = { 
  692. 						[1] = { 
  693. 							label = "COL_TXT_ADV_03_SC_11_CH1", 
  694. 							target = 12, 
  695. 							type = TYPE_BUTTON,				 
  696. 						}, 
  697. 						[2] = { 
  698. 							label = "COL_TXT_ADV_03_SC_11_CH2", 
  699. 							target = 13,				 
  700. 							type = TYPE_BUTTON,				 
  701. 						}, 
  702. 						[3] = { 
  703. 							label = "COL_TXT_ADV_03_SC_11_CH3", 
  704. 							target = 14,				 
  705. 							type = TYPE_BUTTON,				 
  706. 						}, 
  707. 					}, 
  708. 					sfx = "Neutral", 
  709. 				}, 
  710. 				[12] = { 
  711. 					scenario = "COL_TXT_ADV_03_SC_12", 
  712. 					image = Image_sets.title, 
  713. 					choices = { 
  714. 						[1] = { 
  715. 							label = "COL_TXT_ADV_RETRY", 
  716. 							target = 11, 
  717. 							type = TYPE_BUTTON,				 
  718. 						}, 
  719. 					}, 
  720. 					sfx = "Neutral", 
  721. 				}, 
  722. 				[13] = { 
  723. 					scenario = "COL_TXT_ADV_03_SC_13", 
  724. 					image = Image_sets.title, 
  725. 					choices = { 
  726. 						[1] = { 
  727. 							label = "COL_TXT_ADV_RETRY", 
  728. 							target = 11, 
  729. 							type = TYPE_BUTTON,				 
  730. 						}, 
  731. 					}, 
  732. 					sfx = "Neutral", 
  733. 				}, 
  734. 				[14] = { 
  735. 					scenario = "COL_TXT_ADV_03_SC_14", 
  736. 					image = Image_sets.title, 
  737. 					choices = { 
  738. 						[1] = { 
  739. 							label = "COL_TXT_ADV_NEXT", 
  740. 							target = 15, 
  741. 							type = TYPE_BUTTON,				 
  742. 						}, 
  743. 					}, 
  744. 					sfx = "Neutral", 
  745. 				}, 
  746. 				[15] = { 
  747. 					scenario = "COL_TXT_ADV_03_SC_15", 
  748. 					image = Image_sets.title, 
  749. 					choices = { 
  750. 						[1] = { 
  751. 							label = "COL_TXT_ADV_END", 
  752. 							target = -1, 
  753. 							type = TYPE_BUTTON,				 
  754. 						}, 
  755. 					}, 
  756. 					sfx = "Neutral", 
  757. 				}, 
  758. 			} 
  759. 		elseif Cur_text_adv == 4 then 
  760. 			Data = { 
  761. 				[1] = { 
  762. 					scenario = "COL_TXT_ADV_04_SC_01", 
  763. 					image = Image_sets.title, 
  764. 					choices = { 
  765. 						[1] = { 
  766. 							label = "COL_TXT_ADV_NEXT", 
  767. 							target = 2, 
  768. 							type = TYPE_BUTTON,				 
  769. 						}, 
  770. 					}, 
  771. 					sfx = "Scenario", 
  772. 				}, 
  773. 				[2] = { 
  774. 					scenario = "COL_TXT_ADV_04_SC_02", 
  775. 					image = Image_sets.title, 
  776. 					choices = { 
  777. 						[1] = { 
  778. 							label = "COL_TXT_ADV_NEXT", 
  779. 							target = 3, 
  780. 							type = TYPE_BUTTON,				 
  781. 						}, 
  782. 					}, 
  783. 					sfx = "Neutral", 
  784. 				}, 
  785. 				[3] = { 
  786. 					scenario = "COL_TXT_ADV_04_SC_03", 
  787. 					image = Image_sets.title, 
  788. 					choices = { 
  789. 						[1] = { 
  790. 							label = "COL_TXT_ADV_04_SC_03_CH1", 
  791. 							target = 4, 
  792. 							type = TYPE_BUTTON,				 
  793. 						}, 
  794. 						[2] = { 
  795. 							label = "COL_TXT_ADV_04_SC_03_CH2", 
  796. 							target = 5,				 
  797. 							type = TYPE_BUTTON,				 
  798. 						}, 
  799. 						[3] = { 
  800. 							label = "COL_TXT_ADV_04_SC_03_CH3", 
  801. 							target = 6,				 
  802. 							type = TYPE_BUTTON,				 
  803. 						}, 
  804. 					}, 
  805. 					sfx = "Neutral", 
  806. 				}, 
  807. 				[4] = { 
  808. 					scenario = "COL_TXT_ADV_04_SC_04", 
  809. 					image = Image_sets.title, 
  810. 					choices = { 
  811. 						[1] = { 
  812. 							label = "COL_TXT_ADV_RETRY", 
  813. 							target = 3, 
  814. 							type = TYPE_BUTTON,				 
  815. 						}, 
  816. 					}, 
  817. 					sfx = "Neutral", 
  818. 				}, 
  819. 				[5] = { 
  820. 					scenario = "COL_TXT_ADV_04_SC_05", 
  821. 					image = Image_sets.title, 
  822. 					choices = { 
  823. 						[1] = { 
  824. 							label = "COL_TXT_ADV_RETRY", 
  825. 							target = 3, 
  826. 							type = TYPE_BUTTON,				 
  827. 						}, 
  828. 					}, 
  829. 					sfx = "Neutral", 
  830. 				}, 
  831. 				[6] = { 
  832. 					scenario = "COL_TXT_ADV_04_SC_06", 
  833. 					image = Image_sets.title, 
  834. 					choices = { 
  835. 						[1] = { 
  836. 							label = "COL_TXT_ADV_NEXT", 
  837. 							target = 7, 
  838. 							type = TYPE_BUTTON,				 
  839. 						}, 
  840. 					}, 
  841. 					sfx = "Neutral", 
  842. 				}, 
  843. 				[7] = { 
  844. 					scenario = "COL_TXT_ADV_04_SC_07", 
  845. 					image = Image_sets.title, 
  846. 					choices = { 
  847. 						[1] = { 
  848. 							label = "COL_TXT_ADV_04_SC_07_CH1", 
  849. 							target = 8, 
  850. 							type = TYPE_BUTTON,				 
  851. 						}, 
  852. 						[2] = { 
  853. 							label = "COL_TXT_ADV_04_SC_07_CH2", 
  854. 							target = 10,				 
  855. 							type = TYPE_BUTTON,				 
  856. 						}, 
  857. 						[3] = { 
  858. 							label = "COL_TXT_ADV_04_SC_07_CH3", 
  859. 							target = 12,				 
  860. 							type = TYPE_BUTTON,				 
  861. 						}, 
  862. 					}, 
  863. 					sfx = "Neutral", 
  864. 				}, 
  865. 				[8] = { 
  866. 					scenario = "COL_TXT_ADV_04_SC_08", 
  867. 					image = Image_sets.title, 
  868. 					choices = { 
  869. 						[1] = { 
  870. 							label = "COL_TXT_ADV_NEXT", 
  871. 							target = 9, 
  872. 							type = TYPE_BUTTON,				 
  873. 						}, 
  874. 					}, 
  875. 					sfx = "Neutral", 
  876. 				}, 
  877. 				[9] = { 
  878. 					scenario = "COL_TXT_ADV_04_SC_09", 
  879. 					image = Image_sets.title, 
  880. 					choices = { 
  881. 						[1] = { 
  882. 							label = "COL_TXT_ADV_04_SC_09_CH1", 
  883. 							target = 14, 
  884. 							type = TYPE_BUTTON,				 
  885. 						}, 
  886. 						[2] = { 
  887. 							label = "COL_TXT_ADV_04_SC_09_CH2", 
  888. 							target = 16,				 
  889. 							type = TYPE_BUTTON,				 
  890. 						}, 
  891. 						[3] = { 
  892. 							label = "COL_TXT_ADV_04_SC_09_CH3", 
  893. 							target = 15,				 
  894. 							type = TYPE_BUTTON,				 
  895. 						}, 
  896. 					}, 
  897. 					sfx = "Neutral", 
  898. 				}, 
  899. 				[10] = { 
  900. 					scenario = "COL_TXT_ADV_04_SC_10", 
  901. 					image = Image_sets.title, 
  902. 					choices = { 
  903. 						[1] = { 
  904. 							label = "COL_TXT_ADV_NEXT", 
  905. 							target = 11, 
  906. 							type = TYPE_BUTTON,				 
  907. 						}, 
  908. 					}, 
  909. 					sfx = "Neutral", 
  910. 				}, 
  911. 				[11] = { 
  912. 					scenario = "COL_TXT_ADV_04_SC_11", 
  913. 					image = Image_sets.title, 
  914. 					choices = { 
  915. 						[1] = { 
  916. 							label = "COL_TXT_ADV_04_SC_11_CH1", 
  917. 							target = 18, 
  918. 							type = TYPE_BUTTON,				 
  919. 						}, 
  920. 						[2] = { 
  921. 							label = "COL_TXT_ADV_04_SC_11_CH2", 
  922. 							target = 16,				 
  923. 							type = TYPE_BUTTON,				 
  924. 						}, 
  925. 						[3] = { 
  926. 							label = "COL_TXT_ADV_04_SC_11_CH3", 
  927. 							target = 19,				 
  928. 							type = TYPE_BUTTON,				 
  929. 						}, 
  930. 					}, 
  931. 					sfx = "Neutral", 
  932. 				}, 
  933. 				[12] = { 
  934. 					scenario = "COL_TXT_ADV_04_SC_12", 
  935. 					image = Image_sets.title, 
  936. 					choices = { 
  937. 						[1] = { 
  938. 							label = "COL_TXT_ADV_NEXT", 
  939. 							target = 13, 
  940. 							type = TYPE_BUTTON,				 
  941. 						}, 
  942. 					}, 
  943. 					sfx = "Neutral", 
  944. 				}, 
  945. 				[13] = { 
  946. 					scenario = "COL_TXT_ADV_04_SC_13", 
  947. 					image = Image_sets.title, 
  948. 					choices = { 
  949. 						[1] = { 
  950. 							label = "COL_TXT_ADV_04_SC_13_CH1", 
  951. 							target = 20, 
  952. 							type = TYPE_BUTTON,				 
  953. 						}, 
  954. 						[2] = { 
  955. 							label = "COL_TXT_ADV_04_SC_13_CH2", 
  956. 							target = 16,				 
  957. 							type = TYPE_BUTTON,				 
  958. 						}, 
  959. 						[3] = { 
  960. 							label = "COL_TXT_ADV_04_SC_13_CH3", 
  961. 							target = 21,				 
  962. 							type = TYPE_BUTTON,				 
  963. 						}, 
  964. 					}, 
  965. 					sfx = "Neutral", 
  966. 				}, 
  967. 				[14] = { 
  968. 					scenario = "COL_TXT_ADV_04_SC_14", 
  969. 					image = Image_sets.title, 
  970. 					choices = { 
  971. 						[1] = { 
  972. 							label = "COL_TXT_ADV_RETRY", 
  973. 							target = 9, 
  974. 							type = TYPE_BUTTON,				 
  975. 						}, 
  976. 					}, 
  977. 					sfx = "Neutral", 
  978. 				}, 
  979. 				[15] = { 
  980. 					scenario = "COL_TXT_ADV_04_SC_15", 
  981. 					image = Image_sets.title, 
  982. 					choices = { 
  983. 						[1] = { 
  984. 							label = "COL_TXT_ADV_RETRY", 
  985. 							target = 9, 
  986. 							type = TYPE_BUTTON,				 
  987. 						}, 
  988. 					}, 
  989. 					sfx = "Neutral", 
  990. 				}, 
  991. 				[16] = { 
  992. 					scenario = "COL_TXT_ADV_04_SC_16", 
  993. 					image = Image_sets.title, 
  994. 					choices = { 
  995. 						[1] = { 
  996. 							label = "COL_TXT_ADV_NEXT", 
  997. 							target = 17, 
  998. 							type = TYPE_BUTTON,				 
  999. 						}, 
  1000. 					}, 
  1001. 					sfx = "Neutral", 
  1002. 				}, 
  1003. 				[17] = { 
  1004. 					scenario = "COL_TXT_ADV_04_SC_17", 
  1005. 					image = Image_sets.title, 
  1006. 					choices = { 
  1007. 						[1] = { 
  1008. 							label = "COL_TXT_ADV_END", 
  1009. 							target = -1, 
  1010. 							type = TYPE_BUTTON,				 
  1011. 						}, 
  1012. 					}, 
  1013. 					sfx = "Neutral", 
  1014. 				}, 
  1015. 				[18] = { 
  1016. 					scenario = "COL_TXT_ADV_04_SC_18", 
  1017. 					image = Image_sets.title, 
  1018. 					choices = { 
  1019. 						[1] = { 
  1020. 							label = "COL_TXT_ADV_RETRY", 
  1021. 							target = 11, 
  1022. 							type = TYPE_BUTTON,				 
  1023. 						}, 
  1024. 					}, 
  1025. 					sfx = "Neutral", 
  1026. 				}, 
  1027. 				[19] = { 
  1028. 					scenario = "COL_TXT_ADV_04_SC_19", 
  1029. 					image = Image_sets.title, 
  1030. 					choices = { 
  1031. 						[1] = { 
  1032. 							label = "COL_TXT_ADV_RETRY", 
  1033. 							target = 11, 
  1034. 							type = TYPE_BUTTON,				 
  1035. 						}, 
  1036. 					}, 
  1037. 					sfx = "Neutral", 
  1038. 				}, 
  1039. 				[20] = { 
  1040. 					scenario = "COL_TXT_ADV_04_SC_20", 
  1041. 					image = Image_sets.title, 
  1042. 					choices = { 
  1043. 						[1] = { 
  1044. 							label = "COL_TXT_ADV_RETRY", 
  1045. 							target = 13, 
  1046. 							type = TYPE_BUTTON,				 
  1047. 						}, 
  1048. 					}, 
  1049. 					sfx = "Neutral", 
  1050. 				}, 
  1051. 				[21] = { 
  1052. 					scenario = "COL_TXT_ADV_04_SC_21", 
  1053. 					image = Image_sets.title, 
  1054. 					choices = { 
  1055. 						[1] = { 
  1056. 							label = "COL_TXT_ADV_RETRY", 
  1057. 							target = 13, 
  1058. 							type = TYPE_BUTTON,				 
  1059. 						}, 
  1060. 					}, 
  1061. 					sfx = "Neutral", 
  1062. 				}, 
  1063. 			} 
  1064. 		elseif Cur_text_adv == 5 then 
  1065. 			Data = { 
  1066. 				[1] = { 
  1067. 					scenario = "COL_TXT_ADV_05_SC_01", 
  1068. 					image = Image_sets.title, 
  1069. 					choices = { 
  1070. 						[1] = { 
  1071. 							label = "COL_TXT_ADV_NEXT", 
  1072. 							target = 2, 
  1073. 							type = TYPE_BUTTON,				 
  1074. 						}, 
  1075. 					}, 
  1076. 					sfx = "Scenario", 
  1077. 				}, 
  1078. 				[2] = { 
  1079. 					scenario = "COL_TXT_ADV_05_SC_02", 
  1080. 					image = Image_sets.title, 
  1081. 					choices = { 
  1082. 						[1] = { 
  1083. 							label = "COL_TXT_ADV_05_SC_02_CH1", 
  1084. 							target = 3, 
  1085. 							type = TYPE_BUTTON,				 
  1086. 						}, 
  1087. 						[2] = { 
  1088. 							label = "COL_TXT_ADV_05_SC_02_CH2", 
  1089. 							target = 4,				 
  1090. 							type = TYPE_BUTTON,				 
  1091. 						}, 
  1092. 						[3] = { 
  1093. 							label = "COL_TXT_ADV_05_SC_02_CH3", 
  1094. 							target = 5,				 
  1095. 							type = TYPE_BUTTON,				 
  1096. 						}, 
  1097. 					}, 
  1098. 					sfx = "Neutral", 
  1099. 				}, 
  1100. 				[3] = { 
  1101. 					scenario = "COL_TXT_ADV_05_SC_03", 
  1102. 					image = Image_sets.title, 
  1103. 					choices = { 
  1104. 						[1] = { 
  1105. 							label = "COL_TXT_ADV_RETRY", 
  1106. 							target = 2, 
  1107. 							type = TYPE_BUTTON,				 
  1108. 						}, 
  1109. 					}, 
  1110. 					sfx = "Neutral", 
  1111. 				}, 
  1112. 				[4] = { 
  1113. 					scenario = "COL_TXT_ADV_05_SC_04", 
  1114. 					image = Image_sets.title, 
  1115. 					choices = { 
  1116. 						[1] = { 
  1117. 							label = "COL_TXT_ADV_RETRY", 
  1118. 							target = 2, 
  1119. 							type = TYPE_BUTTON,				 
  1120. 						}, 
  1121. 					}, 
  1122. 					sfx = "Neutral", 
  1123. 				}, 
  1124. 				[5] = { 
  1125. 					scenario = "COL_TXT_ADV_05_SC_05", 
  1126. 					image = Image_sets.title, 
  1127. 					choices = { 
  1128. 						[1] = { 
  1129. 							label = "COL_TXT_ADV_NEXT", 
  1130. 							target = 6, 
  1131. 							type = TYPE_BUTTON,				 
  1132. 						}, 
  1133. 					}, 
  1134. 					sfx = "Neutral", 
  1135. 				}, 
  1136. 				[6] = { 
  1137. 					scenario = "COL_TXT_ADV_05_SC_06", 
  1138. 					image = Image_sets.title, 
  1139. 					choices = { 
  1140. 						[1] = { 
  1141. 							label = "COL_TXT_ADV_NEXT", 
  1142. 							target = 7, 
  1143. 							type = TYPE_BUTTON,				 
  1144. 						}, 
  1145. 					}, 
  1146. 					sfx = "Neutral", 
  1147. 				}, 
  1148. 				[7] = { 
  1149. 					scenario = "COL_TXT_ADV_05_SC_07", 
  1150. 					image = Image_sets.title, 
  1151. 					choices = { 
  1152. 						[1] = { 
  1153. 							label = "COL_TXT_ADV_05_SC_07_CH1", 
  1154. 							target = 8, 
  1155. 							type = TYPE_BUTTON,				 
  1156. 						}, 
  1157. 						[2] = { 
  1158. 							label = "COL_TXT_ADV_05_SC_07_CH2", 
  1159. 							target = 9,				 
  1160. 							type = TYPE_BUTTON,				 
  1161. 						}, 
  1162. 						[3] = { 
  1163. 							label = "COL_TXT_ADV_05_SC_07_CH3", 
  1164. 							target = 11,				 
  1165. 							type = TYPE_BUTTON,				 
  1166. 						}, 
  1167. 					}, 
  1168. 					sfx = "Neutral", 
  1169. 				}, 
  1170. 				[8] = { 
  1171. 					scenario = "COL_TXT_ADV_05_SC_08", 
  1172. 					image = Image_sets.title, 
  1173. 					choices = { 
  1174. 						[1] = { 
  1175. 							label = "COL_TXT_ADV_RETRY", 
  1176. 							target = 7, 
  1177. 							type = TYPE_BUTTON,				 
  1178. 						}, 
  1179. 					}, 
  1180. 					sfx = "Neutral", 
  1181. 				}, 
  1182. 				[9] = { 
  1183. 					scenario = "COL_TXT_ADV_05_SC_09", 
  1184. 					image = Image_sets.title, 
  1185. 					choices = { 
  1186. 						[1] = { 
  1187. 							label = "COL_TXT_ADV_NEXT", 
  1188. 							target = 10, 
  1189. 							type = TYPE_BUTTON,				 
  1190. 						}, 
  1191. 					}, 
  1192. 					sfx = "Neutral", 
  1193. 				}, 
  1194. 				[10] = { 
  1195. 					scenario = "COL_TXT_ADV_05_SC_10", 
  1196. 					image = Image_sets.title, 
  1197. 					choices = { 
  1198. 						[1] = { 
  1199. 							label = "COL_TXT_ADV_05_SC_10_CH1", 
  1200. 							target = 12, 
  1201. 							type = TYPE_BUTTON,				 
  1202. 						}, 
  1203. 						[2] = { 
  1204. 							label = "COL_TXT_ADV_05_SC_10_CH2", 
  1205. 							target = 14,				 
  1206. 							type = TYPE_BUTTON,				 
  1207. 						}, 
  1208. 						[3] = { 
  1209. 							label = "COL_TXT_ADV_05_SC_10_CH3", 
  1210. 							target = 15,				 
  1211. 							type = TYPE_BUTTON,				 
  1212. 						}, 
  1213. 					}, 
  1214. 					sfx = "Neutral", 
  1215. 				}, 
  1216. 				[11] = { 
  1217. 					scenario = "COL_TXT_ADV_05_SC_11", 
  1218. 					image = Image_sets.title, 
  1219. 					choices = { 
  1220. 						[1] = { 
  1221. 							label = "COL_TXT_ADV_RETRY", 
  1222. 							target = 7, 
  1223. 							type = TYPE_BUTTON,				 
  1224. 						}, 
  1225. 					}, 
  1226. 					sfx = "Neutral", 
  1227. 				}, 
  1228. 				[12] = { 
  1229. 					scenario = "COL_TXT_ADV_05_SC_12", 
  1230. 					image = Image_sets.title, 
  1231. 					choices = { 
  1232. 						[1] = { 
  1233. 							label = "COL_TXT_ADV_NEXT", 
  1234. 							target = 13, 
  1235. 							type = TYPE_BUTTON,				 
  1236. 						}, 
  1237. 					}, 
  1238. 					sfx = "Neutral", 
  1239. 				}, 
  1240. 				[13] = { 
  1241. 					scenario = "COL_TXT_ADV_05_SC_13", 
  1242. 					image = Image_sets.title, 
  1243. 					choices = { 
  1244. 						[1] = { 
  1245. 							label = "COL_TXT_ADV_05_SC_13_CH1", 
  1246. 							target = 16, 
  1247. 							type = TYPE_BUTTON,				 
  1248. 						}, 
  1249. 						[2] = { 
  1250. 							label = "COL_TXT_ADV_05_SC_13_CH2", 
  1251. 							target = 17,				 
  1252. 							type = TYPE_BUTTON,				 
  1253. 						}, 
  1254. 						[3] = { 
  1255. 							label = "COL_TXT_ADV_05_SC_13_CH3", 
  1256. 							target = 18,				 
  1257. 							type = TYPE_BUTTON,				 
  1258. 						}, 
  1259. 					}, 
  1260. 					sfx = "Neutral", 
  1261. 				}, 
  1262. 				[14] = { 
  1263. 					scenario = "COL_TXT_ADV_05_SC_14", 
  1264. 					image = Image_sets.title, 
  1265. 					choices = { 
  1266. 						[1] = { 
  1267. 							label = "COL_TXT_ADV_RETRY", 
  1268. 							target = 10, 
  1269. 							type = TYPE_BUTTON,				 
  1270. 						}, 
  1271. 					}, 
  1272. 					sfx = "Neutral", 
  1273. 				}, 
  1274. 				[15] = { 
  1275. 					scenario = "COL_TXT_ADV_05_SC_15", 
  1276. 					image = Image_sets.title, 
  1277. 					choices = { 
  1278. 						[1] = { 
  1279. 							label = "COL_TXT_ADV_RETRY", 
  1280. 							target = 10, 
  1281. 							type = TYPE_BUTTON,				 
  1282. 						}, 
  1283. 					}, 
  1284. 					sfx = "Neutral", 
  1285. 				}, 
  1286. 				[16] = { 
  1287. 					scenario = "COL_TXT_ADV_05_SC_16", 
  1288. 					image = Image_sets.title, 
  1289. 					choices = { 
  1290. 						[1] = { 
  1291. 							label = "COL_TXT_ADV_RETRY", 
  1292. 							target = 13, 
  1293. 							type = TYPE_BUTTON,				 
  1294. 						}, 
  1295. 					}, 
  1296. 					sfx = "Neutral", 
  1297. 				}, 
  1298. 				[17] = { 
  1299. 					scenario = "COL_TXT_ADV_05_SC_17", 
  1300. 					image = Image_sets.title, 
  1301. 					choices = { 
  1302. 						[1] = { 
  1303. 							label = "COL_TXT_ADV_RETRY", 
  1304. 							target = 13, 
  1305. 							type = TYPE_BUTTON,				 
  1306. 						}, 
  1307. 					}, 
  1308. 					sfx = "Neutral", 
  1309. 				}, 
  1310. 				[18] = { 
  1311. 					scenario = "COL_TXT_ADV_05_SC_18", 
  1312. 					image = Image_sets.title, 
  1313. 					choices = { 
  1314. 						[1] = { 
  1315. 							label = "COL_TXT_ADV_END", 
  1316. 							target = -1, 
  1317. 							type = TYPE_BUTTON,				 
  1318. 						}, 
  1319. 					}, 
  1320. 					sfx = "Neutral", 
  1321. 				}, 
  1322. 			} 
  1323. 		elseif Cur_text_adv == 6 then 
  1324. 			Data = { 
  1325. 				[1] = { 
  1326. 					scenario = "COL_TXT_ADV_06_SC_01", 
  1327. 					image = Image_sets.title, 
  1328. 					choices = { 
  1329. 						[1] = { 
  1330. 							label = "COL_TXT_ADV_NEXT", 
  1331. 							target = 2, 
  1332. 							type = TYPE_BUTTON,				 
  1333. 						}, 
  1334. 					}, 
  1335. 					sfx = "Scenario", 
  1336. 				}, 
  1337. 				[2] = { 
  1338. 					scenario = "COL_TXT_ADV_06_SC_02", 
  1339. 					image = Image_sets.title, 
  1340. 					choices = { 
  1341. 						[1] = { 
  1342. 							label = "COL_TXT_ADV_06_SC_02_CH1", 
  1343. 							target = 3, 
  1344. 							type = TYPE_BUTTON,				 
  1345. 						}, 
  1346. 						[2] = { 
  1347. 							label = "COL_TXT_ADV_06_SC_02_CH2", 
  1348. 							target = 4,				 
  1349. 							type = TYPE_BUTTON,				 
  1350. 						}, 
  1351. 						[3] = { 
  1352. 							label = "COL_TXT_ADV_06_SC_02_CH3", 
  1353. 							target = 5,				 
  1354. 							type = TYPE_BUTTON,				 
  1355. 						}, 
  1356. 					}, 
  1357. 					sfx = "Neutral", 
  1358. 				}, 
  1359. 				[3] = { 
  1360. 					scenario = "COL_TXT_ADV_06_SC_03", 
  1361. 					image = Image_sets.title, 
  1362. 					choices = { 
  1363. 						[1] = { 
  1364. 							label = "COL_TXT_ADV_RETRY", 
  1365. 							target = 2, 
  1366. 							type = TYPE_BUTTON,				 
  1367. 						}, 
  1368. 					}, 
  1369. 					sfx = "Neutral", 
  1370. 				}, 
  1371. 				[4] = { 
  1372. 					scenario = "COL_TXT_ADV_06_SC_04", 
  1373. 					image = Image_sets.title, 
  1374. 					choices = { 
  1375. 						[1] = { 
  1376. 							label = "COL_TXT_ADV_RETRY", 
  1377. 							target = 2, 
  1378. 							type = TYPE_BUTTON,				 
  1379. 						}, 
  1380. 					}, 
  1381. 					sfx = "Neutral", 
  1382. 				}, 
  1383. 				[5] = { 
  1384. 					scenario = "COL_TXT_ADV_06_SC_05", 
  1385. 					image = Image_sets.title, 
  1386. 					choices = { 
  1387. 						[1] = { 
  1388. 							label = "COL_TXT_ADV_NEXT", 
  1389. 							target = 6, 
  1390. 							type = TYPE_BUTTON,				 
  1391. 						}, 
  1392. 					}, 
  1393. 					sfx = "Neutral", 
  1394. 				}, 
  1395. 				[6] = { 
  1396. 					scenario = "COL_TXT_ADV_06_SC_06", 
  1397. 					image = Image_sets.title, 
  1398. 					choices = { 
  1399. 						[1] = { 
  1400. 							label = "COL_TXT_ADV_06_SC_06_CH1", 
  1401. 							target = 7, 
  1402. 							type = TYPE_BUTTON,				 
  1403. 						}, 
  1404. 						[2] = { 
  1405. 							label = "COL_TXT_ADV_06_SC_06_CH2", 
  1406. 							target = 8,				 
  1407. 							type = TYPE_BUTTON,				 
  1408. 						}, 
  1409. 						[3] = { 
  1410. 							label = "COL_TXT_ADV_06_SC_06_CH3", 
  1411. 							target = 9,				 
  1412. 							type = TYPE_BUTTON,				 
  1413. 						}, 
  1414. 					}, 
  1415. 					sfx = "Neutral", 
  1416. 				}, 
  1417. 				[7] = { 
  1418. 					scenario = "COL_TXT_ADV_06_SC_07", 
  1419. 					image = Image_sets.title, 
  1420. 					choices = { 
  1421. 						[1] = { 
  1422. 							label = "COL_TXT_ADV_RETRY", 
  1423. 							target = 6, 
  1424. 							type = TYPE_BUTTON,				 
  1425. 						}, 
  1426. 					}, 
  1427. 					sfx = "Neutral", 
  1428. 				}, 
  1429. 				[8] = { 
  1430. 					scenario = "COL_TXT_ADV_06_SC_08", 
  1431. 					image = Image_sets.title, 
  1432. 					choices = { 
  1433. 						[1] = { 
  1434. 							label = "COL_TXT_ADV_RETRY", 
  1435. 							target = 6, 
  1436. 							type = TYPE_BUTTON,				 
  1437. 						}, 
  1438. 					}, 
  1439. 					sfx = "Neutral", 
  1440. 				}, 
  1441. 				[9] = { 
  1442. 					scenario = "COL_TXT_ADV_06_SC_09", 
  1443. 					image = Image_sets.title, 
  1444. 					choices = { 
  1445. 						[1] = { 
  1446. 							label = "COL_TXT_ADV_NEXT", 
  1447. 							target = 10, 
  1448. 							type = TYPE_BUTTON,				 
  1449. 						}, 
  1450. 					}, 
  1451. 					sfx = "Neutral", 
  1452. 				}, 
  1453. 				[10] = { 
  1454. 					scenario = "COL_TXT_ADV_06_SC_10", 
  1455. 					image = Image_sets.title, 
  1456. 					choices = { 
  1457. 						[1] = { 
  1458. 							label = "COL_TXT_ADV_06_SC_10_CH1", 
  1459. 							target = 11, 
  1460. 							type = TYPE_BUTTON,				 
  1461. 						}, 
  1462. 						[2] = { 
  1463. 							label = "COL_TXT_ADV_06_SC_10_CH2", 
  1464. 							target = 12,				 
  1465. 							type = TYPE_BUTTON,				 
  1466. 						}, 
  1467. 						[3] = { 
  1468. 							label = "COL_TXT_ADV_06_SC_10_CH3", 
  1469. 							target = 13,				 
  1470. 							type = TYPE_BUTTON,				 
  1471. 						}, 
  1472. 					}, 
  1473. 					sfx = "Neutral", 
  1474. 				}, 
  1475. 				[11] = { 
  1476. 					scenario = "COL_TXT_ADV_06_SC_11", 
  1477. 					image = Image_sets.title, 
  1478. 					choices = { 
  1479. 						[1] = { 
  1480. 							label = "COL_TXT_ADV_RETRY", 
  1481. 							target = 10, 
  1482. 							type = TYPE_BUTTON,				 
  1483. 						}, 
  1484. 					}, 
  1485. 					sfx = "Neutral", 
  1486. 				}, 
  1487. 				[12] = { 
  1488. 					scenario = "COL_TXT_ADV_06_SC_12", 
  1489. 					image = Image_sets.title, 
  1490. 					choices = { 
  1491. 						[1] = { 
  1492. 							label = "COL_TXT_ADV_RETRY", 
  1493. 							target = 10, 
  1494. 							type = TYPE_BUTTON,				 
  1495. 						}, 
  1496. 					}, 
  1497. 					sfx = "Neutral", 
  1498. 				}, 
  1499. 				[13] = { 
  1500. 					scenario = "COL_TXT_ADV_06_SC_13", 
  1501. 					image = Image_sets.title, 
  1502. 					choices = { 
  1503. 						[1] = { 
  1504. 							label = "COL_TXT_ADV_NEXT", 
  1505. 							target = 14, 
  1506. 							type = TYPE_BUTTON,				 
  1507. 						}, 
  1508. 					}, 
  1509. 					sfx = "Neutral", 
  1510. 				}, 
  1511. 				[14] = { 
  1512. 					scenario = "COL_TXT_ADV_06_SC_14", 
  1513. 					image = Image_sets.title, 
  1514. 					choices = { 
  1515. 						[1] = { 
  1516. 							label = "COL_TXT_ADV_NEXT", 
  1517. 							target = 15, 
  1518. 							type = TYPE_BUTTON,				 
  1519. 						}, 
  1520. 					}, 
  1521. 					sfx = "Neutral", 
  1522. 				}, 
  1523. 				[15] = { 
  1524. 					scenario = "COL_TXT_ADV_06_SC_15", 
  1525. 					image = Image_sets.title, 
  1526. 					choices = { 
  1527. 						[1] = { 
  1528. 							label = "COL_TXT_ADV_06_SC_15_CH1", 
  1529. 							target = 16, 
  1530. 							type = TYPE_BUTTON,				 
  1531. 						}, 
  1532. 						[2] = { 
  1533. 							label = "COL_TXT_ADV_06_SC_15_CH2", 
  1534. 							target = 17,				 
  1535. 							type = TYPE_BUTTON,				 
  1536. 						}, 
  1537. 						[3] = { 
  1538. 							label = "COL_TXT_ADV_06_SC_15_CH3", 
  1539. 							target = 19,				 
  1540. 							type = TYPE_BUTTON,				 
  1541. 						}, 
  1542. 					}, 
  1543. 					sfx = "Neutral", 
  1544. 				}, 
  1545. 				[16] = { 
  1546. 					scenario = "COL_TXT_ADV_06_SC_16", 
  1547. 					image = Image_sets.title, 
  1548. 					choices = { 
  1549. 						[1] = { 
  1550. 							label = "COL_TXT_ADV_RETRY", 
  1551. 							target = 15, 
  1552. 							type = TYPE_BUTTON,				 
  1553. 						}, 
  1554. 					}, 
  1555. 					sfx = "Neutral", 
  1556. 				}, 
  1557. 				[17] = { 
  1558. 					scenario = "COL_TXT_ADV_06_SC_17", 
  1559. 					image = Image_sets.title, 
  1560. 					choices = { 
  1561. 						[1] = { 
  1562. 							label = "COL_TXT_ADV_NEXT", 
  1563. 							target = 18, 
  1564. 							type = TYPE_BUTTON,				 
  1565. 						}, 
  1566. 					}, 
  1567. 					sfx = "Neutral", 
  1568. 				}, 
  1569. 				[18] = { 
  1570. 					scenario = "COL_TXT_ADV_06_SC_18", 
  1571. 					image = Image_sets.title, 
  1572. 					choices = { 
  1573. 						[1] = { 
  1574. 							label = "COL_TXT_ADV_END", 
  1575. 							target = -1, 
  1576. 							type = TYPE_BUTTON,				 
  1577. 						}, 
  1578. 					}, 
  1579. 					sfx = "Neutral", 
  1580. 				}, 
  1581. 				[19] = { 
  1582. 					scenario = "COL_TXT_ADV_06_SC_19", 
  1583. 					image = Image_sets.title, 
  1584. 					choices = { 
  1585. 						[1] = { 
  1586. 							label = "COL_TXT_ADV_RETRY", 
  1587. 							target = 15, 
  1588. 							type = TYPE_BUTTON,				 
  1589. 						}, 
  1590. 					}, 
  1591. 					sfx = "Neutral", 
  1592. 				}, 
  1593. 			} 
  1594. 		elseif Cur_text_adv == 7 then 
  1595. 		Data = { 
  1596. 				[1] = { 
  1597. 					scenario = "COL_TXT_ADV_07_SC_01", 
  1598. 					image = Image_sets.title, 
  1599. 					choices = { 
  1600. 						[1] = { 
  1601. 							label = "COL_TXT_ADV_NEXT", 
  1602. 							target = 2, 
  1603. 							type = TYPE_BUTTON,				 
  1604. 						}, 
  1605. 					}, 
  1606. 					sfx = "Scenario", 
  1607. 				}, 
  1608. 				[2] = { 
  1609. 					scenario = "COL_TXT_ADV_07_SC_02", 
  1610. 					image = Image_sets.title, 
  1611. 					choices = { 
  1612. 						[1] = { 
  1613. 							label = "COL_TXT_ADV_07_SC_02_CH1", 
  1614. 							target = 3, 
  1615. 							type = TYPE_BUTTON,				 
  1616. 						}, 
  1617. 						[2] = { 
  1618. 							label = "COL_TXT_ADV_07_SC_02_CH2", 
  1619. 							target = 5,				 
  1620. 							type = TYPE_BUTTON,				 
  1621. 						}, 
  1622. 						[3] = { 
  1623. 							label = "COL_TXT_ADV_07_SC_02_CH3", 
  1624. 							target = 6,				 
  1625. 							type = TYPE_BUTTON,				 
  1626. 						}, 
  1627. 					}, 
  1628. 					sfx = "Neutral", 
  1629. 				}, 
  1630. 				[3] = { 
  1631. 					scenario = "COL_TXT_ADV_07_SC_03", 
  1632. 					image = Image_sets.title, 
  1633. 					choices = { 
  1634. 						[1] = { 
  1635. 							label = "COL_TXT_ADV_NEXT", 
  1636. 							target = 4, 
  1637. 							type = TYPE_BUTTON,				 
  1638. 						}, 
  1639. 					}, 
  1640. 					sfx = "Neutral", 
  1641. 				}, 
  1642. 				[4] = { 
  1643. 					scenario = "COL_TXT_ADV_07_SC_04", 
  1644. 					image = Image_sets.title, 
  1645. 					choices = { 
  1646. 						[1] = { 
  1647. 							label = "COL_TXT_ADV_07_SC_04_CH1", 
  1648. 							target = 7, 
  1649. 							type = TYPE_BUTTON,				 
  1650. 						}, 
  1651. 						[2] = { 
  1652. 							label = "COL_TXT_ADV_07_SC_04_CH2", 
  1653. 							target = 8,				 
  1654. 							type = TYPE_BUTTON,				 
  1655. 						}, 
  1656. 						[3] = { 
  1657. 							label = "COL_TXT_ADV_07_SC_04_CH3", 
  1658. 							target = 9,				 
  1659. 							type = TYPE_BUTTON,				 
  1660. 						}, 
  1661. 					}, 
  1662. 					sfx = "Neutral", 
  1663. 				}, 
  1664. 				[5] = { 
  1665. 					scenario = "COL_TXT_ADV_07_SC_05", 
  1666. 					image = Image_sets.title, 
  1667. 					choices = { 
  1668. 						[1] = { 
  1669. 							label = "COL_TXT_ADV_RETRY", 
  1670. 							target = 2, 
  1671. 							type = TYPE_BUTTON,				 
  1672. 						}, 
  1673. 					}, 
  1674. 					sfx = "Neutral", 
  1675. 				}, 
  1676. 				[6] = { 
  1677. 					scenario = "COL_TXT_ADV_07_SC_06", 
  1678. 					image = Image_sets.title, 
  1679. 					choices = { 
  1680. 						[1] = { 
  1681. 							label = "COL_TXT_ADV_RETRY", 
  1682. 							target = 2, 
  1683. 							type = TYPE_BUTTON,				 
  1684. 						}, 
  1685. 					}, 
  1686. 					sfx = "Neutral", 
  1687. 				}, 
  1688. 				[7] = { 
  1689. 					scenario = "COL_TXT_ADV_07_SC_07", 
  1690. 					image = Image_sets.title, 
  1691. 					choices = { 
  1692. 						[1] = { 
  1693. 							label = "COL_TXT_ADV_RETRY", 
  1694. 							target = 4, 
  1695. 							type = TYPE_BUTTON,				 
  1696. 						}, 
  1697. 					}, 
  1698. 					sfx = "Neutral", 
  1699. 				}, 
  1700. 				[8] = { 
  1701. 					scenario = "COL_TXT_ADV_07_SC_08", 
  1702. 					image = Image_sets.title, 
  1703. 					choices = { 
  1704. 						[1] = { 
  1705. 							label = "COL_TXT_ADV_RETRY", 
  1706. 							target = 4, 
  1707. 							type = TYPE_BUTTON,				 
  1708. 						}, 
  1709. 					}, 
  1710. 					sfx = "Neutral", 
  1711. 				}, 
  1712. 				[9] = { 
  1713. 					scenario = "COL_TXT_ADV_07_SC_09", 
  1714. 					image = Image_sets.title, 
  1715. 					choices = { 
  1716. 						[1] = { 
  1717. 							label = "COL_TXT_ADV_NEXT", 
  1718. 							target = 10, 
  1719. 							type = TYPE_BUTTON,				 
  1720. 						}, 
  1721. 					}, 
  1722. 					sfx = "Neutral", 
  1723. 				}, 
  1724. 				[10] = { 
  1725. 					scenario = "COL_TXT_ADV_07_SC_10", 
  1726. 					image = Image_sets.title, 
  1727. 					choices = { 
  1728. 						[1] = { 
  1729. 							label = "COL_TXT_ADV_07_SC_10_CH1", 
  1730. 							target = 11, 
  1731. 							type = TYPE_BUTTON,				 
  1732. 						}, 
  1733. 						[2] = { 
  1734. 							label = "COL_TXT_ADV_07_SC_10_CH2", 
  1735. 							target = 14,				 
  1736. 							type = TYPE_BUTTON,				 
  1737. 						}, 
  1738. 						[3] = { 
  1739. 							label = "COL_TXT_ADV_07_SC_10_CH3", 
  1740. 							target = 15,				 
  1741. 							type = TYPE_BUTTON,				 
  1742. 						}, 
  1743. 					}, 
  1744. 					sfx = "Neutral", 
  1745. 				}, 
  1746. 				[11] = { 
  1747. 					scenario = "COL_TXT_ADV_07_SC_11", 
  1748. 					image = Image_sets.title, 
  1749. 					choices = { 
  1750. 						[1] = { 
  1751. 							label = "COL_TXT_ADV_NEXT", 
  1752. 							target = 12, 
  1753. 							type = TYPE_BUTTON,				 
  1754. 						}, 
  1755. 					}, 
  1756. 					sfx = "Neutral", 
  1757. 				}, 
  1758. 				[12] = { 
  1759. 					scenario = "COL_TXT_ADV_07_SC_12", 
  1760. 					image = Image_sets.title, 
  1761. 					choices = { 
  1762. 						[1] = { 
  1763. 							label = "COL_TXT_ADV_NEXT", 
  1764. 							target = 13, 
  1765. 							type = TYPE_BUTTON,				 
  1766. 						}, 
  1767. 					}, 
  1768. 					sfx = "Neutral", 
  1769. 				}, 
  1770. 				[13] = { 
  1771. 					scenario = "COL_TXT_ADV_07_SC_13", 
  1772. 					image = Image_sets.title, 
  1773. 					choices = { 
  1774. 						[1] = { 
  1775. 							label = "COL_TXT_ADV_07_SC_13_CH1", 
  1776. 							target = 16, 
  1777. 							type = TYPE_BUTTON,				 
  1778. 						}, 
  1779. 						[2] = { 
  1780. 							label = "COL_TXT_ADV_07_SC_13_CH2", 
  1781. 							target = 18,				 
  1782. 							type = TYPE_BUTTON,				 
  1783. 						}, 
  1784. 						[3] = { 
  1785. 							label = "COL_TXT_ADV_07_SC_13_CH3", 
  1786. 							target = 19,				 
  1787. 							type = TYPE_BUTTON,				 
  1788. 						}, 
  1789. 					}, 
  1790. 					sfx = "Neutral", 
  1791. 				}, 
  1792. 				[14] = { 
  1793. 					scenario = "COL_TXT_ADV_07_SC_14", 
  1794. 					image = Image_sets.title, 
  1795. 					choices = { 
  1796. 						[1] = { 
  1797. 							label = "COL_TXT_ADV_RETRY", 
  1798. 							target = 10, 
  1799. 							type = TYPE_BUTTON, 
  1800. 						}, 
  1801. 					}, 
  1802. 					sfx = "Neutral", 
  1803. 				}, 
  1804. 				[15] = { 
  1805. 					scenario = "COL_TXT_ADV_07_SC_15", 
  1806. 					image = Image_sets.title, 
  1807. 					choices = { 
  1808. 						[1] = { 
  1809. 							label = "COL_TXT_ADV_RETRY", 
  1810. 							target = 10, 
  1811. 							type = TYPE_BUTTON,				 
  1812. 						}, 
  1813. 					}, 
  1814. 					sfx = "Neutral", 
  1815. 				}, 
  1816. 				[16] = { 
  1817. 					scenario = "COL_TXT_ADV_07_SC_16", 
  1818. 					image = Image_sets.title, 
  1819. 					choices = { 
  1820. 						[1] = { 
  1821. 							label = "COL_TXT_ADV_NEXT", 
  1822. 							target = 17, 
  1823. 							type = TYPE_BUTTON,				 
  1824. 						}, 
  1825. 					}, 
  1826. 					sfx = "Neutral", 
  1827. 				}, 
  1828. 				[17] = { 
  1829. 					scenario = "COL_TXT_ADV_07_SC_17", 
  1830. 					image = Image_sets.title, 
  1831. 					choices = { 
  1832. 						[1] = { 
  1833. 							label = "COL_TXT_ADV_END", 
  1834. 							target = -1, 
  1835. 							type = TYPE_BUTTON,				 
  1836. 						}, 
  1837. 					}, 
  1838. 					sfx = "Neutral", 
  1839. 				}, 
  1840. 				[18] = { 
  1841. 					scenario = "COL_TXT_ADV_07_SC_18", 
  1842. 					image = Image_sets.title, 
  1843. 					choices = { 
  1844. 						[1] = { 
  1845. 							label = "COL_TXT_ADV_RETRY", 
  1846. 							target = 13, 
  1847. 							type = TYPE_BUTTON,				 
  1848. 						}, 
  1849. 					}, 
  1850. 					sfx = "Neutral", 
  1851. 				}, 
  1852. 				[19] = { 
  1853. 					scenario = "COL_TXT_ADV_07_SC_19", 
  1854. 					image = Image_sets.title, 
  1855. 					choices = { 
  1856. 						[1] = { 
  1857. 							label = "COL_TXT_ADV_RETRY", 
  1858. 							target = 13, 
  1859. 							type = TYPE_BUTTON,				 
  1860. 						}, 
  1861. 					}, 
  1862. 					sfx = "Neutral", 
  1863. 				}, 
  1864. 			} 
  1865. 		elseif Cur_text_adv == 8 then 
  1866. 			Data = { 
  1867. 				[1] = { 
  1868. 					scenario = "COL_TXT_ADV_08_SC_01", 
  1869. 					image = Image_sets.title, 
  1870. 					choices = { 
  1871. 						[1] = { 
  1872. 							label = "COL_TXT_ADV_NEXT", 
  1873. 							target = 2, 
  1874. 							type = TYPE_BUTTON,				 
  1875. 						}, 
  1876. 					}, 
  1877. 					sfx = "Scenario", 
  1878. 				}, 
  1879. 				[2] = { 
  1880. 					scenario = "COL_TXT_ADV_08_SC_02", 
  1881. 					image = Image_sets.title, 
  1882. 					choices = { 
  1883. 						[1] = { 
  1884. 							label = "COL_TXT_ADV_08_SC_02_CH1", 
  1885. 							target = 3, 
  1886. 							type = TYPE_BUTTON,				 
  1887. 						}, 
  1888. 						[2] = { 
  1889. 							label = "COL_TXT_ADV_08_SC_02_CH2", 
  1890. 							target = 4,				 
  1891. 							type = TYPE_BUTTON,				 
  1892. 						}, 
  1893. 						[3] = { 
  1894. 							label = "COL_TXT_ADV_08_SC_02_CH3", 
  1895. 							target = 5,				 
  1896. 							type = TYPE_BUTTON,				 
  1897. 						}, 
  1898. 					}, 
  1899. 					sfx = "Neutral", 
  1900. 				}, 
  1901. 				[3] = { 
  1902. 					scenario = "COL_TXT_ADV_08_SC_03", 
  1903. 					image = Image_sets.title, 
  1904. 					choices = { 
  1905. 						[1] = { 
  1906. 							label = "COL_TXT_ADV_RETRY", 
  1907. 							target = 2, 
  1908. 							type = TYPE_BUTTON,				 
  1909. 						}, 
  1910. 					}, 
  1911. 					sfx = "Neutral", 
  1912. 				}, 
  1913. 				[4] = { 
  1914. 					scenario = "COL_TXT_ADV_08_SC_04", 
  1915. 					image = Image_sets.title, 
  1916. 					choices = { 
  1917. 						[1] = { 
  1918. 							label = "COL_TXT_ADV_RETRY", 
  1919. 							target = 2, 
  1920. 							type = TYPE_BUTTON,				 
  1921. 						}, 
  1922. 					}, 
  1923. 					sfx = "Neutral", 
  1924. 				}, 
  1925. 				[5] = { 
  1926. 					scenario = "COL_TXT_ADV_08_SC_05", 
  1927. 					image = Image_sets.title, 
  1928. 					choices = { 
  1929. 						[1] = { 
  1930. 							label = "COL_TXT_ADV_NEXT", 
  1931. 							target = 6, 
  1932. 							type = TYPE_BUTTON,				 
  1933. 						}, 
  1934. 					}, 
  1935. 					sfx = "Neutral", 
  1936. 				}, 
  1937. 				[6] = { 
  1938. 					scenario = "COL_TXT_ADV_08_SC_06", 
  1939. 					image = Image_sets.title, 
  1940. 					choices = { 
  1941. 						[1] = { 
  1942. 							label = "COL_TXT_ADV_08_SC_06_CH1", 
  1943. 							target = 7, 
  1944. 							type = TYPE_BUTTON,				 
  1945. 						}, 
  1946. 						[2] = { 
  1947. 							label = "COL_TXT_ADV_08_SC_06_CH2", 
  1948. 							target = 8,				 
  1949. 							type = TYPE_BUTTON,				 
  1950. 						}, 
  1951. 						[3] = { 
  1952. 							label = "COL_TXT_ADV_08_SC_06_CH3", 
  1953. 							target = 10,				 
  1954. 							type = TYPE_BUTTON,				 
  1955. 						}, 
  1956. 					}, 
  1957. 					sfx = "Neutral", 
  1958. 				}, 
  1959. 				[7] = { 
  1960. 					scenario = "COL_TXT_ADV_08_SC_07", 
  1961. 					image = Image_sets.title, 
  1962. 					choices = { 
  1963. 						[1] = { 
  1964. 							label = "COL_TXT_ADV_RETRY", 
  1965. 							target = 6, 
  1966. 							type = TYPE_BUTTON,				 
  1967. 						}, 
  1968. 					}, 
  1969. 					sfx = "Neutral", 
  1970. 				}, 
  1971. 				[8] = { 
  1972. 					scenario = "COL_TXT_ADV_08_SC_08", 
  1973. 					image = Image_sets.title, 
  1974. 					choices = { 
  1975. 						[1] = { 
  1976. 							label = "COL_TXT_ADV_NEXT", 
  1977. 							target = 9, 
  1978. 							type = TYPE_BUTTON,				 
  1979. 						}, 
  1980. 					}, 
  1981. 					sfx = "Neutral", 
  1982. 				}, 
  1983. 				[9] = { 
  1984. 					scenario = "COL_TXT_ADV_08_SC_09", 
  1985. 					image = Image_sets.title, 
  1986. 					choices = { 
  1987. 						[1] = { 
  1988. 							label = "COL_TXT_ADV_08_SC_09_CH1", 
  1989. 							target = 11, 
  1990. 							type = TYPE_BUTTON,				 
  1991. 						}, 
  1992. 						[2] = { 
  1993. 							label = "COL_TXT_ADV_08_SC_09_CH2", 
  1994. 							target = 12,				 
  1995. 							type = TYPE_BUTTON,				 
  1996. 						}, 
  1997. 						[3] = { 
  1998. 							label = "COL_TXT_ADV_08_SC_09_CH3", 
  1999. 							target = 13,				 
  2000. 							type = TYPE_BUTTON,				 
  2001. 						}, 
  2002. 					}, 
  2003. 					sfx = "Neutral", 
  2004. 				}, 
  2005. 				[10] = { 
  2006. 					scenario = "COL_TXT_ADV_08_SC_10", 
  2007. 					image = Image_sets.title, 
  2008. 					choices = { 
  2009. 						[1] = { 
  2010. 							label = "COL_TXT_ADV_RETRY", 
  2011. 							target = 6, 
  2012. 							type = TYPE_BUTTON,				 
  2013. 						}, 
  2014. 					}, 
  2015. 					sfx = "Neutral", 
  2016. 				}, 
  2017. 				[11] = { 
  2018. 					scenario = "COL_TXT_ADV_08_SC_11", 
  2019. 					image = Image_sets.title, 
  2020. 					choices = { 
  2021. 						[1] = { 
  2022. 							label = "COL_TXT_ADV_RETRY", 
  2023. 							target = 9, 
  2024. 							type = TYPE_BUTTON,				 
  2025. 						}, 
  2026. 					}, 
  2027. 					sfx = "Neutral", 
  2028. 				}, 
  2029. 				[12] = { 
  2030. 					scenario = "COL_TXT_ADV_08_SC_12", 
  2031. 					image = Image_sets.title, 
  2032. 					choices = { 
  2033. 						[1] = { 
  2034. 							label = "COL_TXT_ADV_RETRY", 
  2035. 							target = 9, 
  2036. 							type = TYPE_BUTTON,				 
  2037. 						}, 
  2038. 					}, 
  2039. 					sfx = "Neutral", 
  2040. 				}, 
  2041. 				[13] = { 
  2042. 					scenario = "COL_TXT_ADV_08_SC_13", 
  2043. 					image = Image_sets.title, 
  2044. 					choices = { 
  2045. 						[1] = { 
  2046. 							label = "COL_TXT_ADV_NEXT", 
  2047. 							target = 14, 
  2048. 							type = TYPE_BUTTON,				 
  2049. 						}, 
  2050. 					}, 
  2051. 					sfx = "Neutral", 
  2052. 				}, 
  2053. 				[14] = { 
  2054. 					scenario = "COL_TXT_ADV_08_SC_14", 
  2055. 					image = Image_sets.title, 
  2056. 					choices = { 
  2057. 						[1] = { 
  2058. 							label = "COL_TXT_ADV_NEXT", 
  2059. 							target = 15, 
  2060. 							type = TYPE_BUTTON,				 
  2061. 						}, 
  2062. 					}, 
  2063. 					sfx = "Neutral", 
  2064. 				}, 
  2065. 				[15] = { 
  2066. 					scenario = "COL_TXT_ADV_08_SC_15", 
  2067. 					image = Image_sets.title, 
  2068. 					choices = { 
  2069. 						[1] = { 
  2070. 							label = "COL_TXT_ADV_08_SC_15_CH1", 
  2071. 							target = 16, 
  2072. 							type = TYPE_BUTTON,				 
  2073. 						}, 
  2074. 						[2] = { 
  2075. 							label = "COL_TXT_ADV_08_SC_15_CH2", 
  2076. 							target = 16,				 
  2077. 							type = TYPE_BUTTON,				 
  2078. 						}, 
  2079. 						[3] = { 
  2080. 							label = "COL_TXT_ADV_08_SC_15_CH3", 
  2081. 							target = 16,				 
  2082. 							type = TYPE_BUTTON,				 
  2083. 						}, 
  2084. 					}, 
  2085. 					sfx = "Neutral", 
  2086. 				}, 
  2087. 				[16] = { 
  2088. 					scenario = "COL_TXT_ADV_08_SC_16", 
  2089. 					image = Image_sets.title, 
  2090. 					choices = { 
  2091. 						[1] = { 
  2092. 							label = "COL_TXT_ADV_NEXT", 
  2093. 							target = 17, 
  2094. 							type = TYPE_BUTTON,				 
  2095. 						}, 
  2096. 					}, 
  2097. 					sfx = "Neutral", 
  2098. 				}, 
  2099. 				[17] = { 
  2100. 					scenario = "COL_TXT_ADV_08_SC_17", 
  2101. 					image = Image_sets.title, 
  2102. 					choices = { 
  2103. 						[1] = { 
  2104. 							label = "COL_TXT_ADV_NEXT", 
  2105. 							target = 18, 
  2106. 							type = TYPE_BUTTON,				 
  2107. 						}, 
  2108. 					}, 
  2109. 					sfx = "Neutral", 
  2110. 				}, 
  2111. 				[18] = { 
  2112. 					scenario = "COL_TXT_ADV_08_SC_18", 
  2113. 					image = Image_sets.title, 
  2114. 					choices = { 
  2115. 						[1] = { 
  2116. 							label = "COL_TXT_ADV_NEXT", 
  2117. 							target = 19, 
  2118. 							type = TYPE_BUTTON,				 
  2119. 						}, 
  2120. 					}, 
  2121. 					sfx = "Neutral", 
  2122. 				}, 
  2123. 				[19] = { 
  2124. 					scenario = "COL_TXT_ADV_08_SC_19", 
  2125. 					image = Image_sets.title, 
  2126. 					choices = { 
  2127. 						[1] = { 
  2128. 							label = "COL_TXT_ADV_NEXT", 
  2129. 							target = 20, 
  2130. 							type = TYPE_BUTTON,				 
  2131. 						}, 
  2132. 					}, 
  2133. 					sfx = "Neutral", 
  2134. 				}, 
  2135. 				[20] = { 
  2136. 					scenario = "COL_TXT_ADV_08_SC_20", 
  2137. 					image = Image_sets.title, 
  2138. 					choices = { 
  2139. 						[1] = { 
  2140. 							label = "COL_TXT_ADV_NEXT", 
  2141. 							target = 21, 
  2142. 							type = TYPE_BUTTON,				 
  2143. 						}, 
  2144. 					}, 
  2145. 					sfx = "Neutral", 
  2146. 				}, 
  2147. 				[21] = { 
  2148. 					scenario = "COL_TXT_ADV_08_SC_21", 
  2149. 					image = Image_sets.title, 
  2150. 					choices = { 
  2151. 						[1] = { 
  2152. 							label = "COL_TXT_ADV_08_SC_21_CH1", 
  2153. 							target = -1, 
  2154. 							type = TYPE_BUTTON,				 
  2155. 						}, 
  2156. 					}, 
  2157. 					sfx = "Neutral", 
  2158. 				}, 
  2159. 			} 
  2160. 			 
  2161. 		------------------------------ 
  2162. 		--Xmas Text Adventures 
  2163. 		------------------------------ 
  2164. 		elseif Cur_text_adv == 11 then 
  2165. 			Data = { 
  2166. 				[1] = { 
  2167. 					scenario = "COL_TXT_ADV_11_SC_01", 
  2168. 					image = Image_sets.title, 
  2169. 					choices = { 
  2170. 						[1] = { 
  2171. 							label = "COL_TXT_ADV_NEXT", 
  2172. 							target = 2, 
  2173. 							type = TYPE_BUTTON, 
  2174. 						}, 
  2175. 					}, 
  2176. 					sfx = "Scenario", 
  2177. 				}, 
  2178. 				[2] = { 
  2179. 					scenario = "COL_TXT_ADV_11_SC_02", 
  2180. 					image = Image_sets.title, 
  2181. 					choices = { 
  2182. 						[1] = { 
  2183. 							label = "COL_TXT_ADV_11_SC_02_CH1", 
  2184. 							target = 3, 
  2185. 							type = TYPE_BUTTON, 
  2186. 						}, 
  2187. 						[2] = { 
  2188. 							label = "COL_TXT_ADV_11_SC_02_CH2", 
  2189. 							target = 4, 
  2190. 							type = TYPE_BUTTON, 
  2191. 						}, 
  2192. 						[3] = { 
  2193. 							label = "COL_TXT_ADV_11_SC_02_CH3", 
  2194. 							target = 5, 
  2195. 							type = TYPE_BUTTON, 
  2196. 						}, 
  2197. 					}, 
  2198. 					sfx = "Neutral", 
  2199. 				}, 
  2200. 				[3] = { 
  2201. 					scenario = "COL_TXT_ADV_11_SC_03", 
  2202. 					image = Image_sets.title, 
  2203. 					choices = { 
  2204. 						[1] = { 
  2205. 							label = "COL_TXT_ADV_RETRY", 
  2206. 							target = 2, 
  2207. 							type = TYPE_BUTTON, 
  2208. 						}, 
  2209. 					}, 
  2210. 					sfx = "Neutral", 
  2211. 				}, 
  2212. 				[4] = { 
  2213. 					scenario = "COL_TXT_ADV_11_SC_04", 
  2214. 					image = Image_sets.title, 
  2215. 					choices = { 
  2216. 						[1] = { 
  2217. 							label = "COL_TXT_ADV_RETRY", 
  2218. 							target = 2, 
  2219. 							type = TYPE_BUTTON, 
  2220. 						}, 
  2221. 					}, 
  2222. 					sfx = "Neutral", 
  2223. 				}, 
  2224. 				[5] = { 
  2225. 					scenario = "COL_TXT_ADV_11_SC_05", 
  2226. 					image = Image_sets.title, 
  2227. 					choices = { 
  2228. 						[1] = { 
  2229. 							label = "COL_TXT_ADV_NEXT", 
  2230. 							target = 6, 
  2231. 							type = TYPE_BUTTON, 
  2232. 						}, 
  2233. 					}, 
  2234. 					sfx = "Neutral", 
  2235. 				}, 
  2236. 				[6] = { 
  2237. 					scenario = "COL_TXT_ADV_11_SC_06", 
  2238. 					image = Image_sets.title, 
  2239. 					choices = { 
  2240. 						[1] = { 
  2241. 							label = "COL_TXT_ADV_11_SC_06_CH1", 
  2242. 							target = 7, 
  2243. 							type = TYPE_BUTTON, 
  2244. 						}, 
  2245. 						[2] = { 
  2246. 							label = "COL_TXT_ADV_11_SC_06_CH2", 
  2247. 							target = 8, 
  2248. 							type = TYPE_BUTTON, 
  2249. 						}, 
  2250. 						[3] = { 
  2251. 							label = "COL_TXT_ADV_11_SC_06_CH3", 
  2252. 							target = 10, 
  2253. 							type = TYPE_BUTTON, 
  2254. 						}, 
  2255. 					}, 
  2256. 					sfx = "Neutral", 
  2257. 				}, 
  2258. 				[7] = { 
  2259. 					scenario = "COL_TXT_ADV_11_SC_07", 
  2260. 					image = Image_sets.title, 
  2261. 					choices = { 
  2262. 						[1] = { 
  2263. 							label = "COL_TXT_ADV_RETRY", 
  2264. 							target = 6, 
  2265. 							type = TYPE_BUTTON, 
  2266. 						}, 
  2267. 					}, 
  2268. 					sfx = "Neutral", 
  2269. 				}, 
  2270. 				[8] = { 
  2271. 					scenario = "COL_TXT_ADV_11_SC_08", 
  2272. 					image = Image_sets.title, 
  2273. 					choices = { 
  2274. 						[1] = { 
  2275. 							label = "COL_TXT_ADV_NEXT", 
  2276. 							target = 9, 
  2277. 							type = TYPE_BUTTON, 
  2278. 						}, 
  2279. 					}, 
  2280. 					sfx = "Neutral", 
  2281. 				}, 
  2282. 				[9] = { 
  2283. 					scenario = "COL_TXT_ADV_11_SC_09", 
  2284. 					image = Image_sets.title, 
  2285. 					choices = { 
  2286. 						[1] = { 
  2287. 							label = "COL_TXT_ADV_11_SC_09_CH1", 
  2288. 							target = 11, 
  2289. 							type = TYPE_BUTTON, 
  2290. 						}, 
  2291. 						[2] = { 
  2292. 							label = "COL_TXT_ADV_11_SC_09_CH2", 
  2293. 							target = 12, 
  2294. 							type = TYPE_BUTTON, 
  2295. 						}, 
  2296. 						[3] = { 
  2297. 							label = "COL_TXT_ADV_11_SC_09_CH3", 
  2298. 							target = 13, 
  2299. 							type = TYPE_BUTTON, 
  2300. 						}, 
  2301. 					}, 
  2302. 					sfx = "Neutral", 
  2303. 				}, 
  2304. 				[10] = { 
  2305. 					scenario = "COL_TXT_ADV_11_SC_10", 
  2306. 					image = Image_sets.title, 
  2307. 					choices = { 
  2308. 						[1] = { 
  2309. 							label = "COL_TXT_ADV_RETRY", 
  2310. 							target = 6, 
  2311. 							type = TYPE_BUTTON, 
  2312. 						}, 
  2313. 					}, 
  2314. 					sfx = "Neutral", 
  2315. 				}, 
  2316. 				[11] = { 
  2317. 					scenario = "COL_TXT_ADV_11_SC_11", 
  2318. 					image = Image_sets.title, 
  2319. 					choices = { 
  2320. 						[1] = { 
  2321. 							label = "COL_TXT_ADV_RETRY", 
  2322. 							target = 9, 
  2323. 							type = TYPE_BUTTON, 
  2324. 						}, 
  2325. 					}, 
  2326. 					sfx = "Neutral", 
  2327. 				}, 
  2328. 				[12] = { 
  2329. 					scenario = "COL_TXT_ADV_11_SC_12", 
  2330. 					image = Image_sets.title, 
  2331. 					choices = { 
  2332. 						[1] = { 
  2333. 							label = "COL_TXT_ADV_RETRY", 
  2334. 							target = 9, 
  2335. 							type = TYPE_BUTTON, 
  2336. 						}, 
  2337. 					}, 
  2338. 					sfx = "Neutral", 
  2339. 				}, 
  2340. 				[13] = { 
  2341. 					scenario = "COL_TXT_ADV_11_SC_13", 
  2342. 					image = Image_sets.title, 
  2343. 					choices = { 
  2344. 						[1] = { 
  2345. 							label = "COL_TXT_ADV_NEXT", 
  2346. 							target = 14, 
  2347. 							type = TYPE_BUTTON, 
  2348. 						}, 
  2349. 					}, 
  2350. 					sfx = "Neutral", 
  2351. 				}, 
  2352. 				[14] = { 
  2353. 					scenario = "COL_TXT_ADV_11_SC_14", 
  2354. 					image = Image_sets.title, 
  2355. 					choices = { 
  2356. 						[1] = { 
  2357. 							label = "COL_TXT_ADV_11_SC_14_CH1", 
  2358. 							target = 15, 
  2359. 							type = TYPE_BUTTON, 
  2360. 						}, 
  2361. 						[2] = { 
  2362. 							label = "COL_TXT_ADV_11_SC_14_CH2", 
  2363. 							target = 16, 
  2364. 							type = TYPE_BUTTON, 
  2365. 						}, 
  2366. 						[3] = { 
  2367. 							label = "COL_TXT_ADV_11_SC_14_CH3", 
  2368. 							target = 17, 
  2369. 							type = TYPE_BUTTON, 
  2370. 						}, 
  2371. 					}, 
  2372. 					sfx = "Neutral", 
  2373. 				}, 
  2374. 				[15] = { 
  2375. 					scenario = "COL_TXT_ADV_11_SC_15", 
  2376. 					image = Image_sets.title, 
  2377. 					choices = { 
  2378. 						[1] = { 
  2379. 							label = "COL_TXT_ADV_END", 
  2380. 							target = -1, 
  2381. 							type = TYPE_BUTTON, 
  2382. 						}, 
  2383. 					}, 
  2384. 					sfx = "Neutral", 
  2385. 				}, 
  2386. 				[16] = { 
  2387. 					scenario = "COL_TXT_ADV_11_SC_16", 
  2388. 					image = Image_sets.title, 
  2389. 					choices = { 
  2390. 						[1] = { 
  2391. 							label = "COL_TXT_ADV_RETRY", 
  2392. 							target = 14, 
  2393. 							type = TYPE_BUTTON, 
  2394. 						}, 
  2395. 					}, 
  2396. 					sfx = "Neutral", 
  2397. 				}, 
  2398. 				[17] = { 
  2399. 					scenario = "COL_TXT_ADV_11_SC_17", 
  2400. 					image = Image_sets.title, 
  2401. 					choices = { 
  2402. 						[1] = { 
  2403. 							label = "COL_TXT_ADV_RETRY", 
  2404. 							target = 14, 
  2405. 							type = TYPE_BUTTON, 
  2406. 						}, 
  2407. 					}, 
  2408. 					sfx = "Neutral", 
  2409. 				}, 
  2410. 			} 
  2411. 			--------------------------------- 
  2412. 			elseif Cur_text_adv == 12 then 
  2413. 			Data = { 
  2414. 				[1] = { 
  2415. 					scenario = "COL_TXT_ADV_12_SC_01", 
  2416. 					image = Image_sets.title, 
  2417. 					choices = { 
  2418. 						[1] = { 
  2419. 							label = "COL_TXT_ADV_12_SC_01_CH1", 
  2420. 							target = 2, 
  2421. 							type = TYPE_BUTTON, 
  2422. 						}, 
  2423. 						[2] = { 
  2424. 							label = "COL_TXT_ADV_12_SC_01_CH2", 
  2425. 							target = 4, 
  2426. 							type = TYPE_BUTTON, 
  2427. 						}, 
  2428. 						[3] = { 
  2429. 							label = "COL_TXT_ADV_12_SC_01_CH3", 
  2430. 							target = 5, 
  2431. 							type = TYPE_BUTTON, 
  2432. 						}, 
  2433. 					}, 
  2434. 					sfx = "Scenario", 
  2435. 				},	 
  2436. 				[2] = { 
  2437. 					scenario = "COL_TXT_ADV_12_SC_02", 
  2438. 					image = Image_sets.title, 
  2439. 					choices = { 
  2440. 						[1] = { 
  2441. 							label = "COL_TXT_ADV_NEXT", 
  2442. 							target = 3, 
  2443. 							type = TYPE_BUTTON, 
  2444. 						}, 
  2445. 					}, 
  2446. 					sfx = "Neutral", 
  2447. 				}, 
  2448. 				[3] = { 
  2449. 					scenario = "COL_TXT_ADV_12_SC_03", 
  2450. 					image = Image_sets.title, 
  2451. 					choices = { 
  2452. 						[1] = { 
  2453. 							label = "COL_TXT_ADV_12_SC_03_CH1", 
  2454. 							target = 6, 
  2455. 							type = TYPE_BUTTON, 
  2456. 						}, 
  2457. 						[2] = { 
  2458. 							label = "COL_TXT_ADV_12_SC_03_CH2", 
  2459. 							target = 7, 
  2460. 							type = TYPE_BUTTON, 
  2461. 						}, 
  2462. 						[3] = { 
  2463. 							label = "COL_TXT_ADV_12_SC_03_CH3", 
  2464. 							target = 9, 
  2465. 							type = TYPE_BUTTON, 
  2466. 						}, 
  2467. 					}, 
  2468. 					sfx = "Neutral", 
  2469. 				},	 
  2470. 				[4] = { 
  2471. 					scenario = "COL_TXT_ADV_12_SC_04", 
  2472. 					image = Image_sets.title, 
  2473. 					choices = { 
  2474. 						[1] = { 
  2475. 							label = "COL_TXT_ADV_RETRY", 
  2476. 							target = 1, 
  2477. 							type = TYPE_BUTTON, 
  2478. 						}, 
  2479. 					}, 
  2480. 					sfx = "Neutral", 
  2481. 				}, 
  2482. 				[5] = { 
  2483. 					scenario = "COL_TXT_ADV_12_SC_05", 
  2484. 					image = Image_sets.title, 
  2485. 					choices = { 
  2486. 						[1] = { 
  2487. 							label = "COL_TXT_ADV_RETRY", 
  2488. 							target = 1, 
  2489. 							type = TYPE_BUTTON, 
  2490. 						}, 
  2491. 					}, 
  2492. 					sfx = "Neutral", 
  2493. 				}, 
  2494. 				[6] = { 
  2495. 					scenario = "COL_TXT_ADV_12_SC_06", 
  2496. 					image = Image_sets.title, 
  2497. 					choices = { 
  2498. 						[1] = { 
  2499. 							label = "COL_TXT_ADV_RETRY", 
  2500. 							target = 3, 
  2501. 							type = TYPE_BUTTON, 
  2502. 						}, 
  2503. 					}, 
  2504. 					sfx = "Neutral", 
  2505. 				}, 
  2506. 				[7] = { 
  2507. 					scenario = "COL_TXT_ADV_12_SC_07", 
  2508. 					image = Image_sets.title, 
  2509. 					choices = { 
  2510. 						[1] = { 
  2511. 							label = "COL_TXT_ADV_NEXT", 
  2512. 							target = 8, 
  2513. 							type = TYPE_BUTTON, 
  2514. 						}, 
  2515. 					}, 
  2516. 					sfx = "Neutral", 
  2517. 				}, 
  2518. 				[8] = { 
  2519. 					scenario = "COL_TXT_ADV_12_SC_08", 
  2520. 					image = Image_sets.title, 
  2521. 					choices = { 
  2522. 						[1] = { 
  2523. 							label = "COL_TXT_ADV_12_SC_08_CH1", 
  2524. 							target = 10, 
  2525. 							type = TYPE_BUTTON, 
  2526. 						}, 
  2527. 						[2] = { 
  2528. 							label = "COL_TXT_ADV_12_SC_08_CH2", 
  2529. 							target = 11, 
  2530. 							type = TYPE_BUTTON, 
  2531. 						}, 
  2532. 						[3] = { 
  2533. 							label = "COL_TXT_ADV_12_SC_08_CH3", 
  2534. 							target = 13, 
  2535. 							type = TYPE_BUTTON, 
  2536. 						}, 
  2537. 					}, 
  2538. 					sfx = "Neutral", 
  2539. 				},	 
  2540. 				[9] = { 
  2541. 					scenario = "COL_TXT_ADV_12_SC_09", 
  2542. 					image = Image_sets.title, 
  2543. 					choices = { 
  2544. 						[1] = { 
  2545. 							label = "COL_TXT_ADV_RETRY", 
  2546. 							target = 3, 
  2547. 							type = TYPE_BUTTON, 
  2548. 						}, 
  2549. 					}, 
  2550. 					sfx = "Neutral", 
  2551. 				}, 
  2552. 				[10] = { 
  2553. 					scenario = "COL_TXT_ADV_12_SC_10", 
  2554. 					image = Image_sets.title, 
  2555. 					choices = { 
  2556. 						[1] = { 
  2557. 							label = "COL_TXT_ADV_RETRY", 
  2558. 							target = 8, 
  2559. 							type = TYPE_BUTTON, 
  2560. 						}, 
  2561. 					}, 
  2562. 					sfx = "Neutral", 
  2563. 				}, 
  2564. 				[11] = { 
  2565. 					scenario = "COL_TXT_ADV_12_SC_11", 
  2566. 					image = Image_sets.title, 
  2567. 					choices = { 
  2568. 						[1] = { 
  2569. 							label = "COL_TXT_ADV_NEXT", 
  2570. 							target = 12, 
  2571. 							type = TYPE_BUTTON, 
  2572. 						}, 
  2573. 					}, 
  2574. 					sfx = "Neutral", 
  2575. 				}, 
  2576. 				[12] = { 
  2577. 					scenario = "COL_TXT_ADV_12_SC_12", 
  2578. 					image = Image_sets.title, 
  2579. 					choices = { 
  2580. 						[1] = { 
  2581. 							label = "COL_TXT_ADV_12_SC_12_CH1", 
  2582. 							target = 14, 
  2583. 							type = TYPE_BUTTON, 
  2584. 						}, 
  2585. 						[2] = { 
  2586. 							label = "COL_TXT_ADV_12_SC_12_CH2", 
  2587. 							target = 15, 
  2588. 							type = TYPE_BUTTON, 
  2589. 						}, 
  2590. 						[3] = { 
  2591. 							label = "COL_TXT_ADV_12_SC_12_CH3", 
  2592. 							target = 16, 
  2593. 							type = TYPE_BUTTON, 
  2594. 						}, 
  2595. 					}, 
  2596. 					sfx = "Neutral", 
  2597. 				},	 
  2598. 				[13] = { 
  2599. 					scenario = "COL_TXT_ADV_12_SC_13", 
  2600. 					image = Image_sets.title, 
  2601. 					choices = { 
  2602. 						[1] = { 
  2603. 							label = "COL_TXT_ADV_RETRY", 
  2604. 							target = 8, 
  2605. 							type = TYPE_BUTTON, 
  2606. 						}, 
  2607. 					}, 
  2608. 					sfx = "Neutral", 
  2609. 				}, 
  2610. 				[14] = { 
  2611. 					scenario = "COL_TXT_ADV_12_SC_14", 
  2612. 					image = Image_sets.title, 
  2613. 					choices = { 
  2614. 						[1] = { 
  2615. 							label = "COL_TXT_ADV_END", 
  2616. 							target = -1, 
  2617. 							type = TYPE_BUTTON, 
  2618. 						}, 
  2619. 					}, 
  2620. 					sfx = "Neutral", 
  2621. 				}, 
  2622. 				[15] = { 
  2623. 					scenario = "COL_TXT_ADV_12_SC_15", 
  2624. 					image = Image_sets.title, 
  2625. 					choices = { 
  2626. 						[1] = { 
  2627. 							label = "COL_TXT_ADV_RETRY", 
  2628. 							target = 12, 
  2629. 							type = TYPE_BUTTON, 
  2630. 						}, 
  2631. 					}, 
  2632. 					sfx = "Neutral", 
  2633. 				}, 
  2634. 				[16] = { 
  2635. 					scenario = "COL_TXT_ADV_12_SC_16", 
  2636. 					image = Image_sets.title, 
  2637. 					choices = { 
  2638. 						[1] = { 
  2639. 							label = "COL_TXT_ADV_RETRY", 
  2640. 							target = 12, 
  2641. 							type = TYPE_BUTTON, 
  2642. 						}, 
  2643. 					}, 
  2644. 					sfx = "Neutral", 
  2645. 				}, 
  2646. 			} 
  2647. 		 
  2648. 		--------------------------------- 
  2649. 			elseif Cur_text_adv == 13 then 
  2650. 			Data = { 
  2651. 				[1] = { 
  2652. 					scenario = "COL_TXT_ADV_13_SC_01", 
  2653. 					image = Image_sets.title, 
  2654. 					choices = { 
  2655. 						[1] = { 
  2656. 							label = "COL_TXT_ADV_13_SC_01_CH1", 
  2657. 							target = 2, 
  2658. 							type = TYPE_BUTTON, 
  2659. 						}, 
  2660. 						[2] = { 
  2661. 							label = "COL_TXT_ADV_13_SC_01_CH2", 
  2662. 							target = 3, 
  2663. 							type = TYPE_BUTTON, 
  2664. 						}, 
  2665. 						[3] = { 
  2666. 							label = "COL_TXT_ADV_13_SC_01_CH3", 
  2667. 							target = 4, 
  2668. 							type = TYPE_BUTTON, 
  2669. 						}, 
  2670. 					}, 
  2671. 					sfx = "Scenario", 
  2672. 				},	 
  2673. 				[2] = { 
  2674. 					scenario = "COL_TXT_ADV_13_SC_02", 
  2675. 					image = Image_sets.title, 
  2676. 					choices = { 
  2677. 						[1] = { 
  2678. 							label = "COL_TXT_ADV_RETRY", 
  2679. 							target = 1, 
  2680. 							type = TYPE_BUTTON, 
  2681. 						}, 
  2682. 					}, 
  2683. 					sfx = "Neutral", 
  2684. 				}, 
  2685. 				[3] = { 
  2686. 					scenario = "COL_TXT_ADV_13_SC_03", 
  2687. 					image = Image_sets.title, 
  2688. 					choices = { 
  2689. 						[1] = { 
  2690. 							label = "COL_TXT_ADV_RETRY", 
  2691. 							target = 1, 
  2692. 							type = TYPE_BUTTON, 
  2693. 						}, 
  2694. 					}, 
  2695. 					sfx = "Neutral", 
  2696. 				}, 
  2697. 				[4] = { 
  2698. 					scenario = "COL_TXT_ADV_13_SC_04", 
  2699. 					image = Image_sets.title, 
  2700. 					choices = { 
  2701. 						[1] = { 
  2702. 							label = "COL_TXT_ADV_NEXT", 
  2703. 							target = 5, 
  2704. 							type = TYPE_BUTTON, 
  2705. 						}, 
  2706. 					}, 
  2707. 					sfx = "Neutral", 
  2708. 				}, 
  2709. 				[5] = { 
  2710. 					scenario = "COL_TXT_ADV_13_SC_05", 
  2711. 					image = Image_sets.title, 
  2712. 					choices = { 
  2713. 						[1] = { 
  2714. 							label = "COL_TXT_ADV_13_SC_05_CH1", 
  2715. 							target = 6, 
  2716. 							type = TYPE_BUTTON, 
  2717. 						}, 
  2718. 						[2] = { 
  2719. 							label = "COL_TXT_ADV_13_SC_05_CH2", 
  2720. 							target = 7, 
  2721. 							type = TYPE_BUTTON, 
  2722. 						}, 
  2723. 						[3] = { 
  2724. 							label = "COL_TXT_ADV_13_SC_05_CH3", 
  2725. 							target = 8, 
  2726. 							type = TYPE_BUTTON, 
  2727. 						}, 
  2728. 					}, 
  2729. 					sfx = "Neutral", 
  2730. 				},	 
  2731. 				[6] = { 
  2732. 					scenario = "COL_TXT_ADV_13_SC_06", 
  2733. 					image = Image_sets.title, 
  2734. 					choices = { 
  2735. 						[1] = { 
  2736. 							label = "COL_TXT_ADV_NEXT", 
  2737. 							target = 9, 
  2738. 							type = TYPE_BUTTON, 
  2739. 						}, 
  2740. 					}, 
  2741. 					sfx = "Neutral", 
  2742. 				}, 
  2743. 				[7] = { 
  2744. 					scenario = "COL_TXT_ADV_13_SC_07", 
  2745. 					image = Image_sets.title, 
  2746. 					choices = { 
  2747. 						[1] = { 
  2748. 							label = "COL_TXT_ADV_NEXT", 
  2749. 							target = 9, 
  2750. 							type = TYPE_BUTTON, 
  2751. 						}, 
  2752. 					}, 
  2753. 					sfx = "Neutral", 
  2754. 				}, 
  2755. 				[8] = { 
  2756. 					scenario = "COL_TXT_ADV_13_SC_08", 
  2757. 					image = Image_sets.title, 
  2758. 					choices = { 
  2759. 						[1] = { 
  2760. 							label = "COL_TXT_ADV_NEXT", 
  2761. 							target = 9, 
  2762. 							type = TYPE_BUTTON, 
  2763. 						}, 
  2764. 					}, 
  2765. 					sfx = "Neutral", 
  2766. 				}, 
  2767. 				[9] = { 
  2768. 					scenario = "COL_TXT_ADV_13_SC_09", 
  2769. 					image = Image_sets.title, 
  2770. 					choices = { 
  2771. 						[1] = { 
  2772. 							label = "COL_TXT_ADV_NEXT", 
  2773. 							target = 10, 
  2774. 							type = TYPE_BUTTON, 
  2775. 						}, 
  2776. 					}, 
  2777. 					sfx = "Neutral", 
  2778. 				}, 
  2779. 				[10] = { 
  2780. 					scenario = "COL_TXT_ADV_13_SC_10", 
  2781. 					image = Image_sets.title, 
  2782. 					choices = { 
  2783. 						[1] = { 
  2784. 							label = "COL_TXT_ADV_13_SC_10_CH1", 
  2785. 							target = 11, 
  2786. 							type = TYPE_BUTTON, 
  2787. 						}, 
  2788. 						[2] = { 
  2789. 							label = "COL_TXT_ADV_13_SC_10_CH2", 
  2790. 							target = 12, 
  2791. 							type = TYPE_BUTTON, 
  2792. 						}, 
  2793. 						[3] = { 
  2794. 							label = "COL_TXT_ADV_13_SC_10_CH3", 
  2795. 							target = 14, 
  2796. 							type = TYPE_BUTTON, 
  2797. 						}, 
  2798. 					}, 
  2799. 					sfx = "Neutral", 
  2800. 				},	 
  2801. 				[11] = { 
  2802. 					scenario = "COL_TXT_ADV_13_SC_11", 
  2803. 					image = Image_sets.title, 
  2804. 					choices = { 
  2805. 						[1] = { 
  2806. 							label = "COL_TXT_ADV_RETRY", 
  2807. 							target = 10, 
  2808. 							type = TYPE_BUTTON, 
  2809. 						}, 
  2810. 					}, 
  2811. 					sfx = "Neutral", 
  2812. 				}, 
  2813. 				[12] = { 
  2814. 					scenario = "COL_TXT_ADV_13_SC_12", 
  2815. 					image = Image_sets.title, 
  2816. 					choices = { 
  2817. 						[1] = { 
  2818. 							label = "COL_TXT_ADV_NEXT", 
  2819. 							target = 13, 
  2820. 							type = TYPE_BUTTON, 
  2821. 						}, 
  2822. 					}, 
  2823. 					sfx = "Neutral", 
  2824. 				}, 
  2825. 				[13] = { 
  2826. 					scenario = "COL_TXT_ADV_13_SC_13", 
  2827. 					image = Image_sets.title, 
  2828. 					choices = { 
  2829. 						[1] = { 
  2830. 							label = "COL_TXT_ADV_13_SC_13_CH1", 
  2831. 							target = 15, 
  2832. 							type = TYPE_BUTTON, 
  2833. 						}, 
  2834. 						[2] = { 
  2835. 							label = "COL_TXT_ADV_13_SC_13_CH2", 
  2836. 							target = 16, 
  2837. 							type = TYPE_BUTTON, 
  2838. 						}, 
  2839. 						[3] = { 
  2840. 							label = "COL_TXT_ADV_13_SC_13_CH3", 
  2841. 							target = 17, 
  2842. 							type = TYPE_BUTTON, 
  2843. 						}, 
  2844. 					}, 
  2845. 					sfx = "Neutral", 
  2846. 				},	 
  2847. 				[14] = { 
  2848. 					scenario = "COL_TXT_ADV_13_SC_14", 
  2849. 					image = Image_sets.title, 
  2850. 					choices = { 
  2851. 						[1] = { 
  2852. 							label = "COL_TXT_ADV_RETRY", 
  2853. 							target = 10, 
  2854. 							type = TYPE_BUTTON, 
  2855. 						}, 
  2856. 					}, 
  2857. 					sfx = "Neutral", 
  2858. 				}, 
  2859. 				[15] = { 
  2860. 					scenario = "COL_TXT_ADV_13_SC_15", 
  2861. 					image = Image_sets.title, 
  2862. 					choices = { 
  2863. 						[1] = { 
  2864. 							label = "COL_TXT_ADV_RETRY", 
  2865. 							target = 13, 
  2866. 							type = TYPE_BUTTON, 
  2867. 						}, 
  2868. 					}, 
  2869. 					sfx = "Neutral", 
  2870. 				}, 
  2871. 				[16] = { 
  2872. 					scenario = "COL_TXT_ADV_13_SC_16", 
  2873. 					image = Image_sets.title, 
  2874. 					choices = { 
  2875. 						[1] = { 
  2876. 							label = "COL_TXT_ADV_RETRY", 
  2877. 							target = 13, 
  2878. 							type = TYPE_BUTTON, 
  2879. 						}, 
  2880. 					}, 
  2881. 					sfx = "Neutral", 
  2882. 				}, 
  2883. 				[17] = { 
  2884. 					scenario = "COL_TXT_ADV_13_SC_17", 
  2885. 					image = Image_sets.title, 
  2886. 					choices = { 
  2887. 						[1] = { 
  2888. 							label = "COL_TXT_ADV_NEXT", 
  2889. 							target = 18, 
  2890. 							type = TYPE_BUTTON, 
  2891. 						}, 
  2892. 					}, 
  2893. 					sfx = "Neutral", 
  2894. 				}, 
  2895. 				[18] = { 
  2896. 					scenario = "COL_TXT_ADV_13_SC_18", 
  2897. 					image = Image_sets.title, 
  2898. 					choices = { 
  2899. 						[1] = { 
  2900. 							label = "COL_TXT_ADV_END", 
  2901. 							target = -1, 
  2902. 							type = TYPE_BUTTON, 
  2903. 						}, 
  2904. 					}, 
  2905. 					sfx = "Neutral", 
  2906. 				}, 
  2907. 			} 
  2908. 		--------------------------------- 
  2909. 			elseif Cur_text_adv == 14 then 
  2910. 			Data = { 
  2911. 				[1] = { 
  2912. 					scenario = "COL_TXT_ADV_14_SC_01", 
  2913. 					image = Image_sets.title, 
  2914. 					choices = { 
  2915. 						[1] = { 
  2916. 							label = "COL_TXT_ADV_NEXT", 
  2917. 							target = 2, 
  2918. 							type = TYPE_BUTTON, 
  2919. 						}, 
  2920. 					}, 
  2921. 					sfx = "Scenario", 
  2922. 				}, 
  2923. 				[2] = { 
  2924. 					scenario = "COL_TXT_ADV_14_SC_02", 
  2925. 					image = Image_sets.title, 
  2926. 					choices = { 
  2927. 						[1] = { 
  2928. 							label = "COL_TXT_ADV_14_SC_02_CH1", 
  2929. 							target = 3, 
  2930. 							type = TYPE_BUTTON, 
  2931. 						}, 
  2932. 						[2] = { 
  2933. 							label = "COL_TXT_ADV_14_SC_02_CH2", 
  2934. 							target = 5, 
  2935. 							type = TYPE_BUTTON, 
  2936. 						}, 
  2937. 						[3] = { 
  2938. 							label = "COL_TXT_ADV_14_SC_02_CH3", 
  2939. 							target = 6, 
  2940. 							type = TYPE_BUTTON, 
  2941. 						}, 
  2942. 					}, 
  2943. 					sfx = "Neutral", 
  2944. 				},	 
  2945. 				[3] = { 
  2946. 					scenario = "COL_TXT_ADV_14_SC_03", 
  2947. 					image = Image_sets.title, 
  2948. 					choices = { 
  2949. 						[1] = { 
  2950. 							label = "COL_TXT_ADV_NEXT", 
  2951. 							target = 4, 
  2952. 							type = TYPE_BUTTON, 
  2953. 						}, 
  2954. 					}, 
  2955. 					sfx = "Neutral", 
  2956. 				}, 
  2957. 				[4] = { 
  2958. 					scenario = "COL_TXT_ADV_14_SC_04", 
  2959. 					image = Image_sets.title, 
  2960. 					choices = { 
  2961. 						[1] = { 
  2962. 							label = "COL_TXT_ADV_14_SC_04_CH1", 
  2963. 							target = 7, 
  2964. 							type = TYPE_BUTTON, 
  2965. 						}, 
  2966. 						[2] = { 
  2967. 							label = "COL_TXT_ADV_14_SC_04_CH2", 
  2968. 							target = 9, 
  2969. 							type = TYPE_BUTTON, 
  2970. 						}, 
  2971. 						[3] = { 
  2972. 							label = "COL_TXT_ADV_14_SC_04_CH3", 
  2973. 							target = 10, 
  2974. 							type = TYPE_BUTTON, 
  2975. 						}, 
  2976. 					}, 
  2977. 					sfx = "Neutral", 
  2978. 				},	 
  2979. 				[5] = { 
  2980. 					scenario = "COL_TXT_ADV_14_SC_05", 
  2981. 					image = Image_sets.title, 
  2982. 					choices = { 
  2983. 						[1] = { 
  2984. 							label = "COL_TXT_ADV_RETRY", 
  2985. 							target = 2, 
  2986. 							type = TYPE_BUTTON, 
  2987. 						}, 
  2988. 					}, 
  2989. 					sfx = "Neutral", 
  2990. 				}, 
  2991. 				[6] = { 
  2992. 					scenario = "COL_TXT_ADV_14_SC_06", 
  2993. 					image = Image_sets.title, 
  2994. 					choices = { 
  2995. 						[1] = { 
  2996. 							label = "COL_TXT_ADV_RETRY", 
  2997. 							target = 2, 
  2998. 							type = TYPE_BUTTON, 
  2999. 						}, 
  3000. 					}, 
  3001. 					sfx = "Neutral", 
  3002. 				}, 
  3003. 				[7] = { 
  3004. 					scenario = "COL_TXT_ADV_14_SC_07", 
  3005. 					image = Image_sets.title, 
  3006. 					choices = { 
  3007. 						[1] = { 
  3008. 							label = "COL_TXT_ADV_NEXT", 
  3009. 							target = 8, 
  3010. 							type = TYPE_BUTTON, 
  3011. 						}, 
  3012. 					}, 
  3013. 					sfx = "Neutral", 
  3014. 				}, 
  3015. 				[8] = { 
  3016. 					scenario = "COL_TXT_ADV_14_SC_08", 
  3017. 					image = Image_sets.title, 
  3018. 					choices = { 
  3019. 						[1] = { 
  3020. 							label = "COL_TXT_ADV_14_SC_08_CH1", 
  3021. 							target = 11, 
  3022. 							type = TYPE_BUTTON, 
  3023. 						}, 
  3024. 						[2] = { 
  3025. 							label = "COL_TXT_ADV_14_SC_08_CH2", 
  3026. 							target = 12, 
  3027. 							type = TYPE_BUTTON, 
  3028. 						}, 
  3029. 						[3] = { 
  3030. 							label = "COL_TXT_ADV_14_SC_08_CH3", 
  3031. 							target = 13, 
  3032. 							type = TYPE_BUTTON, 
  3033. 						}, 
  3034. 					}, 
  3035. 					sfx = "Neutral", 
  3036. 				},	 
  3037. 				[9] = { 
  3038. 					scenario = "COL_TXT_ADV_14_SC_09", 
  3039. 					image = Image_sets.title, 
  3040. 					choices = { 
  3041. 						[1] = { 
  3042. 							label = "COL_TXT_ADV_RETRY", 
  3043. 							target = 4, 
  3044. 							type = TYPE_BUTTON, 
  3045. 						}, 
  3046. 					}, 
  3047. 					sfx = "Neutral", 
  3048. 				}, 
  3049. 				[10] = { 
  3050. 					scenario = "COL_TXT_ADV_14_SC_10", 
  3051. 					image = Image_sets.title, 
  3052. 					choices = { 
  3053. 						[1] = { 
  3054. 							label = "COL_TXT_ADV_RETRY", 
  3055. 							target = 4, 
  3056. 							type = TYPE_BUTTON, 
  3057. 						}, 
  3058. 					}, 
  3059. 					sfx = "Neutral", 
  3060. 				}, 
  3061. 				[11] = { 
  3062. 					scenario = "COL_TXT_ADV_14_SC_11", 
  3063. 					image = Image_sets.title, 
  3064. 					choices = { 
  3065. 						[1] = { 
  3066. 							label = "COL_TXT_ADV_RETRY", 
  3067. 							target = 8, 
  3068. 							type = TYPE_BUTTON, 
  3069. 						}, 
  3070. 					}, 
  3071. 					sfx = "Neutral", 
  3072. 				}, 
  3073. 				[12] = { 
  3074. 					scenario = "COL_TXT_ADV_14_SC_12", 
  3075. 					image = Image_sets.title, 
  3076. 					choices = { 
  3077. 						[1] = { 
  3078. 							label = "COL_TXT_ADV_RETRY", 
  3079. 							target = 8, 
  3080. 							type = TYPE_BUTTON, 
  3081. 						}, 
  3082. 					}, 
  3083. 					sfx = "Neutral", 
  3084. 				}, 
  3085. 				[13] = { 
  3086. 					scenario = "COL_TXT_ADV_14_SC_13", 
  3087. 					image = Image_sets.title, 
  3088. 					choices = { 
  3089. 						[1] = { 
  3090. 							label = "COL_TXT_ADV_14_SC_13_CH1", 
  3091. 							target = 14, 
  3092. 							type = TYPE_BUTTON, 
  3093. 						}, 
  3094. 						[2] = { 
  3095. 							label = "COL_TXT_ADV_14_SC_13_CH2", 
  3096. 							target = 15, 
  3097. 							type = TYPE_BUTTON, 
  3098. 						}, 
  3099. 						[3] = { 
  3100. 							label = "COL_TXT_ADV_14_SC_13_CH3", 
  3101. 							target = 16, 
  3102. 							type = TYPE_BUTTON, 
  3103. 						}, 
  3104. 					}, 
  3105. 					sfx = "Neutral", 
  3106. 				},	 
  3107. 				[14] = { 
  3108. 					scenario = "COL_TXT_ADV_14_SC_14", 
  3109. 					image = Image_sets.title, 
  3110. 					choices = { 
  3111. 						[1] = { 
  3112. 							label = "COL_TXT_ADV_RETRY", 
  3113. 							target = 13, 
  3114. 							type = TYPE_BUTTON, 
  3115. 						}, 
  3116. 					}, 
  3117. 					sfx = "Neutral", 
  3118. 				}, 
  3119. 				[15] = { 
  3120. 					scenario = "COL_TXT_ADV_14_SC_15", 
  3121. 					image = Image_sets.title, 
  3122. 					choices = { 
  3123. 						[1] = { 
  3124. 							label = "COL_TXT_ADV_RETRY", 
  3125. 							target = 13, 
  3126. 							type = TYPE_BUTTON, 
  3127. 						}, 
  3128. 					}, 
  3129. 					sfx = "Neutral", 
  3130. 				}, 
  3131. 				[16] = { 
  3132. 					scenario = "COL_TXT_ADV_14_SC_16", 
  3133. 					image = Image_sets.title, 
  3134. 					choices = { 
  3135. 						[1] = { 
  3136. 							label = "COL_TXT_ADV_END", 
  3137. 							target = -1, 
  3138. 							type = TYPE_BUTTON, 
  3139. 						}, 
  3140. 					}, 
  3141. 					sfx = "Neutral", 
  3142. 				}, 
  3143. 			} 
  3144. 		--------------------------------- 
  3145. 		elseif Cur_text_adv == 15 then 
  3146. 			Data = { 
  3147. 				[1] = { 
  3148. 					scenario = "COL_TXT_ADV_15_SC_01", 
  3149. 					image = Image_sets.title, 
  3150. 					choices = { 
  3151. 						[1] = { 
  3152. 							label = "COL_TXT_ADV_NEXT", 
  3153. 							target = 2, 
  3154. 							type = TYPE_BUTTON, 
  3155. 						}, 
  3156. 					}, 
  3157. 					sfx = "Scenario", 
  3158. 				}, 
  3159. 				[2] = { 
  3160. 					scenario = "COL_TXT_ADV_15_SC_02", 
  3161. 					image = Image_sets.title, 
  3162. 					choices = { 
  3163. 						[1] = { 
  3164. 							label = "COL_TXT_ADV_15_SC_02_CH1", 
  3165. 							target = 3, 
  3166. 							type = TYPE_BUTTON, 
  3167. 						}, 
  3168. 						[2] = { 
  3169. 							label = "COL_TXT_ADV_15_SC_02_CH2", 
  3170. 							target = 4, 
  3171. 							type = TYPE_BUTTON, 
  3172. 						}, 
  3173. 						[3] = { 
  3174. 							label = "COL_TXT_ADV_15_SC_02_CH3", 
  3175. 							target = 5, 
  3176. 							type = TYPE_BUTTON, 
  3177. 						}, 
  3178. 					}, 
  3179. 					sfx = "Neutral", 
  3180. 				},	 
  3181. 				[3] = { 
  3182. 					scenario = "COL_TXT_ADV_15_SC_03", 
  3183. 					image = Image_sets.title, 
  3184. 					choices = { 
  3185. 						[1] = { 
  3186. 							label = "COL_TXT_ADV_RETRY", 
  3187. 							target = 2, 
  3188. 							type = TYPE_BUTTON, 
  3189. 						}, 
  3190. 					}, 
  3191. 					sfx = "Neutral", 
  3192. 				}, 
  3193. 				[4] = { 
  3194. 					scenario = "COL_TXT_ADV_15_SC_04", 
  3195. 					image = Image_sets.title, 
  3196. 					choices = { 
  3197. 						[1] = { 
  3198. 							label = "COL_TXT_ADV_RETRY", 
  3199. 							target = 2, 
  3200. 							type = TYPE_BUTTON, 
  3201. 						}, 
  3202. 					}, 
  3203. 					sfx = "Neutral", 
  3204. 				}, 
  3205. 				[5] = { 
  3206. 					scenario = "COL_TXT_ADV_15_SC_05", 
  3207. 					image = Image_sets.title, 
  3208. 					choices = { 
  3209. 						[1] = { 
  3210. 							label = "COL_TXT_ADV_NEXT", 
  3211. 							target = 6, 
  3212. 							type = TYPE_BUTTON, 
  3213. 						}, 
  3214. 					}, 
  3215. 					sfx = "Neutral", 
  3216. 				}, 
  3217. 				[6] = { 
  3218. 					scenario = "COL_TXT_ADV_15_SC_06", 
  3219. 					image = Image_sets.title, 
  3220. 					choices = { 
  3221. 						[1] = { 
  3222. 							label = "COL_TXT_ADV_15_SC_06_CH1", 
  3223. 							target = 7, 
  3224. 							type = TYPE_BUTTON, 
  3225. 						}, 
  3226. 						[2] = { 
  3227. 							label = "COL_TXT_ADV_15_SC_06_CH2", 
  3228. 							target = 8, 
  3229. 							type = TYPE_BUTTON, 
  3230. 						}, 
  3231. 						[3] = { 
  3232. 							label = "COL_TXT_ADV_15_SC_06_CH3", 
  3233. 							target = 9, 
  3234. 							type = TYPE_BUTTON, 
  3235. 						}, 
  3236. 					}, 
  3237. 					sfx = "Neutral", 
  3238. 				},	 
  3239. 				[7] = { 
  3240. 					scenario = "COL_TXT_ADV_15_SC_07", 
  3241. 					image = Image_sets.title, 
  3242. 					choices = { 
  3243. 						[1] = { 
  3244. 							label = "COL_TXT_ADV_RETRY", 
  3245. 							target = 6, 
  3246. 							type = TYPE_BUTTON, 
  3247. 						}, 
  3248. 					}, 
  3249. 					sfx = "Neutral", 
  3250. 				}, 
  3251. 				[8] = { 
  3252. 					scenario = "COL_TXT_ADV_15_SC_08", 
  3253. 					image = Image_sets.title, 
  3254. 					choices = { 
  3255. 						[1] = { 
  3256. 							label = "COL_TXT_ADV_RETRY", 
  3257. 							target = 6, 
  3258. 							type = TYPE_BUTTON, 
  3259. 						}, 
  3260. 					}, 
  3261. 					sfx = "Neutral", 
  3262. 				}, 
  3263. 				[9] = { 
  3264. 					scenario = "COL_TXT_ADV_15_SC_09", 
  3265. 					image = Image_sets.title, 
  3266. 					choices = { 
  3267. 						[1] = { 
  3268. 							label = "COL_TXT_ADV_NEXT", 
  3269. 							target = 10, 
  3270. 							type = TYPE_BUTTON, 
  3271. 						}, 
  3272. 					}, 
  3273. 					sfx = "Neutral", 
  3274. 				}, 
  3275. 				[10] = { 
  3276. 					scenario = "COL_TXT_ADV_15_SC_10", 
  3277. 					image = Image_sets.title, 
  3278. 					choices = { 
  3279. 						[1] = { 
  3280. 							label = "COL_TXT_ADV_15_SC_10_CH1", 
  3281. 							target = 11, 
  3282. 							type = TYPE_BUTTON, 
  3283. 						}, 
  3284. 						[2] = { 
  3285. 							label = "COL_TXT_ADV_15_SC_10_CH2", 
  3286. 							target = 12, 
  3287. 							type = TYPE_BUTTON, 
  3288. 						}, 
  3289. 						[3] = { 
  3290. 							label = "COL_TXT_ADV_15_SC_10_CH3", 
  3291. 							target = 13, 
  3292. 							type = TYPE_BUTTON, 
  3293. 						}, 
  3294. 					}, 
  3295. 					sfx = "Neutral", 
  3296. 				},	 
  3297. 				[11] = { 
  3298. 					scenario = "COL_TXT_ADV_15_SC_11", 
  3299. 					image = Image_sets.title, 
  3300. 					choices = { 
  3301. 						[1] = { 
  3302. 							label = "COL_TXT_ADV_RETRY", 
  3303. 							target = 10, 
  3304. 							type = TYPE_BUTTON, 
  3305. 						}, 
  3306. 					}, 
  3307. 					sfx = "Neutral", 
  3308. 				}, 
  3309. 				[12] = { 
  3310. 					scenario = "COL_TXT_ADV_15_SC_12", 
  3311. 					image = Image_sets.title, 
  3312. 					choices = { 
  3313. 						[1] = { 
  3314. 							label = "COL_TXT_ADV_RETRY", 
  3315. 							target = 10, 
  3316. 							type = TYPE_BUTTON, 
  3317. 						}, 
  3318. 					}, 
  3319. 					sfx = "Neutral", 
  3320. 				}, 
  3321. 				[13] = { 
  3322. 					scenario = "COL_TXT_ADV_15_SC_13", 
  3323. 					image = Image_sets.title, 
  3324. 					choices = { 
  3325. 						[1] = { 
  3326. 							label = "COL_TXT_ADV_NEXT", 
  3327. 							target = 14, 
  3328. 							type = TYPE_BUTTON, 
  3329. 						}, 
  3330. 					}, 
  3331. 					sfx = "Neutral", 
  3332. 				}, 
  3333. 				[14] = { 
  3334. 					scenario = "COL_TXT_ADV_15_SC_14", 
  3335. 					image = Image_sets.title, 
  3336. 					choices = { 
  3337. 						[1] = { 
  3338. 							label = "COL_TXT_ADV_15_SC_14_CH1", 
  3339. 							target = 15, 
  3340. 							type = TYPE_BUTTON, 
  3341. 						}, 
  3342. 						[2] = { 
  3343. 							label = "COL_TXT_ADV_15_SC_14_CH2", 
  3344. 							target = 16, 
  3345. 							type = TYPE_BUTTON, 
  3346. 						}, 
  3347. 						[3] = { 
  3348. 							label = "COL_TXT_ADV_15_SC_14_CH3", 
  3349. 							target = 17, 
  3350. 							type = TYPE_BUTTON, 
  3351. 						}, 
  3352. 					}, 
  3353. 					sfx = "Neutral", 
  3354. 				},	 
  3355. 				[15] = { 
  3356. 					scenario = "COL_TXT_ADV_15_SC_15", 
  3357. 					image = Image_sets.title, 
  3358. 					choices = { 
  3359. 						[1] = { 
  3360. 							label = "COL_TXT_ADV_RETRY", 
  3361. 							target = 14, 
  3362. 							type = TYPE_BUTTON, 
  3363. 						}, 
  3364. 					}, 
  3365. 					sfx = "Neutral", 
  3366. 				}, 
  3367. 				[16] = { 
  3368. 					scenario = "COL_TXT_ADV_15_SC_16", 
  3369. 					image = Image_sets.title, 
  3370. 					choices = { 
  3371. 						[1] = { 
  3372. 							label = "COL_TXT_ADV_RETRY", 
  3373. 							target = 14, 
  3374. 							type = TYPE_BUTTON, 
  3375. 						}, 
  3376. 					}, 
  3377. 					sfx = "Neutral", 
  3378. 				}, 
  3379. 				[17] = { 
  3380. 					scenario = "COL_TXT_ADV_15_SC_17", 
  3381. 					image = Image_sets.title, 
  3382. 					choices = { 
  3383. 						[1] = { 
  3384. 							label = "COL_TXT_ADV_END", 
  3385. 							target = -1, 
  3386. 							type = TYPE_BUTTON, 
  3387. 						}, 
  3388. 					}, 
  3389. 					sfx = "Neutral", 
  3390. 				}, 
  3391. 			} 
  3392. 			--------------------------------- 
  3393. 		elseif Cur_text_adv == 16 then 
  3394. 			Data = { 
  3395. 				[1] = { 
  3396. 					scenario = "COL_TXT_ADV_16_SC_01", 
  3397. 					image = Image_sets.title, 
  3398. 					choices = { 
  3399. 						[1] = { 
  3400. 							label = "COL_TXT_ADV_16_SC_01_CH1", 
  3401. 							target = 2, 
  3402. 							type = TYPE_BUTTON, 
  3403. 						}, 
  3404. 						[2] = { 
  3405. 							label = "COL_TXT_ADV_16_SC_01_CH2", 
  3406. 							target = 3, 
  3407. 							type = TYPE_BUTTON, 
  3408. 						}, 
  3409. 						[3] = { 
  3410. 							label = "COL_TXT_ADV_16_SC_01_CH3", 
  3411. 							target = 4, 
  3412. 							type = TYPE_BUTTON, 
  3413. 						}, 
  3414. 					}, 
  3415. 					sfx = "Scenario", 
  3416. 				},	 
  3417. 				[2] = { 
  3418. 					scenario = "COL_TXT_ADV_16_SC_02", 
  3419. 					image = Image_sets.title, 
  3420. 					choices = { 
  3421. 						[1] = { 
  3422. 							label = "COL_TXT_ADV_16_SC_02_CH1", 
  3423. 							target = 5, 
  3424. 							type = TYPE_BUTTON, 
  3425. 						}, 
  3426. 						[2] = { 
  3427. 							label = "COL_TXT_ADV_16_SC_02_CH2", 
  3428. 							target = 7, 
  3429. 							type = TYPE_BUTTON, 
  3430. 						}, 
  3431. 						[3] = { 
  3432. 							label = "COL_TXT_ADV_16_SC_02_CH3", 
  3433. 							target = 8, 
  3434. 							type = TYPE_BUTTON, 
  3435. 						}, 
  3436. 					}, 
  3437. 					sfx = "Neutral", 
  3438. 				},	 
  3439. 				[3] = { 
  3440. 					scenario = "COL_TXT_ADV_16_SC_03", 
  3441. 					image = Image_sets.title, 
  3442. 					choices = { 
  3443. 						[1] = { 
  3444. 							label = "COL_TXT_ADV_RETRY", 
  3445. 							target = 1, 
  3446. 							type = TYPE_BUTTON, 
  3447. 						}, 
  3448. 					}, 
  3449. 					sfx = "Neutral", 
  3450. 				}, 
  3451. 				[4] = { 
  3452. 					scenario = "COL_TXT_ADV_16_SC_04", 
  3453. 					image = Image_sets.title, 
  3454. 					choices = { 
  3455. 						[1] = { 
  3456. 							label = "COL_TXT_ADV_RETRY", 
  3457. 							target = 1, 
  3458. 							type = TYPE_BUTTON, 
  3459. 						}, 
  3460. 					}, 
  3461. 					sfx = "Neutral", 
  3462. 				}, 
  3463. 				[5] = { 
  3464. 					scenario = "COL_TXT_ADV_16_SC_05", 
  3465. 					image = Image_sets.title, 
  3466. 					choices = { 
  3467. 						[1] = { 
  3468. 							label = "COL_TXT_ADV_NEXT", 
  3469. 							target = 6, 
  3470. 							type = TYPE_BUTTON, 
  3471. 						}, 
  3472. 					}, 
  3473. 					sfx = "Neutral", 
  3474. 				}, 
  3475. 				[6] = { 
  3476. 					scenario = "COL_TXT_ADV_16_SC_06", 
  3477. 					image = Image_sets.title, 
  3478. 					choices = { 
  3479. 						[1] = { 
  3480. 							label = "COL_TXT_ADV_16_SC_06_CH1", 
  3481. 							target = 9, 
  3482. 							type = TYPE_BUTTON, 
  3483. 						}, 
  3484. 						[2] = { 
  3485. 							label = "COL_TXT_ADV_16_SC_06_CH2", 
  3486. 							target = 10, 
  3487. 							type = TYPE_BUTTON, 
  3488. 						}, 
  3489. 						[3] = { 
  3490. 							label = "COL_TXT_ADV_16_SC_06_CH3", 
  3491. 							target = 12, 
  3492. 							type = TYPE_BUTTON, 
  3493. 						}, 
  3494. 					}, 
  3495. 					sfx = "Neutral", 
  3496. 				},	 
  3497. 				[7] = { 
  3498. 					scenario = "COL_TXT_ADV_16_SC_07", 
  3499. 					image = Image_sets.title, 
  3500. 					choices = { 
  3501. 						[1] = { 
  3502. 							label = "COL_TXT_ADV_RETRY", 
  3503. 							target = 2, 
  3504. 							type = TYPE_BUTTON, 
  3505. 						}, 
  3506. 					}, 
  3507. 					sfx = "Neutral", 
  3508. 				}, 
  3509. 				[8] = { 
  3510. 					scenario = "COL_TXT_ADV_16_SC_08", 
  3511. 					image = Image_sets.title, 
  3512. 					choices = { 
  3513. 						[1] = { 
  3514. 							label = "COL_TXT_ADV_RETRY", 
  3515. 							target = 2, 
  3516. 							type = TYPE_BUTTON, 
  3517. 						}, 
  3518. 					}, 
  3519. 					sfx = "Neutral", 
  3520. 				}, 
  3521. 				[9] = { 
  3522. 					scenario = "COL_TXT_ADV_16_SC_09", 
  3523. 					image = Image_sets.title, 
  3524. 					choices = { 
  3525. 						[1] = { 
  3526. 							label = "COL_TXT_ADV_RETRY", 
  3527. 							target = 6, 
  3528. 							type = TYPE_BUTTON, 
  3529. 						}, 
  3530. 					}, 
  3531. 					sfx = "Neutral", 
  3532. 				}, 
  3533. 				[10] = { 
  3534. 					scenario = "COL_TXT_ADV_16_SC_10", 
  3535. 					image = Image_sets.title, 
  3536. 					choices = { 
  3537. 						[1] = { 
  3538. 							label = "COL_TXT_ADV_NEXT", 
  3539. 							target = 11, 
  3540. 							type = TYPE_BUTTON, 
  3541. 						}, 
  3542. 					}, 
  3543. 					sfx = "Neutral", 
  3544. 				}, 
  3545. 				[11] = { 
  3546. 					scenario = "COL_TXT_ADV_16_SC_11", 
  3547. 					image = Image_sets.title, 
  3548. 					choices = { 
  3549. 						[1] = { 
  3550. 							label = "COL_TXT_ADV_16_SC_11_CH1", 
  3551. 							target = 13, 
  3552. 							type = TYPE_BUTTON, 
  3553. 						}, 
  3554. 						[2] = { 
  3555. 							label = "COL_TXT_ADV_16_SC_11_CH2", 
  3556. 							target = 16, 
  3557. 							type = TYPE_BUTTON, 
  3558. 						}, 
  3559. 						[3] = { 
  3560. 							label = "COL_TXT_ADV_16_SC_11_CH3", 
  3561. 							target = 17, 
  3562. 							type = TYPE_BUTTON, 
  3563. 						}, 
  3564. 					}, 
  3565. 					sfx = "Neutral", 
  3566. 				},	 
  3567. 				[12] = { 
  3568. 					scenario = "COL_TXT_ADV_16_SC_12", 
  3569. 					image = Image_sets.title, 
  3570. 					choices = { 
  3571. 						[1] = { 
  3572. 							label = "COL_TXT_ADV_RETRY", 
  3573. 							target = 6, 
  3574. 							type = TYPE_BUTTON, 
  3575. 						}, 
  3576. 					}, 
  3577. 					sfx = "Neutral", 
  3578. 				}, 
  3579. 				[13] = { 
  3580. 					scenario = "COL_TXT_ADV_16_SC_13", 
  3581. 					image = Image_sets.title, 
  3582. 					choices = { 
  3583. 						[1] = { 
  3584. 							label = "COL_TXT_ADV_NEXT", 
  3585. 							target = 14, 
  3586. 							type = TYPE_BUTTON, 
  3587. 						}, 
  3588. 					}, 
  3589. 					sfx = "Neutral", 
  3590. 				}, 
  3591. 				[14] = { 
  3592. 					scenario = "COL_TXT_ADV_16_SC_14", 
  3593. 					image = Image_sets.title, 
  3594. 					choices = { 
  3595. 						[1] = { 
  3596. 							label = "COL_TXT_ADV_NEXT", 
  3597. 							target = 15, 
  3598. 							type = TYPE_BUTTON, 
  3599. 						}, 
  3600. 					}, 
  3601. 					sfx = "Neutral", 
  3602. 				}, 
  3603. 				[15] = { 
  3604. 					scenario = "COL_TXT_ADV_16_SC_15", 
  3605. 					image = Image_sets.title, 
  3606. 					choices = { 
  3607. 						[1] = { 
  3608. 							label = "COL_TXT_ADV_END", 
  3609. 							target = -1, 
  3610. 							type = TYPE_BUTTON, 
  3611. 						}, 
  3612. 					}, 
  3613. 					sfx = "Neutral", 
  3614. 				}, 
  3615. 				[16] = { 
  3616. 					scenario = "COL_TXT_ADV_16_SC_16", 
  3617. 					image = Image_sets.title, 
  3618. 					choices = { 
  3619. 						[1] = { 
  3620. 							label = "COL_TXT_ADV_RETRY", 
  3621. 							target = 11, 
  3622. 							type = TYPE_BUTTON, 
  3623. 						}, 
  3624. 					}, 
  3625. 					sfx = "Neutral", 
  3626. 				}, 
  3627. 				[17] = { 
  3628. 					scenario = "COL_TXT_ADV_16_SC_17", 
  3629. 					image = Image_sets.title, 
  3630. 					choices = { 
  3631. 						[1] = { 
  3632. 							label = "COL_TXT_ADV_RETRY", 
  3633. 							target = 11, 
  3634. 							type = TYPE_BUTTON, 
  3635. 						}, 
  3636. 					}, 
  3637. 					sfx = "Neutral", 
  3638. 				}, 
  3639. 			} 
  3640. 			--------------------------------- 
  3641. 		elseif Cur_text_adv == 17 then 
  3642. 			Data = { 
  3643. 				[1] = { 
  3644. 					scenario = "COL_TXT_ADV_17_SC_01", 
  3645. 					image = Image_sets.title, 
  3646. 					choices = { 
  3647. 						[1] = { 
  3648. 							label = "COL_TXT_ADV_NEXT", 
  3649. 							target = 2, 
  3650. 							type = TYPE_BUTTON, 
  3651. 						}, 
  3652. 					}, 
  3653. 					sfx = "Scenario", 
  3654. 				}, 
  3655. 				[2] = { 
  3656. 					scenario = "COL_TXT_ADV_17_SC_02", 
  3657. 					image = Image_sets.title, 
  3658. 					choices = { 
  3659. 						[1] = { 
  3660. 							label = "COL_TXT_ADV_17_SC_02_CH1", 
  3661. 							target = 3, 
  3662. 							type = TYPE_BUTTON, 
  3663. 						}, 
  3664. 						[2] = { 
  3665. 							label = "COL_TXT_ADV_17_SC_02_CH2", 
  3666. 							target = 4, 
  3667. 							type = TYPE_BUTTON, 
  3668. 						}, 
  3669. 						[3] = { 
  3670. 							label = "COL_TXT_ADV_17_SC_02_CH3", 
  3671. 							target = 5, 
  3672. 							type = TYPE_BUTTON, 
  3673. 						}, 
  3674. 					}, 
  3675. 					sfx = "Neutral", 
  3676. 				},	 
  3677. 				[3] = { 
  3678. 					scenario = "COL_TXT_ADV_17_SC_03", 
  3679. 					image = Image_sets.title, 
  3680. 					choices = { 
  3681. 						[1] = { 
  3682. 							label = "COL_TXT_ADV_RETRY", 
  3683. 							target = 2, 
  3684. 							type = TYPE_BUTTON, 
  3685. 						}, 
  3686. 					}, 
  3687. 					sfx = "Neutral", 
  3688. 				}, 
  3689. 				[4] = { 
  3690. 					scenario = "COL_TXT_ADV_17_SC_04", 
  3691. 					image = Image_sets.title, 
  3692. 					choices = { 
  3693. 						[1] = { 
  3694. 							label = "COL_TXT_ADV_17_SC_04_CH1", 
  3695. 							target = 6, 
  3696. 							type = TYPE_BUTTON, 
  3697. 						}, 
  3698. 						[2] = { 
  3699. 							label = "COL_TXT_ADV_17_SC_04_CH2", 
  3700. 							target = 8, 
  3701. 							type = TYPE_BUTTON, 
  3702. 						}, 
  3703. 						[3] = { 
  3704. 							label = "COL_TXT_ADV_17_SC_04_CH3", 
  3705. 							target = 9, 
  3706. 							type = TYPE_BUTTON, 
  3707. 						}, 
  3708. 					}, 
  3709. 					sfx = "Neutral", 
  3710. 				},	 
  3711. 				[5] = { 
  3712. 					scenario = "COL_TXT_ADV_17_SC_05", 
  3713. 					image = Image_sets.title, 
  3714. 					choices = { 
  3715. 						[1] = { 
  3716. 							label = "COL_TXT_ADV_RETRY", 
  3717. 							target = 2, 
  3718. 							type = TYPE_BUTTON, 
  3719. 						}, 
  3720. 					}, 
  3721. 					sfx = "Neutral", 
  3722. 				}, 
  3723. 				[6] = { 
  3724. 					scenario = "COL_TXT_ADV_17_SC_06", 
  3725. 					image = Image_sets.title, 
  3726. 					choices = { 
  3727. 						[1] = { 
  3728. 							label = "COL_TXT_ADV_NEXT", 
  3729. 							target = 7, 
  3730. 							type = TYPE_BUTTON, 
  3731. 						}, 
  3732. 					}, 
  3733. 					sfx = "Neutral", 
  3734. 				}, 
  3735. 				[7] = { 
  3736. 					scenario = "COL_TXT_ADV_17_SC_07", 
  3737. 					image = Image_sets.title, 
  3738. 					choices = { 
  3739. 						[1] = { 
  3740. 							label = "COL_TXT_ADV_17_SC_07_CH1", 
  3741. 							target = 10, 
  3742. 							type = TYPE_BUTTON, 
  3743. 						}, 
  3744. 						[2] = { 
  3745. 							label = "COL_TXT_ADV_17_SC_07_CH2", 
  3746. 							target = 11, 
  3747. 							type = TYPE_BUTTON, 
  3748. 						}, 
  3749. 						[3] = { 
  3750. 							label = "COL_TXT_ADV_17_SC_07_CH3", 
  3751. 							target = 12, 
  3752. 							type = TYPE_BUTTON, 
  3753. 						}, 
  3754. 					}, 
  3755. 					sfx = "Neutral", 
  3756. 				},	 
  3757. 				[8] = { 
  3758. 					scenario = "COL_TXT_ADV_17_SC_08", 
  3759. 					image = Image_sets.title, 
  3760. 					choices = { 
  3761. 						[1] = { 
  3762. 							label = "COL_TXT_ADV_RETRY", 
  3763. 							target = 4, 
  3764. 							type = TYPE_BUTTON, 
  3765. 						}, 
  3766. 					}, 
  3767. 					sfx = "Neutral", 
  3768. 				}, 
  3769. 				[9] = { 
  3770. 					scenario = "COL_TXT_ADV_17_SC_09", 
  3771. 					image = Image_sets.title, 
  3772. 					choices = { 
  3773. 						[1] = { 
  3774. 							label = "COL_TXT_ADV_RETRY", 
  3775. 							target = 4, 
  3776. 							type = TYPE_BUTTON, 
  3777. 						}, 
  3778. 					}, 
  3779. 					sfx = "Neutral", 
  3780. 				}, 
  3781. 				[10] = { 
  3782. 					scenario = "COL_TXT_ADV_17_SC_10", 
  3783. 					image = Image_sets.title, 
  3784. 					choices = { 
  3785. 						[1] = { 
  3786. 							label = "COL_TXT_ADV_RETRY", 
  3787. 							target = 7, 
  3788. 							type = TYPE_BUTTON, 
  3789. 						}, 
  3790. 					}, 
  3791. 					sfx = "Neutral", 
  3792. 				}, 
  3793. 				[11] = { 
  3794. 					scenario = "COL_TXT_ADV_17_SC_11", 
  3795. 					image = Image_sets.title, 
  3796. 					choices = { 
  3797. 						[1] = { 
  3798. 							label = "COL_TXT_ADV_RETRY", 
  3799. 							target = 7, 
  3800. 							type = TYPE_BUTTON, 
  3801. 						}, 
  3802. 					}, 
  3803. 					sfx = "Neutral", 
  3804. 				}, 
  3805. 				[12] = { 
  3806. 					scenario = "COL_TXT_ADV_17_SC_12", 
  3807. 					image = Image_sets.title, 
  3808. 					choices = { 
  3809. 						[1] = { 
  3810. 							label = "COL_TXT_ADV_NEXT", 
  3811. 							target = 13, 
  3812. 							type = TYPE_BUTTON, 
  3813. 						}, 
  3814. 					}, 
  3815. 					sfx = "Neutral", 
  3816. 				}, 
  3817. 				[13] = { 
  3818. 					scenario = "COL_TXT_ADV_17_SC_13", 
  3819. 					image = Image_sets.title, 
  3820. 					choices = { 
  3821. 						[1] = { 
  3822. 							label = "COL_TXT_ADV_NEXT", 
  3823. 							target = 14, 
  3824. 							type = TYPE_BUTTON, 
  3825. 						}, 
  3826. 					}, 
  3827. 					sfx = "Neutral", 
  3828. 				}, 
  3829. 				[14] = { 
  3830. 					scenario = "COL_TXT_ADV_17_SC_14", 
  3831. 					image = Image_sets.title, 
  3832. 					choices = { 
  3833. 						[1] = { 
  3834. 							label = "COL_TXT_ADV_NEXT", 
  3835. 							target = 15, 
  3836. 							type = TYPE_BUTTON, 
  3837. 						}, 
  3838. 					}, 
  3839. 					sfx = "Neutral", 
  3840. 				}, 
  3841. 				[15] = { 
  3842. 					scenario = "COL_TXT_ADV_17_SC_15", 
  3843. 					image = Image_sets.title, 
  3844. 					choices = { 
  3845. 						[1] = { 
  3846. 							label = "COL_TXT_ADV_17_SC_15_CH1", 
  3847. 							target = 16, 
  3848. 							type = TYPE_BUTTON, 
  3849. 						}, 
  3850. 						[2] = { 
  3851. 							label = "COL_TXT_ADV_17_SC_15_CH2", 
  3852. 							target = 17, 
  3853. 							type = TYPE_BUTTON, 
  3854. 						}, 
  3855. 						[3] = { 
  3856. 							label = "COL_TXT_ADV_17_SC_15_CH3", 
  3857. 							target = 18, 
  3858. 							type = TYPE_BUTTON, 
  3859. 						}, 
  3860. 					}, 
  3861. 					sfx = "Neutral", 
  3862. 				},	 
  3863. 				[16] = { 
  3864. 					scenario = "COL_TXT_ADV_17_SC_16", 
  3865. 					image = Image_sets.title, 
  3866. 					choices = { 
  3867. 						[1] = { 
  3868. 							label = "COL_TXT_ADV_RETRY", 
  3869. 							target = 15, 
  3870. 							type = TYPE_BUTTON, 
  3871. 						}, 
  3872. 					}, 
  3873. 					sfx = "Neutral", 
  3874. 				}, 
  3875. 				[17] = { 
  3876. 					scenario = "COL_TXT_ADV_17_SC_17", 
  3877. 					image = Image_sets.title, 
  3878. 					choices = { 
  3879. 						[1] = { 
  3880. 							label = "COL_TXT_ADV_RETRY", 
  3881. 							target = 15, 
  3882. 							type = TYPE_BUTTON, 
  3883. 						}, 
  3884. 					}, 
  3885. 					sfx = "Neutral", 
  3886. 				}, 
  3887. 				[18] = { 
  3888. 					scenario = "COL_TXT_ADV_17_SC_18", 
  3889. 					image = Image_sets.title, 
  3890. 					choices = { 
  3891. 						[1] = { 
  3892. 							label = "COL_TXT_ADV_NEXT", 
  3893. 							target = 19, 
  3894. 							type = TYPE_BUTTON, 
  3895. 						}, 
  3896. 					}, 
  3897. 					sfx = "Neutral", 
  3898. 				}, 
  3899. 				[19] = { 
  3900. 					scenario = "COL_TXT_ADV_17_SC_19", 
  3901. 					image = Image_sets.title, 
  3902. 					choices = { 
  3903. 						[1] = { 
  3904. 							label = "COL_TXT_ADV_NEXT", 
  3905. 							target = 20, 
  3906. 							type = TYPE_BUTTON, 
  3907. 						}, 
  3908. 					}, 
  3909. 					sfx = "Neutral", 
  3910. 				}, 
  3911. 				[20] = { 
  3912. 					scenario = "COL_TXT_ADV_17_SC_20", 
  3913. 					image = Image_sets.title, 
  3914. 					choices = { 
  3915. 						[1] = { 
  3916. 							label = "COL_TXT_ADV_NEXT", 
  3917. 							target = 21, 
  3918. 							type = TYPE_BUTTON, 
  3919. 						}, 
  3920. 					}, 
  3921. 					sfx = "Neutral", 
  3922. 				}, 
  3923. 				[21] = { 
  3924. 					scenario = "COL_TXT_ADV_17_SC_21", 
  3925. 					image = Image_sets.title, 
  3926. 					choices = { 
  3927. 						[1] = { 
  3928. 							label = "COL_TXT_ADV_END", 
  3929. 							target = -1, 
  3930. 							type = TYPE_BUTTON, 
  3931. 						}, 
  3932. 					}, 
  3933. 					sfx = "Neutral", 
  3934. 				}, 
  3935. 			} 
  3936. 		--------------------------------- 
  3937. 		elseif Cur_text_adv == 18 then 
  3938. 			Data = { 
  3939. 				[1] = { 
  3940. 					scenario = "COL_TXT_ADV_18_SC_01", 
  3941. 					image = Image_sets.title, 
  3942. 					choices = { 
  3943. 						[1] = { 
  3944. 							label = "COL_TXT_ADV_NEXT", 
  3945. 							target = 2, 
  3946. 							type = TYPE_BUTTON, 
  3947. 						}, 
  3948. 					}, 
  3949. 					sfx = "Scenario", 
  3950. 				}, 
  3951. 				[2] = { 
  3952. 					scenario = "COL_TXT_ADV_18_SC_02", 
  3953. 					image = Image_sets.title, 
  3954. 					choices = { 
  3955. 						[1] = { 
  3956. 							label = "COL_TXT_ADV_18_SC_02_CH1", 
  3957. 							target = 3, 
  3958. 							type = TYPE_BUTTON, 
  3959. 						}, 
  3960. 						[2] = { 
  3961. 							label = "COL_TXT_ADV_18_SC_02_CH2", 
  3962. 							target = 4, 
  3963. 							type = TYPE_BUTTON, 
  3964. 						}, 
  3965. 						[3] = { 
  3966. 							label = "COL_TXT_ADV_18_SC_02_CH3", 
  3967. 							target = 5, 
  3968. 							type = TYPE_BUTTON, 
  3969. 						}, 
  3970. 					}, 
  3971. 					sfx = "Neutral", 
  3972. 				},	 
  3973. 				[3] = { 
  3974. 					scenario = "COL_TXT_ADV_18_SC_03", 
  3975. 					image = Image_sets.title, 
  3976. 					choices = { 
  3977. 						[1] = { 
  3978. 							label = "COL_TXT_ADV_RETRY", 
  3979. 							target = 2, 
  3980. 							type = TYPE_BUTTON, 
  3981. 						}, 
  3982. 					}, 
  3983. 					sfx = "Neutral", 
  3984. 				}, 
  3985. 				[4] = { 
  3986. 					scenario = "COL_TXT_ADV_18_SC_04", 
  3987. 					image = Image_sets.title, 
  3988. 					choices = { 
  3989. 						[1] = { 
  3990. 							label = "COL_TXT_ADV_RETRY", 
  3991. 							target = 2, 
  3992. 							type = TYPE_BUTTON, 
  3993. 						}, 
  3994. 					}, 
  3995. 					sfx = "Neutral", 
  3996. 				}, 
  3997. 				[5] = { 
  3998. 					scenario = "COL_TXT_ADV_18_SC_05", 
  3999. 					image = Image_sets.title, 
  4000. 					choices = { 
  4001. 						[1] = { 
  4002. 							label = "COL_TXT_ADV_NEXT", 
  4003. 							target = 6, 
  4004. 							type = TYPE_BUTTON, 
  4005. 						}, 
  4006. 					}, 
  4007. 					sfx = "Neutral", 
  4008. 				}, 
  4009. 				[6] = { 
  4010. 					scenario = "COL_TXT_ADV_18_SC_06", 
  4011. 					image = Image_sets.title, 
  4012. 					choices = { 
  4013. 						[1] = { 
  4014. 							label = "COL_TXT_ADV_18_SC_06_CH1", 
  4015. 							target = 7, 
  4016. 							type = TYPE_BUTTON, 
  4017. 						}, 
  4018. 						[2] = { 
  4019. 							label = "COL_TXT_ADV_18_SC_06_CH2", 
  4020. 							target = 8, 
  4021. 							type = TYPE_BUTTON, 
  4022. 						}, 
  4023. 						[3] = { 
  4024. 							label = "COL_TXT_ADV_18_SC_06_CH3", 
  4025. 							target = 9, 
  4026. 							type = TYPE_BUTTON, 
  4027. 						}, 
  4028. 					}, 
  4029. 					sfx = "Neutral", 
  4030. 				},	 
  4031. 				[7] = { 
  4032. 					scenario = "COL_TXT_ADV_18_SC_07", 
  4033. 					image = Image_sets.title, 
  4034. 					choices = { 
  4035. 						[1] = { 
  4036. 							label = "COL_TXT_ADV_RETRY", 
  4037. 							target = 6, 
  4038. 							type = TYPE_BUTTON, 
  4039. 						}, 
  4040. 					}, 
  4041. 					sfx = "Neutral", 
  4042. 				}, 
  4043. 				[8] = { 
  4044. 					scenario = "COL_TXT_ADV_18_SC_08", 
  4045. 					image = Image_sets.title, 
  4046. 					choices = { 
  4047. 						[1] = { 
  4048. 							label = "COL_TXT_ADV_RETRY", 
  4049. 							target = 6, 
  4050. 							type = TYPE_BUTTON, 
  4051. 						}, 
  4052. 					}, 
  4053. 					sfx = "Neutral", 
  4054. 				}, 
  4055. 				[9] = { 
  4056. 					scenario = "COL_TXT_ADV_18_SC_09", 
  4057. 					image = Image_sets.title, 
  4058. 					choices = { 
  4059. 						[1] = { 
  4060. 							label = "COL_TXT_ADV_NEXT", 
  4061. 							target = 10, 
  4062. 							type = TYPE_BUTTON, 
  4063. 						}, 
  4064. 					}, 
  4065. 					sfx = "Neutral", 
  4066. 				}, 
  4067. 				[10] = { 
  4068. 					scenario = "COL_TXT_ADV_18_SC_10", 
  4069. 					image = Image_sets.title, 
  4070. 					choices = { 
  4071. 						[1] = { 
  4072. 							label = "COL_TXT_ADV_18_SC_10_CH1", 
  4073. 							target = 11, 
  4074. 							type = TYPE_BUTTON, 
  4075. 						}, 
  4076. 						[2] = { 
  4077. 							label = "COL_TXT_ADV_18_SC_10_CH2", 
  4078. 							target = 12, 
  4079. 							type = TYPE_BUTTON, 
  4080. 						}, 
  4081. 						[3] = { 
  4082. 							label = "COL_TXT_ADV_18_SC_10_CH3", 
  4083. 							target = 14, 
  4084. 							type = TYPE_BUTTON, 
  4085. 						}, 
  4086. 					}, 
  4087. 					sfx = "Neutral", 
  4088. 				},	 
  4089. 				[11] = { 
  4090. 					scenario = "COL_TXT_ADV_18_SC_11", 
  4091. 					image = Image_sets.title, 
  4092. 					choices = { 
  4093. 						[1] = { 
  4094. 							label = "COL_TXT_ADV_RETRY", 
  4095. 							target = 10, 
  4096. 							type = TYPE_BUTTON, 
  4097. 						}, 
  4098. 					}, 
  4099. 					sfx = "Neutral", 
  4100. 				}, 
  4101. 				[12] = { 
  4102. 					scenario = "COL_TXT_ADV_18_SC_12", 
  4103. 					image = Image_sets.title, 
  4104. 					choices = { 
  4105. 						[1] = { 
  4106. 							label = "COL_TXT_ADV_NEXT", 
  4107. 							target = 13, 
  4108. 							type = TYPE_BUTTON, 
  4109. 						}, 
  4110. 					}, 
  4111. 					sfx = "Neutral", 
  4112. 				}, 
  4113. 				[13] = { 
  4114. 					scenario = "COL_TXT_ADV_18_SC_13", 
  4115. 					image = Image_sets.title, 
  4116. 					choices = { 
  4117. 						[1] = { 
  4118. 							label = "COL_TXT_ADV_18_SC_13_CH1", 
  4119. 							target = 15, 
  4120. 							type = TYPE_BUTTON, 
  4121. 						}, 
  4122. 						[2] = { 
  4123. 							label = "COL_TXT_ADV_18_SC_13_CH2", 
  4124. 							target = 16, 
  4125. 							type = TYPE_BUTTON, 
  4126. 						}, 
  4127. 						[3] = { 
  4128. 							label = "COL_TXT_ADV_18_SC_13_CH3", 
  4129. 							target = 17, 
  4130. 							type = TYPE_BUTTON, 
  4131. 						}, 
  4132. 					}, 
  4133. 					sfx = "Neutral", 
  4134. 				},	 
  4135. 				[14] = { 
  4136. 					scenario = "COL_TXT_ADV_18_SC_14", 
  4137. 					image = Image_sets.title, 
  4138. 					choices = { 
  4139. 						[1] = { 
  4140. 							label = "COL_TXT_ADV_RETRY", 
  4141. 							target = 10, 
  4142. 							type = TYPE_BUTTON, 
  4143. 						}, 
  4144. 					}, 
  4145. 					sfx = "Neutral", 
  4146. 				}, 
  4147. 				[15] = { 
  4148. 					scenario = "COL_TXT_ADV_18_SC_15", 
  4149. 					image = Image_sets.title, 
  4150. 					choices = { 
  4151. 						[1] = { 
  4152. 							label = "COL_TXT_ADV_RETRY", 
  4153. 							target = 13, 
  4154. 							type = TYPE_BUTTON, 
  4155. 						}, 
  4156. 					}, 
  4157. 					sfx = "Neutral", 
  4158. 				}, 
  4159. 				[16] = { 
  4160. 					scenario = "COL_TXT_ADV_18_SC_16", 
  4161. 					image = Image_sets.title, 
  4162. 					choices = { 
  4163. 						[1] = { 
  4164. 							label = "COL_TXT_ADV_RETRY", 
  4165. 							target = 13, 
  4166. 							type = TYPE_BUTTON, 
  4167. 						}, 
  4168. 					}, 
  4169. 					sfx = "Neutral", 
  4170. 				}, 
  4171. 				[17] = { 
  4172. 					scenario = "COL_TXT_ADV_18_SC_17", 
  4173. 					image = Image_sets.title, 
  4174. 					choices = { 
  4175. 						[1] = { 
  4176. 							label = "COL_TXT_ADV_NEXT", 
  4177. 							target = 18, 
  4178. 							type = TYPE_BUTTON, 
  4179. 						}, 
  4180. 					}, 
  4181. 					sfx = "Neutral", 
  4182. 				}, 
  4183. 				[18] = { 
  4184. 					scenario = "COL_TXT_ADV_18_SC_18", 
  4185. 					image = Image_sets.title, 
  4186. 					choices = { 
  4187. 						[1] = { 
  4188. 							label = "COL_TXT_ADV_NEXT", 
  4189. 							target = 19, 
  4190. 							type = TYPE_BUTTON, 
  4191. 						}, 
  4192. 					}, 
  4193. 					sfx = "Neutral", 
  4194. 				}, 
  4195. 				[19] = { 
  4196. 					scenario = "COL_TXT_ADV_18_SC_19", 
  4197. 					image = Image_sets.title, 
  4198. 					choices = { 
  4199. 						[1] = { 
  4200. 							label = "COL_TXT_ADV_18_SC_19_CH1", 
  4201. 							target = 20, 
  4202. 							type = TYPE_BUTTON, 
  4203. 						}, 
  4204. 						[2] = { 
  4205. 							label = "COL_TXT_ADV_18_SC_19_CH2", 
  4206. 							target = 21, 
  4207. 							type = TYPE_BUTTON, 
  4208. 						}, 
  4209. 						[3] = { 
  4210. 							label = "COL_TXT_ADV_18_SC_19_CH3", 
  4211. 							target = 26, 
  4212. 							type = TYPE_BUTTON, 
  4213. 						}, 
  4214. 					}, 
  4215. 					sfx = "Neutral", 
  4216. 				},	 
  4217. 				[20] = { 
  4218. 					scenario = "COL_TXT_ADV_18_SC_20", 
  4219. 					image = Image_sets.title, 
  4220. 					choices = { 
  4221. 						[1] = { 
  4222. 							label = "COL_TXT_ADV_RETRY", 
  4223. 							target = 19, 
  4224. 							type = TYPE_BUTTON, 
  4225. 						}, 
  4226. 					}, 
  4227. 					sfx = "Neutral", 
  4228. 				}, 
  4229. 				[21] = { 
  4230. 					scenario = "COL_TXT_ADV_18_SC_21", 
  4231. 					image = Image_sets.title, 
  4232. 					choices = { 
  4233. 						[1] = { 
  4234. 							label = "COL_TXT_ADV_NEXT", 
  4235. 							target = 22, 
  4236. 							type = TYPE_BUTTON, 
  4237. 						}, 
  4238. 					}, 
  4239. 					sfx = "Neutral", 
  4240. 				}, 
  4241. 				[22] = { 
  4242. 					scenario = "COL_TXT_ADV_18_SC_22", 
  4243. 					image = Image_sets.title, 
  4244. 					choices = { 
  4245. 						[1] = { 
  4246. 							label = "COL_TXT_ADV_NEXT", 
  4247. 							target = 23, 
  4248. 							type = TYPE_BUTTON, 
  4249. 						}, 
  4250. 					}, 
  4251. 					sfx = "Neutral", 
  4252. 				}, 
  4253. 				[23] = { 
  4254. 					scenario = "COL_TXT_ADV_18_SC_23", 
  4255. 					image = Image_sets.title, 
  4256. 					choices = { 
  4257. 						[1] = { 
  4258. 							label = "COL_TXT_ADV_NEXT", 
  4259. 							target = 24, 
  4260. 							type = TYPE_BUTTON, 
  4261. 						}, 
  4262. 					}, 
  4263. 					sfx = "Neutral", 
  4264. 				}, 
  4265. 				[24] = { 
  4266. 					scenario = "COL_TXT_ADV_18_SC_24", 
  4267. 					image = Image_sets.title, 
  4268. 					choices = { 
  4269. 						[1] = { 
  4270. 							label = "COL_TXT_ADV_NEXT", 
  4271. 							target = 25, 
  4272. 							type = TYPE_BUTTON, 
  4273. 						}, 
  4274. 					}, 
  4275. 					sfx = "Neutral", 
  4276. 				}, 
  4277. 				[25] = { 
  4278. 					scenario = "COL_TXT_ADV_18_SC_25", 
  4279. 					image = Image_sets.title, 
  4280. 					choices = { 
  4281. 						[1] = { 
  4282. 							label = "COL_TXT_ADV_18_SC_25_CH1", 
  4283. 							target = -1, 
  4284. 							type = TYPE_BUTTON, 
  4285. 						}, 
  4286. 					}, 
  4287. 					sfx = "Neutral", 
  4288. 				}, 
  4289. 				[26] = { 
  4290. 					scenario = "COL_TXT_ADV_18_SC_26", 
  4291. 					image = Image_sets.title, 
  4292. 					choices = { 
  4293. 						[1] = { 
  4294. 							label = "COL_TXT_ADV_RETRY", 
  4295. 							target = 19, 
  4296. 							type = TYPE_BUTTON, 
  4297. 						}, 
  4298. 					}, 
  4299. 					sfx = "Neutral", 
  4300. 				}, 
  4301. 			} 
  4302. 		------------------------------ 
  4303. 		--Xmas Letters to Santa 
  4304. 		------------------------------ 
  4305. 		elseif Cur_text_adv == 21 then 
  4306. 			Data = { 
  4307. 				[1] = { 
  4308. 					scenario = "COL_LETTER_PIERCE_01", 
  4309. 					image = Image_sets.title, 
  4310. 					choices = { 
  4311. 						[1] = { 
  4312. 							label = "COL_TXT_ADV_NEXT", 
  4313. 							target = 2, 
  4314. 							type = TYPE_BUTTON, 
  4315. 						}, 
  4316. 					}, 
  4317. 					sfx = "Neutral", 
  4318. 				}, 
  4319. 				[2] = { 
  4320. 					scenario = "COL_LETTER_PIERCE_02", 
  4321. 					image = Image_sets.title, 
  4322. 					choices = { 
  4323. 						[1] = { 
  4324. 							label = "COL_TXT_ADV_NEXT", 
  4325. 							target = 3, 
  4326. 							type = TYPE_BUTTON, 
  4327. 						}, 
  4328. 					}, 
  4329. 					sfx = "Neutral", 
  4330. 				}, 
  4331. 				[3] = { 
  4332. 					scenario = "COL_LETTER_PIERCE_03", 
  4333. 					image = Image_sets.title, 
  4334. 					choices = { 
  4335. 						[1] = { 
  4336. 							label = "COL_TXT_ADV_NEXT", 
  4337. 							target = -1, 
  4338. 							type = TYPE_BUTTON, 
  4339. 						}, 
  4340. 					}, 
  4341. 					sfx = "Neutral", 
  4342. 				}, 
  4343. 			} 
  4344. 		elseif Cur_text_adv == 22 then 
  4345. 			Data = { 
  4346. 				[1] = { 
  4347. 					scenario = "COL_LETTER_KINZIE_01", 
  4348. 					image = Image_sets.title, 
  4349. 					choices = { 
  4350. 						[1] = { 
  4351. 							label = "COL_TXT_ADV_NEXT", 
  4352. 							target = 2, 
  4353. 							type = TYPE_BUTTON, 
  4354. 						}, 
  4355. 					}, 
  4356. 					sfx = "Neutral", 
  4357. 				}, 
  4358. 				[2] = { 
  4359. 					scenario = "COL_LETTER_KINZIE_02", 
  4360. 					image = Image_sets.title, 
  4361. 					choices = { 
  4362. 						[1] = { 
  4363. 							label = "COL_TXT_ADV_NEXT", 
  4364. 							target = 3, 
  4365. 							type = TYPE_BUTTON, 
  4366. 						}, 
  4367. 					}, 
  4368. 					sfx = "Neutral", 
  4369. 				}, 
  4370. 				[3] = { 
  4371. 					scenario = "COL_LETTER_KINZIE_03", 
  4372. 					image = Image_sets.title, 
  4373. 					choices = { 
  4374. 						[1] = { 
  4375. 							label = "COL_TXT_ADV_NEXT", 
  4376. 							target = 4, 
  4377. 							type = TYPE_BUTTON, 
  4378. 						}, 
  4379. 					}, 
  4380. 					sfx = "Neutral", 
  4381. 				}, 
  4382. 				[4] = { 
  4383. 					scenario = "COL_LETTER_KINZIE_04", 
  4384. 					image = Image_sets.title, 
  4385. 					choices = { 
  4386. 						[1] = { 
  4387. 							label = "COL_TXT_ADV_NEXT", 
  4388. 							target = -1, 
  4389. 							type = TYPE_BUTTON, 
  4390. 						}, 
  4391. 					}, 
  4392. 					sfx = "Neutral", 
  4393. 				}, 
  4394. 			} 
  4395. 		elseif Cur_text_adv == 23 then 
  4396. 			Data = { 
  4397. 				[1] = { 
  4398. 					scenario = "COL_LETTER_ASHA_01", 
  4399. 					image = Image_sets.title, 
  4400. 					choices = { 
  4401. 						[1] = { 
  4402. 							label = "COL_TXT_ADV_NEXT", 
  4403. 							target = 2, 
  4404. 							type = TYPE_BUTTON, 
  4405. 						}, 
  4406. 					}, 
  4407. 					sfx = "Neutral", 
  4408. 				}, 
  4409. 				[2] = { 
  4410. 					scenario = "COL_LETTER_ASHA_02", 
  4411. 					image = Image_sets.title, 
  4412. 					choices = { 
  4413. 						[1] = { 
  4414. 							label = "COL_TXT_ADV_NEXT", 
  4415. 							target = -1, 
  4416. 							type = TYPE_BUTTON, 
  4417. 						}, 
  4418. 					}, 
  4419. 					sfx = "Neutral", 
  4420. 				}, 
  4421. 			} 
  4422. 		elseif Cur_text_adv == 24 then 
  4423. 			Data = { 
  4424. 				[1] = { 
  4425. 					scenario = "COL_LETTER_CID_01", 
  4426. 					image = Image_sets.title, 
  4427. 					choices = { 
  4428. 						[1] = { 
  4429. 							label = "COL_TXT_ADV_NEXT", 
  4430. 							target = 2, 
  4431. 							type = TYPE_BUTTON, 
  4432. 						}, 
  4433. 					}, 
  4434. 					sfx = "Neutral", 
  4435. 				}, 
  4436. 				[2] = { 
  4437. 					scenario = "COL_LETTER_CID_02", 
  4438. 					image = Image_sets.title, 
  4439. 					choices = { 
  4440. 						[1] = { 
  4441. 							label = "COL_TXT_ADV_NEXT", 
  4442. 							target = 3, 
  4443. 							type = TYPE_BUTTON, 
  4444. 						}, 
  4445. 					}, 
  4446. 					sfx = "Neutral", 
  4447. 				}, 
  4448. 				[3] = { 
  4449. 					scenario = "COL_LETTER_CID_03", 
  4450. 					image = Image_sets.title, 
  4451. 					choices = { 
  4452. 						[1] = { 
  4453. 							label = "COL_TXT_ADV_NEXT", 
  4454. 							target = -1, 
  4455. 							type = TYPE_BUTTON, 
  4456. 						}, 
  4457. 					}, 
  4458. 					sfx = "Neutral", 
  4459. 				}, 
  4460. 			} 
  4461. 		elseif Cur_text_adv == 25 then 
  4462. 			Data = { 
  4463. 				[1] = { 
  4464. 					scenario = "COL_LETTER_GAT_01", 
  4465. 					image = Image_sets.title, 
  4466. 					choices = { 
  4467. 						[1] = { 
  4468. 							label = "COL_TXT_ADV_NEXT", 
  4469. 							target = 2, 
  4470. 							type = TYPE_BUTTON, 
  4471. 						}, 
  4472. 					}, 
  4473. 					sfx = "Neutral", 
  4474. 				}, 
  4475. 				[2] = { 
  4476. 					scenario = "COL_LETTER_GAT_02", 
  4477. 					image = Image_sets.title, 
  4478. 					choices = { 
  4479. 						[1] = { 
  4480. 							label = "COL_TXT_ADV_NEXT", 
  4481. 							target = 3, 
  4482. 							type = TYPE_BUTTON, 
  4483. 						}, 
  4484. 					}, 
  4485. 					sfx = "Neutral", 
  4486. 				}, 
  4487. 				[3] = { 
  4488. 					scenario = "COL_LETTER_GAT_03", 
  4489. 					image = Image_sets.title, 
  4490. 					choices = { 
  4491. 						[1] = { 
  4492. 							label = "COL_TXT_ADV_NEXT", 
  4493. 							target = -1, 
  4494. 							type = TYPE_BUTTON, 
  4495. 						}, 
  4496. 					}, 
  4497. 					sfx = "Neutral", 
  4498. 				}, 
  4499. 			} 
  4500. 		elseif Cur_text_adv == 26 then 
  4501. 			Data = { 
  4502. 				[1] = { 
  4503. 					scenario = "COL_LETTER_KING_01", 
  4504. 					image = Image_sets.title, 
  4505. 					choices = { 
  4506. 						[1] = { 
  4507. 							label = "COL_TXT_ADV_NEXT", 
  4508. 							target = 2, 
  4509. 							type = TYPE_BUTTON, 
  4510. 						}, 
  4511. 					}, 
  4512. 					sfx = "Neutral", 
  4513. 				}, 
  4514. 				[2] = { 
  4515. 					scenario = "COL_LETTER_KING_02", 
  4516. 					image = Image_sets.title, 
  4517. 					choices = { 
  4518. 						[1] = { 
  4519. 							label = "COL_TXT_ADV_NEXT", 
  4520. 							target = 3, 
  4521. 							type = TYPE_BUTTON, 
  4522. 						}, 
  4523. 					}, 
  4524. 					sfx = "Neutral", 
  4525. 				}, 
  4526. 				[3] = { 
  4527. 					scenario = "COL_LETTER_KING_03", 
  4528. 					image = Image_sets.title, 
  4529. 					choices = { 
  4530. 						[1] = { 
  4531. 							label = "COL_TXT_ADV_NEXT", 
  4532. 							target = -1, 
  4533. 							type = TYPE_BUTTON, 
  4534. 						}, 
  4535. 					}, 
  4536. 					sfx = "Neutral", 
  4537. 				}, 
  4538. 			} 
  4539. 		elseif Cur_text_adv == 27 then 
  4540. 			Data = { 
  4541. 				[1] = { 
  4542. 					scenario = "COL_LETTER_SHAUNDI_01", 
  4543. 					image = Image_sets.title, 
  4544. 					choices = { 
  4545. 						[1] = { 
  4546. 							label = "COL_TXT_ADV_NEXT", 
  4547. 							target = 2, 
  4548. 							type = TYPE_BUTTON, 
  4549. 						}, 
  4550. 					}, 
  4551. 					sfx = "Neutral", 
  4552. 				}, 
  4553. 				[2] = { 
  4554. 					scenario = "COL_LETTER_SHAUNDI_02", 
  4555. 					image = Image_sets.title, 
  4556. 					choices = { 
  4557. 						[1] = { 
  4558. 							label = "COL_TXT_ADV_NEXT", 
  4559. 							target = 3, 
  4560. 							type = TYPE_BUTTON, 
  4561. 						}, 
  4562. 					}, 
  4563. 					sfx = "Neutral", 
  4564. 				}, 
  4565. 				[3] = { 
  4566. 					scenario = "COL_LETTER_SHAUNDI_03", 
  4567. 					image = Image_sets.title, 
  4568. 					choices = { 
  4569. 						[1] = { 
  4570. 							label = "COL_TXT_ADV_NEXT", 
  4571. 							target = 4, 
  4572. 							type = TYPE_BUTTON, 
  4573. 						}, 
  4574. 					}, 
  4575. 					sfx = "Neutral", 
  4576. 				}, 
  4577. 				[4] = { 
  4578. 					scenario = "COL_LETTER_SHAUNDI_04", 
  4579. 					image = Image_sets.title, 
  4580. 					choices = { 
  4581. 						[1] = { 
  4582. 							label = "COL_TXT_ADV_NEXT", 
  4583. 							target = -1, 
  4584. 							type = TYPE_BUTTON, 
  4585. 						}, 
  4586. 					}, 
  4587. 					sfx = "Neutral", 
  4588. 				}, 
  4589. 			} 
  4590. 		elseif Cur_text_adv == 28 then 
  4591. 			Data = { 
  4592. 				[1] = { 
  4593. 					scenario = "COL_LETTER_MATT_01", 
  4594. 					image = Image_sets.title, 
  4595. 					choices = { 
  4596. 						[1] = { 
  4597. 							label = "COL_TXT_ADV_NEXT", 
  4598. 							target = 2, 
  4599. 							type = TYPE_BUTTON, 
  4600. 						}, 
  4601. 					}, 
  4602. 					sfx = "Neutral", 
  4603. 				}, 
  4604. 				[2] = { 
  4605. 					scenario = "COL_LETTER_MATT_02", 
  4606. 					image = Image_sets.title, 
  4607. 					choices = { 
  4608. 						[1] = { 
  4609. 							label = "COL_TXT_ADV_NEXT", 
  4610. 							target = 3, 
  4611. 							type = TYPE_BUTTON, 
  4612. 						}, 
  4613. 					}, 
  4614. 					sfx = "Neutral", 
  4615. 				}, 
  4616. 				[3] = { 
  4617. 					scenario = "COL_LETTER_MATT_03", 
  4618. 					image = Image_sets.title, 
  4619. 					choices = { 
  4620. 						[1] = { 
  4621. 							label = "COL_TXT_ADV_NEXT", 
  4622. 							target = -1, 
  4623. 							type = TYPE_BUTTON, 
  4624. 						}, 
  4625. 					}, 
  4626. 					sfx = "Neutral", 
  4627. 				}, 
  4628. 			} 
  4629. 		elseif Cur_text_adv == 29 then 
  4630. 			Data = { 
  4631. 				[1] = { 
  4632. 					scenario = "COL_LETTER_KEITH_01", 
  4633. 					image = Image_sets.title, 
  4634. 					choices = { 
  4635. 						[1] = { 
  4636. 							label = "COL_TXT_ADV_NEXT", 
  4637. 							target = -1, 
  4638. 							type = TYPE_BUTTON, 
  4639. 						}, 
  4640. 					}, 
  4641. 					sfx = "Neutral", 
  4642. 				}, 
  4643. 			} 
  4644. 		elseif Cur_text_adv == 30 then 
  4645. 			Data = { 
  4646. 				[1] = { 
  4647. 					scenario = "COL_LETTER_BOSS_01", 
  4648. 					image = Image_sets.title, 
  4649. 					choices = { 
  4650. 						[1] = { 
  4651. 							label = "COL_TXT_ADV_NEXT", 
  4652. 							target = 2, 
  4653. 							type = TYPE_BUTTON, 
  4654. 						}, 
  4655. 					}, 
  4656. 					sfx = "Neutral", 
  4657. 				}, 
  4658. 				[2] = { 
  4659. 					scenario = "COL_LETTER_BOSS_02", 
  4660. 					image = Image_sets.title, 
  4661. 					choices = { 
  4662. 						[1] = { 
  4663. 							label = "COL_TXT_ADV_NEXT", 
  4664. 							target = 3, 
  4665. 							type = TYPE_BUTTON, 
  4666. 						}, 
  4667. 					}, 
  4668. 					sfx = "Neutral", 
  4669. 				}, 
  4670. 				[3] = { 
  4671. 					scenario = "COL_LETTER_BOSS_03", 
  4672. 					image = Image_sets.title, 
  4673. 					choices = { 
  4674. 						[1] = { 
  4675. 							label = "COL_TXT_ADV_NEXT", 
  4676. 							target = 4, 
  4677. 							type = TYPE_BUTTON, 
  4678. 						}, 
  4679. 					}, 
  4680. 					sfx = "Neutral", 
  4681. 				}, 
  4682. 				[4] = { 
  4683. 					scenario = "COL_LETTER_BOSS_04", 
  4684. 					image = Image_sets.title, 
  4685. 					choices = { 
  4686. 						[1] = { 
  4687. 							label = "COL_TXT_ADV_NEXT", 
  4688. 							target = -1, 
  4689. 							type = TYPE_BUTTON, 
  4690. 						}, 
  4691. 					}, 
  4692. 					sfx = "Neutral", 
  4693. 				}, 
  4694. 			} 
  4695. 		end 
  4696. 	 
  4697. 	col_text_adventure_update(Data) 
  4698. end 
  4699.  
  4700. function col_text_adventure_cleanup() 
  4701. 	for i = 1, #Text_buffer do 
  4702. 		Text_buffer[i]:object_destroy() 
  4703. 	end 
  4704. 	 
  4705. 	Input_tracker:subscribe(false) 
  4706. 	if Mouse_input_tracker ~= nil then 
  4707. 		Mouse_input_tracker:subscribe(false) 
  4708. 	end 
  4709. 	 
  4710. end 
  4711.  
  4712. function col_text_adventure_update(data) 
  4713. 	local base_text = vint_object_find("base_txt", 0, Col_text_adventure_doc_handle) 
  4714. 	vint_set_property(base_text, "visible", false) 
  4715. 	 
  4716. 	--If we're on the first page play typing audio 
  4717. 	if Cur_scen == 1 then 
  4718. 		audio_stop(Cur_audio_id) 
  4719. 		Cur_audio_id = audio_object_post_event("Text_Adventure", "Mission_16_Text_Adventure", Data[Cur_scen].sfx) 
  4720. 	end 
  4721. 	 
  4722. 	--Make current text first in the queue 
  4723. 	if Text_buffer[1] ~= nil then 
  4724. 		for i = Max_text_buffer_length, 1, -1 do 
  4725. 			if Text_buffer[i] ~= nil then 
  4726. 				Text_buffer[i+1] = Text_buffer[i] 
  4727. 			end 
  4728. 		end 
  4729. 	end 
  4730.  
  4731. 	Text_buffer[1] = Vdo_base_object:clone(base_text)	 
  4732. 	Text_buffer[1]:set_text(data[Cur_scen].scenario)	 
  4733. 	Text_buffer[1]:set_visible(true) 
  4734. 	 
  4735. 	--grant acheivement for completing xmas text adv 
  4736. 	if data[Cur_scen].scenario == "COL_TXT_ADV_18_SC_25" then 
  4737. 		game_award_achievement("A World without Christmas") 
  4738. 	end 
  4739. 	 
  4740. 	 
  4741. 	local move_width, move_height = Text_buffer[1]:get_actual_size() 
  4742. 	 
  4743. 	local text_x, text_y  
  4744.  
  4745. 	--Scroll text up if text exist 
  4746. 	if Text_buffer[2] ~= nil then 
  4747. 		text_x, text_y = Text_buffer[2]:get_anchor() 
  4748. 		Text_buffer[2]:set_anchor(text_x, text_y - move_height) 
  4749. 		Text_buffer[2]:set_color(COLOR_TEXT_ADVENTURE_TERTIARY.R,COLOR_TEXT_ADVENTURE_TERTIARY.G,COLOR_TEXT_ADVENTURE_TERTIARY.B) 
  4750. 		 
  4751. 		--hide last choice if its a letter 
  4752. 		if Cur_text_adv >= 21 then 
  4753. 			Text_buffer[2]:set_visible(false) 
  4754. 		end 
  4755. 		--Delete items that go off the screen 
  4756. 		if text_y < -200 then 
  4757. 			Text_buffer[2]:object_destroy() 
  4758. 		end 
  4759. 	end 
  4760. 	 
  4761. 	--Populate megalist	 
  4762. 	Col_text_adventure_list:draw_items(data[Cur_scen].choices, 1, Screen_width, 4, LIST_SCALE, true, false) 
  4763. 		 
  4764. 	--Update inputs if on pc... 
  4765. 	if game_get_platform() == "PC" then 
  4766. 		Mouse_input_tracker:remove_all() 
  4767. 		Col_text_adventure_list:add_mouse_inputs("col_text_adventure", Mouse_input_tracker) 
  4768. 		Hint_bar:add_mouse_inputs("col_text_adventure", Mouse_input_tracker) 
  4769. 		Mouse_input_tracker:subscribe(true) 
  4770. 	end 
  4771. end 
  4772.  
  4773. function col_text_adventure_button_b(event, acceleration) 
  4774. 	pop_screen() 
  4775. end 
  4776.  
  4777. function col_text_adventure_button_a(event, acceleration) 
  4778. 	if Col_text_adventure_list:list_is_playing() == false then 
  4779. 		--What choice did they pick? 
  4780. 		local user_choice = Col_text_adventure_list:get_selection() 
  4781. 		local previous_scen = Cur_scen 
  4782. 		 
  4783. 		--Set cur_scene to target 
  4784. 		Cur_scen = Data[Cur_scen].choices[user_choice].target 
  4785. 		 
  4786. 		if Cur_scen == -1 then 
  4787. 			--col_text_adventure_set_screen(35) -- count the success as a 35th screen 
  4788. 			pop_screen() 
  4789. 			return 
  4790. 		end 
  4791. 		 
  4792. 		--col_text_adventure_set_screen(Cur_scen) 
  4793. 		 
  4794. 		audio_stop(Cur_audio_id) 
  4795. 		Cur_audio_id = audio_object_post_event("Text_Adventure", "Mission_16_Text_Adventure", Data[Cur_scen].sfx) 
  4796. 			 
  4797. 		--What is the string for that choice? 
  4798. 		Action = Col_text_adventure_list:return_selected_data() 
  4799. 		 
  4800. 		Text_buffer[1]:set_text(Action.label) 
  4801. 		 
  4802. 		if Text_buffer[2] ~= nil then 
  4803. 			Text_buffer[2]:object_destroy() 
  4804. 		end 
  4805. 		 
  4806. 		--Update text 
  4807. 		col_text_adventure_update(Data) 
  4808. 	end	 
  4809. end 
  4810.  
  4811. function col_text_adventure_nav_up(event, acceleration) 
  4812. 	Col_text_adventure_list:move_cursor(-1) 
  4813. 	Cur_audio_id = audio_object_post_event("Text_Adventure", "Mission_16_Text_Adventure", "Navigation") 
  4814. end 
  4815.  
  4816. function col_text_adventure_nav_down(event, acceleration) 
  4817. 	Col_text_adventure_list:move_cursor(1) 
  4818. 	Cur_audio_id = audio_object_post_event("Text_Adventure", "Mission_16_Text_Adventure", "Navigation") 
  4819. end 
  4820.  
  4821. ------------------------------------------------------------------------------- 
  4822. -- Mouse inputs 
  4823. -- 
  4824.  
  4825. function col_text_adventure_mouse_click(event, target_handle) 
  4826. 	if Col_text_adventure_list:list_is_playing() == false then 
  4827. 		--Click item in megalist... 
  4828. 		local new_index = Col_text_adventure_list:get_button_index(target_handle) 
  4829. 		if new_index ~= 0 then 
  4830. 			-- Enter an option if the target_handle is in the List 
  4831. 			Col_text_adventure_list:set_selection(new_index) 
  4832. 			col_text_adventure_button_a() 
  4833. 		end 
  4834. 	end 
  4835. 	 
  4836. 	local hint_index = Hint_bar:get_hint_index(target_handle) 
  4837. 	if hint_index == 1 then 
  4838. 		col_text_adventure_button_b() 
  4839. 	end 
  4840. 	 
  4841. end 
  4842.  
  4843. function col_text_adventure_mouse_move(event, target_handle) 
  4844. 	if Col_text_adventure_list:list_is_playing() == false then 
  4845. 		--nav item in megalist... 
  4846. 		local new_index = Col_text_adventure_list:get_button_index(target_handle) 
  4847. 		if new_index ~= 0 then 
  4848. 			-- Set the button as the new selected highlight 
  4849. 			Col_text_adventure_list:set_selection(new_index) 
  4850. 			Col_text_adventure_list:move_cursor(0, true) 
  4851. 		end 
  4852. 	end 
  4853. 	 
  4854. 	Hint_bar:set_highlight(0) 
  4855. 	 
  4856. 	local hint_index = Hint_bar:get_hint_index(target_handle) 
  4857. 	if hint_index ~= 0 then 
  4858. 		Hint_bar:set_highlight(hint_index) 
  4859. 	end 
  4860. 	 
  4861. end 
  4862.