usamamanzoor

LifeInWoodChester tara 7-5 working on dialogue 35

Mar 10th, 2021 (edited)
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.44 KB | None | 0 0
  1. function sc_sl_tara_7_5() {
  2. if (live_call()) return live_result;
  3.  
  4. if (event_goto == "tara/7-5") {
  5.  
  6. if (vngen_event("tara/7-5")) {
  7.  
  8. vngen_script_execute_ext(dlg_load_sequence, "tara/scene7-5");
  9. vngen_scene_create("BGgrocery", InsideGasStation, 960, 540, 1, false, false, trans_fade, .2);
  10.  
  11.  
  12.  
  13. //Create Tara Character
  14. char2_sx = view_width*.3;
  15. char2_sy = view_height*.9;
  16. char2_z = 0;
  17. char2_offset_x = 1292;
  18. char2_offset_y = 485;
  19. char2_offset_mouth_x = 0;
  20. char2_offset_mouth_y = 127;
  21. char2_offset_brows_x = -10;
  22. char2_offset_brows_y = -42;
  23. char2_scale = .65*global.gui_scale
  24. vngen_char_create_ext(global.tara_name, sTaraPoseIdle, none, none, orig_center, orig_center, char2_sx, char2_sy, char2_z, 0, 0, scale_none, false, 0, trans_slide_right, 0, ease_circ_out);
  25. vngen_char_modify_pos(global.tara_name, char2_sx-400, char2_sy+100, char2_z+500, char2_scale*.6, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  26. vngen_char_deform_start(global.tara_name, def_breathe, 3.35, true, false);
  27. vngen_attach_create_ext(global.tara_name,"brows",sTaraBrowsIdle,orig_center,orig_center,char2_offset_x+char2_offset_brows_x,char2_offset_y+char2_offset_brows_y,-2,-1,trans_none,0,0);
  28. vngen_attach_create_ext(global.tara_name,"eyes",sTaraEyesOpenStraight,orig_center,orig_center,char2_offset_x,char2_offset_y,0,-1,trans_none,0,0);
  29. vngen_attach_create_ext(global.tara_name,"mouth",sTaraMouthOpen_idle,orig_center,orig_center,char2_offset_x+char2_offset_mouth_x,char2_offset_y+char2_offset_mouth_y,0,-1,trans_none,0,0);
  30.  
  31. //Create Main Character
  32. char_sx = view_width*.4;
  33. char_sy = view_height*.9;
  34. char_z = 0;
  35. char_offset_x = 917;
  36. char_offset_y = 497;//497;
  37. char_offset_mouth_x = 20;
  38. char_offset_mouth_y = 145;
  39. char_offset_brows_x = 0;
  40. char_offset_brows_y = -42;
  41. char_scale = .50*global.gui_scale
  42. vngen_char_create_ext(global.player_name, sProtagPoseIdle, none, none, orig_center, orig_center, char_sx, char_sy, char_z, 0, 0, scale_none, true, 0, trans_slide_left, vn_trans_dur, ease_circ_out);
  43. vngen_char_modify_pos(global.player_name, char_sx+800, char_sy-100, char_z, char_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  44. vngen_char_deform_start(global.player_name, def_breathe, 3.35, true, false);
  45. vngen_attach_create_ext(global.player_name,"brows",sProtagBrowsIdle,orig_center,orig_center,char_offset_x+char_offset_brows_x,char_offset_y+char_offset_brows_y,-2,-1,trans_none,0,0);
  46. vngen_attach_create_ext(global.player_name,"eyes",sProtagEyesOpenStraight,orig_center,orig_center,char_offset_x,char_offset_y,0,-1,trans_none,0,0);
  47. vngen_attach_create_ext(global.player_name,"mouth",sProtagMouthIdle,orig_center,orig_center,char_offset_x+char_offset_mouth_x,char_offset_y+char_offset_mouth_y,0,-1,trans_none,0,0);
  48.  
  49.  
  50. scrSetupDialogue();
  51. }
  52.  
  53. if (vngen_event()) {
  54.  
  55. dlg_vngen_text("0",true)
  56. }
  57.  
  58. if (vngen_event()) {
  59. vngen_char_replace_ext(global.player_name,previous,sProtagPoseHandBehind, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  60. vngen_attach_replace(global.player_name,"eyes",sProtagEyesOpenYou,0);
  61. dlg_vngen_text("1")
  62. }
  63.  
  64. if (vngen_event()) {
  65. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseArmsCrossed, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0.5, ease_none)
  66. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesHalfDown,0);
  67. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  68. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthUh,0);
  69. vngen_char_replace_ext(global.player_name,previous,sProtagPoseThinking, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  70. vngen_attach_replace(global.player_name,"eyes",sProtagEyesOpenBack,0);
  71. vngen_attach_replace(global.player_name,"mouth",sProtagMouthUh,0);
  72.  
  73. dlg_vngen_text("2")
  74.  
  75. }
  76. if (vngen_event()) {
  77. dlg_vngen_text("3")
  78. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  79. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesOpenStraight,0);
  80. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  81. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthIdle,0);
  82. vngen_char_replace_ext(global.player_name,previous,sProtagPosePockets, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  83. vngen_attach_replace(global.player_name,"eyes",sProtagEyesOpenYou,0);
  84. vngen_attach_replace(global.player_name,"mouth",sProtagMouthOpen_smile,0);
  85.  
  86. }
  87.  
  88. if (vngen_event()) {
  89. dlg_vngen_text("4")
  90.  
  91. vngen_char_replace_ext(global.player_name,previous,sProtagPoseHandBehind, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  92. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  93. vngen_attach_replace(global.player_name,"mouth",sProtagMouthOpen_idle,0);
  94.  
  95.  
  96.  
  97. }
  98. if (vngen_event()) {
  99. dlg_vngen_text("5")
  100. //Create DW Character
  101. char4_sx = view_width*.2;
  102. char4_sy = (view_height*.5);
  103. char4_z = 0;
  104. char4_offset_x = 1065;
  105. char4_offset_y = 1115;
  106. char4_offset_mouth_x = 25;
  107. char4_offset_mouth_y = 200;
  108. char4_offset_brows_x = 25;
  109. char4_offset_brows_y = -55;
  110. char4_scale = global.gui_scale/3;
  111. vngen_char_create_ext("TallBully", sTallBullyIdle, none, none, orig_center, orig_center, char4_sx, char4_sy, char4_z, 0, 0, scale_none, true, 0, trans_slide_right, 0, ease_circ_out);
  112. //vngen_char_modify_pos("TallBully", char4_sx+50, char4_sy+100, char4_z, char4_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  113. vngen_char_deform_start("TallBully", def_breathe, 3.35, true, false);
  114. vngen_attach_create_ext("TallBully","brows",sTallBullyBrowsIdle,orig_center,orig_center,char4_offset_x+char4_offset_brows_x,char4_offset_y+char4_offset_brows_y,-2,-1,trans_none,0,0);
  115. vngen_attach_create_ext("TallBully","eyes",sTallBullyEyesOpenStraight,orig_center,orig_center,char4_offset_x,char4_offset_y,0,-1,trans_none,0,0);
  116. vngen_attach_create_ext("TallBully","mouth",sTallBullyMouthGrin,orig_center,orig_center,char4_offset_x+char4_offset_mouth_x,char4_offset_y+char4_offset_mouth_y,0,-1,trans_none,0,0);
  117. vngen_attach_create_ext("TallBully","hair",sBullyMohawk,orig_center,orig_center,char4_offset_x-50,char4_offset_y-375,0,-1,trans_none,0,0);
  118. vngen_char_modify_pos("TallBully", char4_sx+500, char4_sy-100, char4_z, char4_scale*.5, 0, 0);
  119. //Create AH Character
  120. char3_sx = view_width*.1;
  121. char3_sy = (view_height*.5);
  122. char3_z = 0;
  123. char3_offset_x = 1095;
  124. char3_offset_y = 950;
  125. char3_offset_mouth_x = 50;
  126. char3_offset_mouth_y = 100;
  127. char3_offset_brows_x = -10;
  128. char3_offset_brows_y = -42;
  129. char3_scale = global.gui_scale/3;
  130. vngen_char_create_ext("ShortBully", sShortBullyIdle, none, none, orig_center, orig_center, char3_sx, char3_sy, char3_z, 0, 0, scale_none, false, 0, trans_slide_right, 0, ease_circ_out);
  131. //vngen_char_modify_pos("ShortBully", char3_sx+1200, char3_sy, char3_z, char3_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  132. vngen_char_deform_start("ShortBully", def_breathe, 3.35, true, false);
  133. vngen_attach_create_ext("ShortBully","brows",sShortBullyBrowIdle,orig_center,orig_center,char3_offset_x+char3_offset_brows_x,char3_offset_y+char3_offset_brows_y,-2,-1,trans_none,0,0);
  134. vngen_attach_create_ext("ShortBully","eyes",sShortBullyEyesOpenStraight,orig_center,orig_center,char3_offset_x,char3_offset_y,0,-1,trans_none,0,0);
  135. vngen_attach_create_ext("ShortBully","mouth",sShortBullyMouthUh,orig_center,orig_center,char3_offset_x+char3_offset_mouth_x,char3_offset_y+char3_offset_mouth_y,0,-1,trans_none,0,0);
  136. vngen_char_modify_pos("ShortBully", char3_sx+850, char3_sy-100, char3_z, char3_scale*.5, 0, 0);
  137. vngen_perspective_modify_pos(0,0,0,-450,2.8,0,1,2,ease_quint);
  138.  
  139.  
  140. }
  141.  
  142.  
  143. if (vngen_event()) {
  144. vngen_attach_replace("TallBully","mouth",sTallBullyMouthSmile,0);
  145. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSmile,0);
  146.  
  147. dlg_vngen_text("6")
  148.  
  149. }
  150.  
  151. if (vngen_event()) {
  152. dlg_vngen_text("7")
  153. //vngen_char_modify_pos("ShortBully", char3_sx+1000 , char3_sy+100, char3_z, char3_scale, 5, 1,ease_quint);
  154. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthDrool,0);
  155. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  156. vngen_attach_replace("ShortBully","brows",sShortBullyBrowRaised,0);
  157. //vngen_char_replace_ext("ShortBully",previous,sShortBullyIdle, none, none, orig_center, orig_center, 0, 0, scale_none, true, 0, 0.1,ease_quint);
  158. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  159. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  160. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  161.  
  162. }
  163. if (vngen_event()) {
  164. dlg_vngen_text("8")
  165. vngen_attach_replace("TallBully","mouth",sTallBullyMouthSmile,0);
  166. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfStraight,0);
  167. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  168.  
  169.  
  170. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  171. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenUp,0);
  172. vngen_attach_replace("ShortBully","brows",sShortBullyBrowRaised,0);
  173. }
  174.  
  175. if (vngen_event()) {
  176. dlg_vngen_text("9")
  177. vngen_attach_replace("TallBully","mouth",sTallBullyMouthLow_uh,0);
  178. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenUp,0);
  179. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  180.  
  181. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  182. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenUp,0);
  183. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  184. }
  185. if (vngen_event()) {
  186. dlg_vngen_text("10")
  187. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  188. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenStraight,0);
  189. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  190.  
  191. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthIdle,0);
  192. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenUp,0);
  193. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  194. }
  195. if (vngen_event()) {
  196. dlg_vngen_text("11")
  197. vngen_attach_replace("TallBully","mouth",sTallBullyMouthSmile,0);
  198. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenStraight,0);
  199. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  200.  
  201. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  202. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  203. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  204. }
  205.  
  206. if (vngen_event()) {
  207. dlg_vngen_text("12")
  208. vngen_attach_replace("TallBully","mouth",sTallBullyMouthSmile,0);
  209. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenStraight,0);
  210. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  211.  
  212. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  213. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  214. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  215. }
  216. if (vngen_event()) {
  217. dlg_vngen_text("13")
  218. //zoomout
  219. vngen_perspective_modify_pos(0,0,+100,-150,1.1,0,1,2,ease_quint);
  220. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  221. vngen_char_modify_pos(global.tara_name, char2_sx-350, char2_sy+450, char2_z+500, char2_scale*.6, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  222.  
  223.  
  224. }
  225. if (vngen_event()) {
  226. dlg_vngen_text("14")
  227. //zoom to DW
  228. vngen_perspective_modify_pos(0,0,0,-450,2.8,0,1,1,ease_quint);
  229. //tara
  230. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  231. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  232. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthUh,0);
  233.  
  234. //ethan
  235. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  236. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  237. vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  238. //DW
  239. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  240. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  241. vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  242.  
  243. //AH
  244. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_idle,0);
  245. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  246. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  247.  
  248. }
  249.  
  250. if (vngen_event()) {
  251. dlg_vngen_text("15")
  252.  
  253.  
  254. //tara
  255. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  256. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  257. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthUh,0);
  258.  
  259. //ethan
  260. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  261. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  262. vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  263. //DW
  264. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  265. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  266. vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  267.  
  268. //AH
  269. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  270. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  271. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  272.  
  273. }
  274.  
  275. if (vngen_event()) {
  276. dlg_vngen_text("16")
  277. //zoomout
  278. vngen_perspective_modify_pos(0,0,+100,-150,1.1,0,1,2,ease_quint);
  279. //tara
  280. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  281. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideUp,0);
  282. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  283. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthUh,0);
  284.  
  285. //ethan
  286. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  287. vngen_attach_replace(global.player_name,"eyes",sProtagEyesOpenBack,0);
  288. vngen_attach_replace(global.player_name,"mouth",sProtagMouthNeutralSmile,0);
  289. //DW
  290. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  291. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  292. vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  293.  
  294. //AH
  295. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthTongue,0);
  296. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  297. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  298.  
  299. }
  300.  
  301. if (vngen_event()) {
  302. dlg_vngen_text("17")
  303. //tara
  304. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  305. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesHalfLowered,0);
  306. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsFlat,0);
  307. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  308.  
  309. //ethan
  310. vngen_char_replace_ext(global.player_name,previous,sProtagPosePockets, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  311. vngen_attach_replace(global.player_name,"eyes",sProtagEyesHalfYou,0);
  312. vngen_attach_replace(global.player_name,"mouth",sProtagMouthLow_uh,0);
  313. //DW
  314. vngen_attach_replace("TallBully","mouth",sTallBullyMouthdissapoint,0);
  315. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenRight,0);
  316. vngen_attach_replace("TallBully","brows",sTallBullyBrowsFlat,0);
  317.  
  318. //AH
  319. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  320. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenDown,0);
  321. vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  322.  
  323. }
  324.  
  325. if (vngen_event()) {
  326. dlg_vngen_text("18")
  327. //tara
  328. //vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  329. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  330. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  331. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthIdle,0);
  332.  
  333. ////ethan
  334. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  335. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  336. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  337.  
  338. ////DW
  339. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  340. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  341. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  342.  
  343. ////AH
  344. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_idle,0);
  345. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  346. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  347.  
  348. }
  349.  
  350. if (vngen_event()) {
  351. dlg_vngen_text("19")
  352. //tara
  353. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  354. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  355. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  356. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthOpen_idle,0);
  357.  
  358. //ethan
  359. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  360. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  361. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  362. //DW
  363. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  364. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  365. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  366.  
  367. ////AH
  368. //vngen_attach_replace("ShortBully","mouth",sShortBullyMouthTongue,0);
  369. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  370. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  371.  
  372. }
  373.  
  374. if (vngen_event()) {
  375. dlg_vngen_text("20")
  376. ////tara
  377. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseArmsCrossed, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  378. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesHalfStraight,0);
  379. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsFlat,0);
  380. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthOpen_sad,0);
  381.  
  382. ////ethan
  383. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  384. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  385. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  386. ////DW
  387. //vngen_char_modify_pos("TallBully", char4_sx+300, char4_sy-150, char4_z, char4_scale*.6, 0, 1);
  388. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  389. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  390. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  391.  
  392. ////AH
  393. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthDrool,0);
  394. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  395. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  396.  
  397. }
  398.  
  399. if (vngen_event()) {
  400. dlg_vngen_text("21")
  401. //tara
  402. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  403. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  404. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  405. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  406.  
  407. ////ethan
  408. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  409. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  410. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  411. ////DW
  412. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  413. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  414. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  415.  
  416. ////AH
  417. //vngen_attach_replace("ShortBully","mouth",sShortBullyMouthTongue,0);
  418. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  419. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  420.  
  421. }
  422.  
  423. if (vngen_event()) {
  424. dlg_vngen_text("22")
  425. //tara
  426. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  427. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideUp,0);
  428. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  429. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  430.  
  431. ////ethan
  432. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  433. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  434. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  435. ////DW
  436. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  437. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  438. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  439.  
  440. ////AH
  441. //vngen_attach_replace("ShortBully","mouth",sShortBullyMouthTongue,0);
  442. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  443. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  444.  
  445.  
  446. }
  447.  
  448. if (vngen_event()) {
  449. dlg_vngen_text("23")
  450. //zoom to DW
  451. vngen_perspective_modify_pos(0,0,-50,-550,2.8,0,1,1,ease_quint);
  452. //tara
  453. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  454. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  455. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  456. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  457.  
  458. ////ethan
  459. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  460. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  461. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  462. ////DW
  463. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  464. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  465. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  466.  
  467. ////AH
  468. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthLow_uh,0);
  469. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenRight,0);
  470. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  471.  
  472.  
  473. }
  474.  
  475. if (vngen_event()) {
  476. dlg_vngen_text("24")
  477. ////zoom to DW
  478. //vngen_perspective_modify_pos(0,0,-200,-550,2.8,0,1,1,ease_quint);
  479. ////tara
  480. //vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  481. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  482. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  483. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  484.  
  485. //////ethan
  486. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  487. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  488. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  489. ////DW
  490. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  491. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  492. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  493.  
  494. ////AH
  495. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  496. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  497. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  498.  
  499. }
  500.  
  501. if (vngen_event()) {
  502. dlg_vngen_text("25")
  503. //zoomout
  504. vngen_perspective_modify_pos(0,0,+100,-150,1.1,0,1,2,ease_quint);
  505. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, true, 0, 0, ease_none)
  506. vngen_char_modify_pos(global.tara_name, char2_sx-400, char2_sy+100, char2_z+500, char2_scale*.6, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  507. ////tara
  508. //vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  509. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  510. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  511. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  512.  
  513.  
  514. }
  515.  
  516. if (vngen_event()) {
  517. dlg_vngen_text("26")
  518. //tara
  519. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  520. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideUp,0);
  521. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  522. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  523.  
  524. //////ethan
  525. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  526. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  527. vngen_attach_replace(global.player_name,"mouth",sProtagMouthUh,0);
  528. ////DW
  529. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  530. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  531. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  532.  
  533. ////AH
  534. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthIdle,0);
  535. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  536. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  537.  
  538. }
  539.  
  540. if (vngen_event()) {
  541. dlg_vngen_text("27")
  542. ////tara
  543.  
  544. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseArmsCrossed, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  545. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  546. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsIdle,0);
  547. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  548.  
  549. //////ethan
  550. vngen_char_replace_ext(global.player_name,previous,sProtagPoseHandBehind, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  551. vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  552. vngen_attach_replace(global.player_name,"mouth",sProtagMouthLow_uh,0);
  553. ////DW
  554. //try to flip him
  555. vngen_char_replace_ext("TallBully",previous,sTallBullyIdle, none, none, orig_center, orig_center, 0, 0, scale_none, true, 0, 0,ease_none);
  556.  
  557.  
  558. //vngen_char_replace_ext("TallBully", previous, none, none, orig_center, orig_center, char4_sx+300, char4_sy+5, char4_z, 0, 0, char4_scale*.8, true, 0, trans_none, 0, ease_circ_out);
  559.  
  560. vngen_char_modify_pos("TallBully", char4_sx+300, char4_sy+5, char4_z, char4_scale*.8, 0, 2,ease_none);
  561. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  562. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfStraight,0);
  563. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  564.  
  565. ////AH
  566.  
  567. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  568. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  569. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  570.  
  571. }
  572.  
  573. if (vngen_event()) {
  574. dlg_vngen_text("28")
  575. ////tara
  576. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseArmsCrossed, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  577. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  578. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  579. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthSnarl,0);
  580.  
  581. //////ethan
  582. vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  583. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  584. vngen_attach_replace(global.player_name,"mouth",sProtagMouthUh,0);
  585. ////DW
  586. //vngen_attach_replace("TallBully","mouth",sTallBullyMouth,0);
  587. vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfStraight,0);
  588. vngen_attach_replace("TallBully","brows",sTallBullyBrowsFlat,0);
  589.  
  590. ////AH
  591. vngen_char_modify_pos("ShortBully", char3_sx+1000, char3_sy+0, char3_z, char3_scale*.8, 0, 1);
  592. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  593. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenDown,0);
  594. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  595.  
  596. }
  597.  
  598. if (vngen_event()) {
  599. dlg_vngen_text("29")
  600. ////tara
  601. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  602. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesBlinking,0.2);
  603. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsAnger,0);
  604. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  605.  
  606. //////ethan
  607. vngen_char_replace_ext(global.player_name,previous,sProtagPoseHandBehind, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  608. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  609. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthIdle,0);
  610. ////DW
  611. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  612. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesHalfRight,0);
  613. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  614.  
  615. ////AH
  616. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  617. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  618. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  619.  
  620. }
  621.  
  622. if (vngen_event()) {
  623. dlg_vngen_text("30")
  624. ////tara
  625. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  626. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  627. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  628. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  629.  
  630. //////ethan
  631. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  632. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  633. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  634. ////DW
  635. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  636. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  637. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  638.  
  639. ////AH
  640. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  641. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  642. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  643.  
  644. }
  645.  
  646. if (vngen_event()) {
  647. dlg_vngen_text("31")
  648. ////tara
  649. //vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  650. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  651. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  652. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthSnarl,0);
  653.  
  654. //////ethan
  655. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  656. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  657. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  658. ////DW
  659. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  660. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  661. ////vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  662.  
  663. //////AH
  664. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthUh,0);
  665. //vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  666. ////vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  667.  
  668. }
  669.  
  670. if (vngen_event()) {
  671. dlg_vngen_text("32")
  672. ////tara
  673. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  674. //vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  675. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  676. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  677.  
  678. //////ethan
  679. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  680. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  681. vngen_attach_replace(global.player_name,"mouth",sProtagMouthOpen_idle,0);
  682. ////DW
  683. vngen_attach_replace("TallBully","mouth",sTallBullyMouthEhhh,0);
  684. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenRight,0);
  685. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  686.  
  687. ////AH
  688. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthdissapoint,0);
  689. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  690. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  691.  
  692. }
  693.  
  694. if (vngen_event()) {
  695. dlg_vngen_text("33")
  696. ////tara
  697. //vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  698. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideYou,0);
  699. //vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  700. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  701.  
  702. //////ethan
  703. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  704. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  705. //vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  706. ////DW
  707. vngen_attach_replace("TallBully","mouth",sTallBullyMouthGrin,0);
  708. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenL,0);
  709. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  710.  
  711. ////AH
  712. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthOpen_smile,0);
  713. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  714. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  715.  
  716. }
  717.  
  718. if (vngen_event()) {
  719. dlg_vngen_text("34")
  720. ////tara
  721. //vngen_char_modify_pos(global.tara_name, char2_sx-10, char2_sy+100, char2_z+500, char2_scale*.6, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  722.  
  723. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  724. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  725. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  726. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  727.  
  728. //////ethan
  729. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  730. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  731. vngen_char_modify_pos(global.player_name, char_sx+800, char_sy-100, char_z, char_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  732. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  733. ////DW
  734. //vngen_char_modify_pos("TallBully", char4_sx+500, char4_sy-100, char4_z, char4_scale*.5, 0, 0);
  735.  
  736. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  737. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenRight,0);
  738. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  739.  
  740. ////AH
  741. //vngen_char_modify_pos("ShortBully", char3_sx+1200, char3_sy, char3_z, char3_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  742.  
  743. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  744. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  745. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  746.  
  747. }
  748.  
  749. if (vngen_event()) {
  750. dlg_vngen_text("35")
  751. ////tara
  752. //vngen_char_modify_pos(global.tara_name, char2_sx-5, char2_sy+100, char2_z+300, char2_scale*.6, 0, 1); //Use modify_pos for permanent changes, not modify_direct
  753.  
  754. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  755. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  756. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  757. vngen_attach_replace(global.tara_name,"mouth",sTaraMouthBig_ah,0);
  758.  
  759. //////ethan
  760. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  761. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  762. vngen_char_modify_pos(global.player_name, char_sx+800, char_sy-100, char_z, char_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  763. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  764. ////DW
  765. //vngen_char_modify_pos("TallBully", char4_sx+500, char4_sy-250, char4_z, char4_scale*.7, 0, 0);
  766. vngen_char_replace_ext("TallBully",previous,sTallBullyPunched, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  767.  
  768. //vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  769. //vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenRight,0);
  770. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  771.  
  772. ////AH
  773. //vngen_char_modify_pos("ShortBully", char3_sx+1200, char3_sy, char3_z, char3_scale, 0, 0); //Use modify_pos for permanent changes, not modify_direct
  774.  
  775. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthQuiver,0);
  776. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  777. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  778.  
  779.  
  780. }
  781.  
  782. if (vngen_event()) {
  783. dlg_vngen_text("36")
  784. ////tara
  785. vngen_char_modify_pos(global.tara_name, char2_sx+250, char2_sy-300, char2_z, char2_scale*.6, 0, 0.1); //Use modify_pos for permanent changes, not modify_direct
  786.  
  787. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  788. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  789. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  790. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  791.  
  792. //////ethan
  793. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  794. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  795. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  796. ////DW
  797. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  798. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  799. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  800.  
  801. ////AH
  802. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  803. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  804. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  805.  
  806. }
  807.  
  808. if (vngen_event()) {
  809. dlg_vngen_text("37")
  810. ////tara
  811. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  812. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  813. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  814. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  815.  
  816. //////ethan
  817. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  818. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  819. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  820. ////DW
  821. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  822. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  823. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  824.  
  825. ////AH
  826. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  827. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  828. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  829.  
  830. }
  831.  
  832. if (vngen_event()) {
  833. dlg_vngen_text("38")
  834. ////tara
  835. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  836. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  837. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  838. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  839.  
  840. //////ethan
  841. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  842. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  843. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  844. ////DW
  845. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  846. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  847. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  848.  
  849. ////AH
  850. vngen_char_modify_pos("ShortBully", char3_sx-120, char3_sy-100, char3_z+0, char3_scale, 0, 5); //Use modify_pos for permanent changes, not modify_direct
  851.  
  852. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  853. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  854. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  855.  
  856. }
  857.  
  858. if (vngen_event()) {
  859. dlg_vngen_text("39")
  860. ////tara
  861. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  862. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  863. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  864. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  865.  
  866. //////ethan
  867. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  868. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  869. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  870. ////DW
  871. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  872. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  873. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  874.  
  875. ////AH
  876. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  877. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  878. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  879.  
  880. }
  881.  
  882. if (vngen_event()) {
  883. dlg_vngen_text("40")
  884. ////tara
  885. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  886. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  887. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  888. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  889.  
  890. //////ethan
  891. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  892. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  893. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  894. ////DW
  895. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  896. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  897. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  898.  
  899. ////AH
  900. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  901. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  902. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  903.  
  904. }
  905.  
  906. if (vngen_event()) {
  907. dlg_vngen_text("41")
  908. ////tara
  909. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  910. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  911. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  912. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  913.  
  914. //////ethan
  915. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  916. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  917. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  918. ////DW
  919. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  920. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  921. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  922.  
  923. ////AH
  924. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  925. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  926. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  927.  
  928. }
  929.  
  930. if (vngen_event()) {
  931. dlg_vngen_text("42")
  932. ////tara
  933. vngen_char_replace_ext(global.tara_name,previous,sTaraPoseBird, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0, ease_none)
  934. vngen_attach_replace(global.tara_name,"eyes",sTaraEyesWideStraight,0);
  935. vngen_attach_replace(global.tara_name,"brows",sTaraBrowsRaised,0);
  936. //vngen_attach_replace(global.tara_name,"mouth",sTaraMouthEhhh,0);
  937.  
  938. //////ethan
  939. //vngen_char_replace_ext(global.player_name,previous,sProtagPoseIdle, none, none, orig_center, orig_center, 0, 0, scale_none, false, 0, 0,ease_none);
  940. //vngen_attach_replace(global.player_name,"eyes",sProtagEyesWideStraight,0);
  941. vngen_attach_replace(global.player_name,"mouth",sProtagMouthEhhh,0);
  942. ////DW
  943. vngen_attach_replace("TallBully","mouth",sTallBullyMouthUh,0);
  944. vngen_attach_replace("TallBully","eyes",sTallBullyEyesOpenLeft,0);
  945. //vngen_attach_replace("TallBully","brows",sTallBullyBrowsRaised,0);
  946.  
  947. ////AH
  948. vngen_attach_replace("ShortBully","mouth",sShortBullyMouthSad,0);
  949. vngen_attach_replace("ShortBully","eyes",sShortBullyEyesOpenStraight,0);
  950. //vngen_attach_replace("ShortBully","brows",sShortBullyBrowFlat_,0);
  951.  
  952. }
  953.  
  954. if (vngen_event()) {
  955. dlg_vngen_text("43")
  956.  
  957. }
  958.  
  959. if (vngen_event()) {
  960. dlg_vngen_text("44")
  961.  
  962. }
  963.  
  964. if (vngen_event()) {
  965. dlg_vngen_text("44")
  966.  
  967. }
  968.  
  969. if (vngen_event()) {
  970. dlg_vngen_text("45")
  971.  
  972. }
  973.  
  974. if (vngen_event()) {
  975. dlg_vngen_text("46")
  976.  
  977. }
  978.  
  979. if (vngen_event()) {
  980. dlg_vngen_text("47")
  981.  
  982. }
  983.  
  984. if (vngen_event()) {
  985. dlg_vngen_text("48")
  986.  
  987. }
  988.  
  989. if (vngen_event()) {
  990. dlg_vngen_text("49")
  991.  
  992. }
  993.  
  994. if (vngen_event()) {
  995. dlg_vngen_text("50")
  996.  
  997. }
  998.  
  999. if (vngen_event()) {
  1000. dlg_vngen_text("51")
  1001.  
  1002. }
  1003.  
  1004. if (vngen_event()) {
  1005. dlg_vngen_text("52")
  1006.  
  1007. }
  1008.  
  1009. if (vngen_event()) {
  1010. dlg_vngen_text("53")
  1011.  
  1012. }
  1013.  
  1014. if (vngen_event()) {
  1015. dlg_vngen_text("54")
  1016.  
  1017. }
  1018.  
  1019. if (vngen_event()) {
  1020. dlg_vngen_text("55")
  1021.  
  1022. }
  1023.  
  1024. if (vngen_event()) {
  1025. vngen_script_execute(vngen_goto, "ev_cleanup", self, false);
  1026. }
  1027. }
  1028. }
  1029.  
Add Comment
Please, Sign In to add comment