Jump to content

Coding Voice Acting Template For Mata Nui Online Game


Recommended Posts

Long Post Warning!!! So I decided to start a project that almost seems ready to implement. As the title says, I'm making a template for voice acting potential for the game.

The first part for stuff like cut-scenes was actually easy. Providing an SWF file for proof of concept. (yea screwed up one of the lines, but it was shown differently on the de-compiler.)

Second part is a little more tricky. i dug in the code in the dialogue box TexSub.swf there is something i found that might be something.

else if(Segment < CurrentSegments)
   {
      if(OpenIsDone eq "1")
      {
         tellTarget("../../")
         {
            SpeakerText = " ";
            LetterCount = "1";
            Segment += "1";
            InputText = eval("Reply_" add Section add "_" add Segment);
            InputVoice = "Voice_" add Screen add "_" add Section add "_" add Segment add ".swf";
         }
         gotoAndStop(1);
      }
      else
      {
         tellTarget("../../")
         {
            SpeakerText = " ";
            LetterCount = "1";
            Segment += "1";
            InputText = eval("OpenStatement" add Segment);
            InputVoice = "Voice_" add OpenScreen add "_OpenStatement_" add Segment add ".swf";
         }
         gotoAndStop(1);
      }
   }
   else
   {
      tellTarget("../../")
      {
         SpeakerText = " ";
         InputText = AskMe;
         LetterCount = "1";
         InputVoice = "Voice_" add Screen add "_AskMe.swf";
         OpenQBox = "1";

 Now Where the parts where it says "Voice_" I'm finding interesting. Now i know programming, but i don't know Actionscript. (Update: After messing with the code I'm starting to get the concepts.) If anyone can help me solve this thing that would be awsome.

Files i'm using are TexSub.SWF, IV.2A.SWF (Jaller's dialogue file) and Text_IV.2A_eng.txt to get this running.

Episode_4-2_VA.swf

Edited by NuparuDescendant
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...