Board index » Present Evidence » Games

Page 25 of 41[ 1639 posts ]
Go to page Previous  1 ... 22, 23, 24, 25, 26, 27, 28 ... 41  Next
 


Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

The member who doesn't swear much

Gender: Male

Location: I'm Scotland and I live in Scottish. Wait...

Rank: Prosecutor

Joined: Fri Jul 03, 2009 10:15 am

Posts: 970

I won't lie, this seems absolutely epic. Iit sounds like Capcom material. If the dialogue is as good as in the AA games, then this will easily be my fave fan game evar.

Good luck with the demo.

I'd translate the game into Spanish, but I don't know too many words. Unless of course you want me to do it all Chinese fakes' manual style. Then I'll have a few words in Spanish, and the rest in English. :gant:
Married to KSAT~. Super Cammy (known as Cammyflage) sprite in avvie by Looby.

Image
I Do LPs. Here's a link to watch them on my channel on YouTube.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

"...Naturally."

Gender: Male

Location: Milton Keynes, England, UK

Rank: Medium-in-training

Joined: Tue Apr 28, 2009 7:48 pm

Posts: 404

If it's to be made as a ds rom, couldn't it be tested on a DS emulator on PC?
Engaged to Reiji!
Image
Credit to Nadindi for the awesome sig! :D
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

papermario, just before I forget:

AIGE has a feature called Message Base. Basically it allows you to make a game with multiple languages available without having to go and translate the game in source/release multiple versions one per language. You define a file that will contain the message data, so simply switching it will change the messages on screen.
This could help you deploying the game in multi-language quickly (+ a small file change = instant language change), as you cna only send the message base file for translation.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

They don't :c

Gender: Male

Location: http://www.ezilon.com/maps/images/southamerica/political-map-of-Argentina.gif

Rank: Moderators

Joined: Mon Jan 21, 2008 6:34 pm

Posts: 3188

If we are speaking about translations, papermario, I won't have any problem helping with a Spanish translation.

Contact me if you are interested.
Image
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Thanks for the info, KSA. That does sound a lot easier. Will I still need translators to translate the text if I use the Message Base?

If so, I'd be happy to accept any and all help on translations.


Thanks all!
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

My name is Judge.

Gender: Male

Location: Just Outside Your Peripherals

Rank: Ace Attorney

Joined: Fri Mar 21, 2008 5:47 pm

Posts: 1607

Yes, all it does is save your text in seperate files, then with some quick changes in code, some image substitutions (for name boxes), your game is accessible in multiple languages.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Ah, I see. I guess I do need translators then.

Thanks for the info, Percei.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

Given the game is Message Base-ready, adding new languages is easy.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

That's assuring to know; I won't have to spend even more time delaying the game for that...
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

The very simple way:

After loading pwlib, load all the message bass you want to use with:

loadmessagebase("name","file");

aka:
loadmessagebase("eng_lang","langs/english.ini");

Tell AIGE to use the message base system:

enablemessagebase();

Now set the active message base:

setactivemessagebase("eng_lang");

Now you will be using the Message Base System. Now you need to organize the message calls to work. All message functions will be using the message base, append, and so on.

Supposing you have a message command:

message("You're lying! I know you did it!");

You will see that with the message base on, the message will be blank. It is normal. You will need to build the language file.

Open the english.ini.

Then for each message, you add an entry:

message1=You're lying! I know you did it!
message2=Anything else...

and so on. Save.

Then on the message command you want to use a message, put its reference instead of it. In the previous example, we use this:

message("message1");

And you're done.


And example to make it fully clear:

Conversation example:
message("But Maya said that Pearls went to that restaurant!");
message("Isn't that the restaurant SHE loves to go? Why would Pearls go?");
message("(Hmmm, I feel something is wrong here...)");
message("This can be a stupid coincidence, but...");

Now changing it to the Message Base support:

message("messrest1");
message("messrest2");
message("messrest3");
message("messrest4");

and on the english.ini

messrest1=But Maya said that Pearls went to that restaurant!
messrest2=Isn't that the restaurant SHE loves to go? Why would Pearls go?
messrest3=(Hmmm, I feel something is wrong here...)
messrest4=This can be a stupid coincidence, but...
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Looks pretty easy, thanks for saving me trouble of asking you how to use it:P
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Wow:O Just saw a thread in the Press Conference forums; apparently many people have mistaken Remnants of the Past as GS5, which blows my mind and makes me happy beyond belief, to say the least.

Many thanks to Croik for clearing that up, though. Wouldn't want to disappoint anyone.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

The proof quality do pay off, and gives surprisingly good results.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Friction, baby! - Keith Richards

Gender: None specified

