//#include "SHORTCUTT_6a_dlg.h" #include "cutscene_common.cs" // global variables int ce01, ce04, ce11, player; void main() { LoadScene("se01"); //fade in Fade(0, 0, 0, 1, 0, 0, 0, 0, 1, 1); //show movie border ShowMovieBorder("movie", 120); // spawn chara and set initial position ce01= SpawnMale(-1347.6, 4153.9, 727.2); SetCharaWeapon(ce01, 0); ce04= SpawnFemale(-1277.4, 4119, 730.6); SetCharaWeapon(ce04, 0); ce11= SpawnChara("CE11", -1300.3, 4105, 728.5);//-1278, 4123, 765); SetCharaWeapon(ce11, 0); // Set chara initial direction SetEntityDir(ce01, 0.6, -0.8, 0); SetEntityDir(ce04, -0.8, 0.6, 0); SetEntityDir(ce11, -0.5, 0.8, 0); // get player and hide acZaras player = GetPlayerChara(); ShowEntity(ce01, 1); ShowEntity(ce04, 1); ShowEntity(ce11, 1); // delete acZaras and resZarae player after end cutscene ActorList(ce01); ActorList(ce04); ActorList(ce11); SetCharaStyle(ce11, 1); SetCharaStyle(ce04, 1); LookChara(ce01, ce11); LookChara(ce04, ce01); LookChara(ce11, ce01); //Set Cam initial----------------------- //SetCamPos(-1296, 4130.1, 757.2); //SetCamDir(276.3, 16.3, 0); SetCamPos(-1349.2, 4174.5, 735.3); SetCamDir(299.9, 18.7, 0); Sleep(0.5); //Q1 I am pleased. You have been practicing! BeginFadeImg("cs_ce11", 30, 30, 180, 90, 1, 1, 0.5); BeginText(SHORTCUTT_6a_Q1a, 210, 60, 1.5); PlayVoice("T-8_qi_001"); WaitVoiceUntil(); EndText(SHORTCUTT_6a_Q1a, 0.5); EndFadeImg("cs_ce11", 0.5); Sleep(0.5); //------------------------------------ SetCamPos(-1251, 4119.8, 768.8); SetCamDir(177.9, 342.8, 0); Sleep(0.5); PlayPose(ce01, 1103, 1.2); //K1b Me? I'm just a natural acrobat! BeginFadeImg(PhotoMale, 30, 485, 180, 90, 1, 1, 0.5); BeginText(SHORTCUTT_6a_K1b, 210, 515, 1.5); PlayVoice("t-8_kai_003"); WaitVoiceUntil(); EndText(SHORTCUTT_6a_K1b, 0.5); EndFadeImg(PhotoMale, 0.5); //fade out Fade(0, 0, 0, 0, 0, 0, 0, 1, 2, 1); Sleep(2); //end TheEnd(); }