Board index » General » Trial Minutes

Page 8 of 8[ 297 posts ]
Go to page Previous  1 ... 4, 5, 6, 7, 8
 


Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

Quote:
Yup... I'm just getting Apollo, Phoenix, and Athena back and forth now, but yeah, it happened... *continues clicking to see if she can get it again*

it will happen have faith :damon:
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Programmer

Gender: Male

Location: Sweden

Rank: Bug Sweeper

Joined: Sun Mar 22, 2009 3:25 pm

Posts: 832

Guys, have you considered just extracting the audio streams directly from the file(s) and no longer leaving it to luck?
Currently working on a redesign of cr.net itself! Come talk to me about it on Discord!
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

henke37 wrote:
Guys, have you considered just extracting the audio streams directly from the file(s) and no longer leaving it to luck?


That's a good idea but how do you extract the audio streams from the site?
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Programmer

Gender: Male

Location: Sweden

Rank: Bug Sweeper

Joined: Sun Mar 22, 2009 3:25 pm

Posts: 832

It's a flash movie. Just grab the swf file and use one of the many available resource extractors.

I even dug out the random selector, here are the weights. I am sure you guys understand the Japanese better than I do.
Code:
voice_obj=new Sound();
var rnd=Math.floor(Math.random() * 100) + 1;//random number between 1 and 99
if(!(rnd < 1) && !(rnd > 30))// 29 % chance
{
   _root.charaimg.gotoAndStop(1);
   voice_obj.attachSound("ナルホド");
}
else if(!(rnd < 31) && !(rnd > 55)) // 24 % chance
{
   _root.charaimg.gotoAndStop(2);
   voice_obj.attachSound("オドロキ");
}
else if(!(rnd < 56) && !(rnd > 75)) // 19 % chance
{
   _root.charaimg.gotoAndStop(3);
   voice_obj.attachSound("ココネ");
}
else if(!(rnd < 76) && !(rnd > 80)) // 4 % chance
{
   _root.charaimg.gotoAndStop(4);
   voice_obj.attachSound("ミツルギ");
}
else if(!(rnd < 81) && !(rnd > 90)) // 9 % chance
{
   _root.charaimg.gotoAndStop(5);
   voice_obj.attachSound("ユガミ");
}
else if(!(rnd < 91) && !(rnd > 100)) // 9 % chance
{
   _root.charaimg.gotoAndStop(6);
   voice_obj.attachSound("バン");
}

Currently working on a redesign of cr.net itself! Come talk to me about it on Discord!
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Racing through the sky like a Missile

Gender: Female

Location: LA, Japanifornia

Rank: Ace Attorney

Joined: Mon Jun 18, 2012 6:17 am

Posts: 6180

みっちゃんずるいよ・・・4%だけのか?

Well, glad to know that I haven't been missing a Klavier voice clip all this time. This definitely makes it easier to get to translations...

If anyone is bothered by the random Japanese, feel free to tell me. I can stop at any time.
The home of the Gyakuten Saiban vs Ace Attorney blog: http://gyakutengagotoku.tumblr.com
1/3/19 edit: The project has officially been moved to a new blog at https://gsvsaa.blogspot.com/ Further updates will be pending.

AA fanfiction archive: viewtopic.php?f=11&t=31369
Yakuza/RGG fanfiction archive: https://archiveofourown.org/users/rubia ... /rubia_ryu
My misc translation and work promos here at http://rubiaryutheroyal.tumblr.com
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

迷探偵

Gender: None specified

Rank: Ace Attorney

Joined: Tue Feb 27, 2007 8:27 am

Posts: 2317

Japanese language thread ;0

Phoenix (29%), Apollo (24%), Athena (19%), Edgeworth (4%), Blackquill (9%), Fulbright (9%). Which for some reason doesn't add up to 100.
"One dumbbell, Watson! Consider an athlete with one dumbbell! Picture to yourself the unilateral development, the imminent danger of a spinal curvature. Shocking, Watson, shocking!" - The Valley of Fear
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Programmer

Gender: Male

Location: Sweden

Rank: Bug Sweeper

Joined: Sun Mar 22, 2009 3:25 pm

Posts: 832

I probably botched the math.
Currently working on a redesign of cr.net itself! Come talk to me about it on Discord!
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

henke37 wrote:
It's a flash movie. Just grab the swf file and use one of the many available resource extractors.

I even dug out the random selector, here are the weights. I am sure you guys understand the Japanese better than I do.
Code:
voice_obj=new Sound();
var rnd=Math.floor(Math.random() * 100) + 1;//random number between 1 and 99
if(!(rnd < 1) && !(rnd > 30))// 29 % chance
{
   _root.charaimg.gotoAndStop(1);
   voice_obj.attachSound("ナルホド");
}
else if(!(rnd < 31) && !(rnd > 55)) // 24 % chance
{
   _root.charaimg.gotoAndStop(2);
   voice_obj.attachSound("オドロキ");
}
else if(!(rnd < 56) && !(rnd > 75)) // 19 % chance
{
   _root.charaimg.gotoAndStop(3);
   voice_obj.attachSound("ココネ");
}
else if(!(rnd < 76) && !(rnd > 80)) // 4 % chance
{
   _root.charaimg.gotoAndStop(4);
   voice_obj.attachSound("ミツルギ");
}
else if(!(rnd < 81) && !(rnd > 90)) // 9 % chance
{
   _root.charaimg.gotoAndStop(5);
   voice_obj.attachSound("ユガミ");
}
else if(!(rnd < 91) && !(rnd > 100)) // 9 % chance
{
   _root.charaimg.gotoAndStop(6);
   voice_obj.attachSound("バン");
}