Location: The Dark Side of the Moon

Rank: Ace Attorney

Joined: Wed Jun 10, 2009 11:03 pm

Posts: 2701

KSA_Tech wrote:
Spoiler: The very simple way:
After loading pwlib, load all the message bass you want to use with:

loadmessagebase("name","file");

aka:
loadmessagebase("eng_lang","langs/english.ini");

Tell AIGE to use the message base system:

enablemessagebase();

Now set the active message base:

setactivemessagebase("eng_lang");

Now you will be using the Message Base System. Now you need to organize the message calls to work. All message functions will be using the message base, append, and so on.

Supposing you have a message command:

message("You're lying! I know you did it!");

You will see that with the message base on, the message will be blank. It is normal. You will need to build the language file.

Open the english.ini.

Then for each message, you add an entry:

message1=You're lying! I know you did it!
message2=Anything else...

and so on. Save.

Then on the message command you want to use a message, put its reference instead of it. In the previous example, we use this:

message("message1");

And you're done.


And example to make it fully clear:

Conversation example:
message("But Maya said that Pearls went to that restaurant!");
message("Isn't that the restaurant SHE loves to go? Why would Pearls go?");
message("(Hmmm, I feel something is wrong here...)");
message("This can be a stupid coincidence, but...");

Now changing it to the Message Base support:

message("messrest1");
message("messrest2");
message("messrest3");
message("messrest4");

and on the english.ini

messrest1=But Maya said that Pearls went to that restaurant!
messrest2=Isn't that the restaurant SHE loves to go? Why would Pearls go?
messrest3=(Hmmm, I feel something is wrong here...)
messrest4=This can be a stupid coincidence, but...

lol That doesn't sound simple. :meekins:
ImageThanks to Lind_L_Tailor for the badass sig! :neil:
ImageImage
ImageImage
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

I'll write a more organized tutorial about it soon. That was quickly written, so it supposes the reader already used PWLib for a while.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title

Gender: Female

Location: The land of stress!

Rank: Medium-in-training

Joined: Sat Nov 08, 2008 5:34 pm

Posts: 422

If you need a translator for French or Spanish I'd be willing to help, though I might not be very good at it
Image
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

I think I already have a Spanish translator on CR, and a French translator on Youtube. But thanks much for the offer:D
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title

I.WUV.CHOCOLATE

Gender: None specified

Rank: Suspect

Joined: Wed Jun 10, 2009 12:22 am

Posts: 11

BTW, papermario-still-dont-remember-the-number,
How would you like your script translation?
Latinamerican or Spain style?
Please say latin,please say latin!!!
Oh, and BTW,
Croik remarked the GS5-RotP like,
last year :godot: .
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

What is the difference? As long as it's easily understandable for the area you are translating for, I'm okay with either.


Yeah, I don't usually visit the Press Conference forum, but I had to recently to announce a farewell in the stead of one of my CR friends.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

lol boobs.

Gender: Female

Rank: Ace Attorney

Joined: Sat Nov 08, 2008 7:59 pm

Posts: 2792

I could be a translator for german, but probably you already have one anyway XD
Image

"also you meant: Are you from Germany, sorry on the one hand I am not sure about English grammar on the other hand I am a grammar nazi" - Coffee Prosecutor
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

I am the Objector.

Gender: None specified

Rank: Decisive Witness

Joined: Fri Oct 31, 2008 12:37 am

Posts: 211

I could translate for Japanese, if you want. You probably don't, though, because I'm perpetually unneeded. Oh well. There could be better translators out there anyway.
Whoever said nothing was impossible obviously never tried to close a revolving door.
"Suspense msuic plays" Oh crap, SAVESAVESAVE! Oh wait, that's my phone. And the caller ID is... MOM!?
"Cornered music plays"
Oh, ****
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Rockman FTW

Gender: Male

Rank: Suspect

Joined: Fri Nov 07, 2008 4:17 pm

Posts: 26

I could possible translate it into Dutch if you want.
just let me know if you need it
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

I don't have German, Dutch, or Japanese yet:D

You're hired!
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title

I.WUV.CHOCOLATE

Gender: None specified

Rank: Suspect

Joined: Wed Jun 10, 2009 12:22 am

Posts: 11

Uhhh...KSA?
What do you mean with "quickly written"?

Oh and papermario-ok-from-now-on-Ill-just-call-you-papermario,
do I get a bonus for starting the translation thingie :will: ?
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

I assembled the "tutorial" directly on the reply page, without any revision and minimal examples, more like a first draft of it.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title

I.WUV.CHOCOLATE

Gender: None specified

Rank: Suspect

Joined: Wed Jun 10, 2009 12:22 am

Posts: 11

OK.
Now I need a translation of what KSA just said.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

The tutorial posted lacks examples and organization.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Yeah, more detail would be needed. I understood cause I've using PWLib and AIGE for over a year now.


And...what kind of bonus are we talking about here?!! :yuusaku:
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

lol boobs.

Gender: Female

Rank: Ace Attorney

Joined: Sat Nov 08, 2008 7:59 pm

Posts: 2792

papermario13689 wrote:
I don't have German, Dutch, or Japanese yet:D

You're hired!


Yay =P
I like translating stuff and I can finally help with something :D
Image

"also you meant: Are you from Germany, sorry on the one hand I am not sure about English grammar on the other hand I am a grammar nazi" - Coffee Prosecutor
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

AIGE/PWLib Casemaker Developer

Gender: Male

Location: Brazil

Rank: Ace Attorney

Joined: Sun Mar 09, 2008 3:38 am

Posts: 2731

Going a bit offtopic:

Why we don't create a topic or similar to group those who can offer translation services?
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

I think making a whole new topic would be a bit much, but I'll definitely update the first post so I remember who's translating.


Good suggestion, KSA.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

*awesome quote*

Gender: None specified

Location: In your thoughts

Rank: Desk Jockey

Joined: Fri Jul 17, 2009 7:42 pm

Posts: 70

This...this sounds so absolutely epic awesometastic, I can't wait for it to be finished. as for translations, I don't think you'll be needing a Dutch translator? Otherwise I'll gladly offer my help :]
Image
Sig by the wonderful Blinq!
Thank you~
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

lol boobs.

Gender: Female

Rank: Ace Attorney

Joined: Sat Nov 08, 2008 7:59 pm

Posts: 2792

Ninniku-chan wrote:
I don't think you'll be needing a Dutch translator? Otherwise I'll gladly offer my help :]


He already has one, if you look at the posts above xD
..Sorry, just saying
Image

"also you meant: Are you from Germany, sorry on the one hand I am not sure about English grammar on the other hand I am a grammar nazi" - Coffee Prosecutor
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

1000% Knight

Gender: Male

Rank: Moderators

Joined: Tue Jun 17, 2008 2:06 pm

Posts: 6932

.•°٭blinq٭°•. wrote:
Ninniku-chan wrote:
I don't think you'll be needing a Dutch translator? Otherwise I'll gladly offer my help :]


He already has one, if you look at the posts above xD
..Sorry, just saying

Well, since he has one, he doesn't need another one... So Ninniku was still kinda right xD
Image
Credit to Evolina for the sig+avatar!
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

lol boobs.

Gender: Female

Rank: Ace Attorney

Joined: Sat Nov 08, 2008 7:59 pm

Posts: 2792

Bad Player wrote:
Well, since he has one, he doesn't need another one... So Ninniku was still kinda right xD


LOL yeah.. oh well :yogi:
Image

"also you meant: Are you from Germany, sorry on the one hand I am not sure about English grammar on the other hand I am a grammar nazi" - Coffee Prosecutor
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

1000% Knight

Gender: Male

Rank: Moderators

Joined: Tue Jun 17, 2008 2:06 pm

Posts: 6932

Oh, technicalities. :gant:
Image
Credit to Evolina for the sig+avatar!
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Yeah, thanks for the offer, but I've had offers fly in like crazy; maybe we can have some kind of pairing program so people can work in groups to translate. It'd go by quicker, and everyone gets a chance to contribute.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title

Gender: None specified

Rank: Suspect

Joined: Wed Jul 22, 2009 4:05 am

Posts: 1

Oh....wow....
The trailer was enough to make me fangasm.
Good luck.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

Thanks, appreciate it.

As I type this from summer camp, I am trying to find time to work on the game...
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Re: PW: Remnants of the Past - Demo in Progress!Topic%20Title
User avatar

Nyaaaaan~ Moé Powers Go!

Gender: Male

Location: O' Canada

Rank: Ace Attorney

Joined: Fri Jan 25, 2008 6:04 am

Posts: 1502

It's the dawn of a new age, and I even found some time to work on the game! :P

Progressing slowly, but at least it hasn't stopped.
Image
The dancing Sakura petals; only in such grace do we see the beauty of the world.
Lovely wife PandaPrinzessin, charismatic sons Meenyman and Romeo, and talented daughters Reiji and sparkleranger78.
Page 25 of 41 [ 1639 posts ] 
Go to page Previous  1 ... 22, 23, 24, 25, 26, 27, 28 ... 41  Next
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

Who is online
Users browsing this forum: No registered users and 38 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:  
cron
News News
Powered by phpBB

phpBB SEO