Thanks alot now i can listen to simon :sparkly-maggey:
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Levi x Tide detergent OTP

Gender: Male

Location: In the Scout Regiment

Rank: Decisive Witness

Joined: Thu Jul 18, 2013 1:34 am

Posts: 245

Character countdown voices updated to one day left!

Looks like Athena never got her copy of Gyakuten Saiban 5 :sadshoe:
"Girl, shut up and drink my spiked coffee." - Godot AckermanImage
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

fourtrass wrote:
Character countdown voices updated to one day left!

Looks like Athena never got her copy of Gyakuten Saiban 5 :sadshoe:


Forget that where is my copy of GS5 :uramidn:
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Levi x Tide detergent OTP

Gender: Male

Location: In the Scout Regiment

Rank: Decisive Witness

Joined: Thu Jul 18, 2013 1:34 am

Posts: 245

Prosecutor Yuugami wrote:
fourtrass wrote:
Character countdown voices updated to one day left!

Looks like Athena never got her copy of Gyakuten Saiban 5 :sadshoe:


Forget that where is my copy of GS5 :uramidn:


Athena was the one I got the most/
"Girl, shut up and drink my spiked coffee." - Godot AckermanImage
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

fourtrass wrote:
Prosecutor Yuugami wrote:
fourtrass wrote:
Character countdown voices updated to one day left!

Looks like Athena never got her copy of Gyakuten Saiban 5 :sadshoe:


Forget that where is my copy of GS5 :uramidn:


Athena was the one I got the most/


Athena and Apollo are the bigger chances of getting
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

You want STARS? I'll give you STARS!

Gender: None specified

Location: New York~

Rank: Desk Jockey

Joined: Fri Mar 08, 2013 2:37 am

Posts: 85

Prosecutor Yuugami wrote:
Athena and Apollo are the bigger chances of getting

I finally got an Edgeworth! :edgy:
ImageImage
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Heh heh.

Gender: Female

Location: Japanifornia, CA.

Rank: Decisive Witness

Joined: Thu Jun 13, 2013 3:38 am

Posts: 223

FreeFurNawlz wrote:
Prosecutor Yuugami wrote:
Athena and Apollo are the bigger chances of getting

I finally got an Edgeworth! :edgy:

Yaaaaay! :jazzedgy: Hehe, he sounds all disbelieving now, doesn't he? xD
So I finally grew a brain and remembered to give myself a signature... Whoopee.
Snackoos IRL. They are delicious and are covered in real chocolate. #so-grateful-I'm-Filipino

Excuse me if I contradict myself. I do that.
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Racing through the sky like a Missile

Gender: Female

Location: LA, Japanifornia

Rank: Ace Attorney

Joined: Mon Jun 18, 2012 6:17 am

Posts: 6180

It's because he didn't preorder it. Sucker.
The home of the Gyakuten Saiban vs Ace Attorney blog: http://gyakutengagotoku.tumblr.com
1/3/19 edit: The project has officially been moved to a new blog at https://gsvsaa.blogspot.com/ Further updates will be pending.

AA fanfiction archive: viewtopic.php?f=11&t=31369
Yakuza/RGG fanfiction archive: https://archiveofourown.org/users/rubia ... /rubia_ryu
My misc translation and work promos here at http://rubiaryutheroyal.tumblr.com
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Doing the drywall at the new McDonalds

Gender: Male

Rank: Ace Attorney

Joined: Fri May 25, 2012 1:46 am

Posts: 1586

So is the game hitting the Japanese eShop at midnight? If so then it launches in like 9 hours...exciting!
I used to have Sam Waterston as my avatar but photobucket added a watermark and also Law & Order has been cancelled for 10 years so it's time for me to move on.
Re: JP Dual Destinies site updatedTopic%20Title
User avatar

Gender: None specified

Rank: Ace Attorney

Joined: Fri Apr 19, 2013 12:38 am

Posts: 6446

ADA McCoy wrote:
So is the game hitting the Japanese eShop at midnight? If so then it launches in like 9 hours...exciting!


Your getting the Japanese one?
Page 8 of 8 [ 297 posts ] 
Go to page Previous  1 ... 4, 5, 6, 7, 8
 
Display posts from previous:  Sort by  

 Board index » General » Trial Minutes

Who is online
Users browsing this forum: No registered users and 24 guests

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum
Jump to:  
News News Site map Site map SitemapIndex SitemapIndex RSS Feed RSS Feed Channel list Channel list
Powered by phpBB

phpBB SEO