Board index » Present Evidence » Games

Page 1 of 1[ 17 posts ]
 


Phoenix Wright: Turnobout DestenyTopic%20Title
User avatar

Gender: None specified

Rank: Suspect

Joined: Sat Mar 28, 2009 9:44 pm

Posts: 7

UPDATE 2: This game has now officaly change It's name from Phoenix Wright: Return from the Past to Phoenix Wright Turnobout Desteny.
Also, it's now being developed by PWLib instead of PyWright. The main reason for that is...well , PWLIb offers more options and
more peronal costumazation.
It will feature only one case(Turnobout Desteny), but It will obviously be VERY LONG...
I have already come up with the storyline and the characters..the only thing left to do is to start scripting.
Here's some General information:

Case selection background:

Spoiler:
Image


Menu screen:

Spoiler:
Image


The main theme song will be:

Spoiler:
MGS2 main theme song

Just because this case will be epic.

The gameplay will still be the same with the Apollo and all that..
It will have the court record and other buttons from Gyakuten Kenji(Only edited).

I won't officany announce the story until April 20. (I know I sound like this is the greatest thing of all time, but I need some time to start scripting)

P.S. saluk, I hope you aren't made because I choosed PWLib over PyWright :larry:


Last edited by WrongAndRight on Mon Apr 13, 2009 10:36 am, edited 3 times in total.
Re: Phoenix Wright: Return from the PastTopic%20Title

Gender: None specified

Rank: Prosecutor

Joined: Fri Sep 05, 2008 9:18 pm

Posts: 821

I didn't know PyWright allowed custom interfaces?

Quote:
You will be in the co-council seat helping out Apollo.
You will guide him through the trial.

ARGH MY TOP-SECRET IDEA

Shouldn't Gumshoe not have a brand-new jacket?
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Apollon Flame

Gender: Male

Rank: Ace Attorney

Joined: Sun Oct 05, 2008 10:14 pm

Posts: 1638

MrCheeze wrote:
I didn't know PyWright allowed custom interfaces?

Quote:
You will be in the co-council seat helping out Apollo.
You will guide him through the trial.

ARGH MY TOP-SECRET IDEA

Shouldn't Gumshoe not have a brand-new jacket?


THAT'S his brand new COAT, in the T&T credits Maggie gives him that coat.
A King

in name


alone...
Re: Phoenix Wright: Return from the PastTopic%20Title

Gender: None specified

Rank: Prosecutor

Joined: Fri Sep 05, 2008 9:18 pm

Posts: 821

Seven years ago...

EDIT: Come to think of it, it was even dirty again in the Wright vs. Gavin trial.
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

nick's lil sis - 13 years old

Gender: None specified

Rank: Suspect

Joined: Tue Apr 07, 2009 10:16 am

Posts: 41

OH IT'S AH-MAZING!!!

MrCheeze wrote:
Seven years ago...

EDIT: Come to think of it, it was even dirty again in the Wright vs. Gavin trial.


Well yeah, since maggey said the new coat didn't shows the real gumshoe :keiko: *yeaoranythinglikethat*
Image

NEW LOVE FOR WOCKY!!!! ~lol~
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Otaku, #1 Machi fan, #2 Machi Fan

Gender: Male

Location: Engl- Ooh, over 3000 posts. (England)

Rank: Ace Attorney

Joined: Fri Sep 28, 2007 4:06 pm

Posts: 3781

I thought this would be a generic fangame with Phoenix getting his badge back by an overobsessed Phoenix fan, and I'm glad I was wrong. I'm looking forward to this.
Image
ALL GLORY TO THE HYPNOGANT
Re: Phoenix Wright: Return from the PastTopic%20Title

Gender: None specified

Rank: Prosecutor

Joined: Fri Sep 05, 2008 9:18 pm

Posts: 821

What do you have against hobo lawyers?
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

I hate Klaviema >_>

Gender: Male

Location: UK

Rank: Ace Attorney

Joined: Sat Aug 16, 2008 4:17 pm

Posts: 1938

It's more the "FEENIE COME BACK NOW AND SAVE US FROM THIS EVIL HORNED IMPERSONATOR " fangames which are iritating...

Wow, that was really hypocritical, wasn't it :godot:

Anyway, I like the idea. Though Apollo probably doesn't need a genius Hobo guding him through everything...
ImageImage
ImageImage
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Gender: Male

Rank: Prosecutor

Joined: Thu Mar 06, 2008 8:36 pm

Posts: 770

Did you cancel Phoenix Wrong in order to make this? Is PyWright still kicking the hell out of you? I am available for any questions you may have!

MrCheeze wrote:
I didn't know PyWright allowed custom interfaces?


PyWright allows replacing any image with an image of your own. You can't currently change where things are, but you can change what they look like.
Creator of PyWright, the lovable case construction system!
Also visit the PyWright post.
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Gender: None specified

Rank: Suspect

Joined: Sat Mar 28, 2009 9:44 pm

Posts: 7

Quote:
Did you cancel Phoenix Wrong in order to make this? Is PyWright still kicking the hell out of you? I am available for any questions you may have!


Oh, thanks! I have no idea how to do Cross examinations! I read the doc file but I don't understand it!
Also, Is there a way to present evidance without the Back button in the corner?

By the way, Phoenix Wrong was cancelled because of one other problem.. but it has NOTHING to do with PyWright..

If you can answer me how to do Cross Examinations and presenting thing, I'll be VERY thakful!
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Gender: Male

Rank: Prosecutor

Joined: Thu Mar 06, 2008 8:36 pm

Posts: 770

Cross examinations are pretty simple. The section containing lines must start with "cross" and end with "endcross". For the lines, it is just regular text, but you have to "tag" each line as a statement so it can be referred to:

Spoiler: Cross examination skeleton
cross

statement notguilty
"I am not guilty I say!"

statement alibi
"I was in bed at the time."

statement wife
"Just ask my wife!"

endcross


If the player does not press or present anything, code will continue on after the endcross line, where you should make it loop back. If you add an argument to the "cross" command you can name the cross examination, which makes looping easier. (Only single word allowed).

Spoiler: loop back
cross First_Testimony
statement 1
"bleh"
endcross

char helper
"Hmm mr lawyer person, I think the guy is hiding something..."
char lawyer
"I think you might be right."

goto First_Testimony


To add events which happen, you use add labels which the cross examination engine will jump to when things happen. When a statement is pressed, the engine will jump to a label which matches the name of the current statment with the word "press" before it; when you present something, the engine goes to a label matching the item tag with the statement name after. "label press none" can be used if you don't want to add a press statement for every line, and "label none" can be used to deal out penalties for presenting faulty evidence.

Spoiler: pressing
cross afraid
statement 1
"Don't hit me!"

statement 2
"I'm too young to die!"
endcross

label press 1
char lawyer
"Why would I hit you?"

char defendant
"But my last lawyer did!"

char lawyer
"Don't worry about it, you're safe with me."

resume



label none
char lawyer
"Hmm, dunno what to say to that statement"


goto afraid


Spoiler: presenting
cross prints
statement clean
"I'm clean as a whistle I am"
statement weapon
"You can't prove that weapon is mine."
endcross

char lawyer
"(This guy is totally joking. He won't get away with it. I'm sure I have something to prove it...)"
goto prints

#Presenting the item "jacket" during statement "clean"
label jacket clean
char lawyer
"What about this? This jacket you left at the crime scene is so dirty!"
char witness
"Er, uh, er... That proves nothing!"
resume

#Presenting the item "fingerprints" during the statement "weapon"
label fingerprints weapon
char lawyer
"We found prints on the gun."
char witness
"buhhhhhhhhh"
char judge
"OK. It's obvious that the gun belonged to the witness. GUILTY"
endscript

#Presented any evidence on any of the statements besides what is listed above
label none
char lawyer
"What about... THIS!"
char judge
"Er. What does that have to do with anything? PENALTY"
resume


Hope that helps.

I don't think the back button can be disabled in presenting, but I can have a look. I'll release a quick update today or tomorrow with that ability if it's not already there.
Creator of PyWright, the lovable case construction system!
Also visit the PyWright post.
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Gender: None specified

Rank: Suspect

Joined: Sat Mar 28, 2009 9:44 pm

Posts: 7

Thanks, that helped ALOT!!!! :will:
Re: Phoenix Wright: Turnobout DestenyTopic%20Title
User avatar

nuuuuu, stoooooop

Gender: Female

Location: America

Rank: Admin

Joined: Fri Feb 23, 2007 5:16 am

Posts: 5255

Ummmmm no offense but did you mean to have misspellings in your title...?
ImageImage
Re: Phoenix Wright: Turnobout DestenyTopic%20Title

Two more games coming up soon

Gender: Male

Location: Paris

Rank: Prosecutor

Joined: Thu Feb 28, 2008 2:45 pm

Posts: 929

I think the title, the terrible case selection background and the project in general is a joke. "I know I sound like this is the greatest thing of all time" isn't meant to be taken seriously... I hope.
Creator of Apollo Justice Case 5: Turnabout Substitution: Trailer - Download
Co-creator of New Year's Turnabout, Turnabout Revolution, and At Dawn's Break
Re: Phoenix Wright: Turnobout DestenyTopic%20Title
User avatar

Mr. Ygrrjfjdosowhatever

Gender: Male

Location: The United States of America

Rank: Prosecutor

Joined: Sun Jan 04, 2009 8:11 pm

Posts: 609

Eh... you mean "Turnabout Destiny," right? Because you... misspelled both words in your title...
Re: Phoenix Wright: Turnobout DestenyTopic%20Title
User avatar

A Kirby and AA fan

Gender: Male

Location: The Netherlands

Rank: Ace Attorney

Joined: Sat Jan 31, 2009 6:01 pm

Posts: 1032

YggdrasilsSword wrote:
Eh... you mean "Turnabout Destiny," right? Because you... misspelled both words in your title...

I'd say it's intentional. I mean, he misspelled it exactly the same way three times, and hasn't spelled it right once. Add to that, all the other spelling seems fine. So I can hardly believe he'd make the exact same mistake three times.
Image
Re: Phoenix Wright: Return from the PastTopic%20Title
User avatar

Shoulda been Brawldude, but was taken

Gender: None specified

Location: A long time ago in a galaxy far, far away...

Rank: Medium-in-training

Joined: Thu Apr 09, 2009 12:11 am

Posts: 502

Bitter_Godot wrote:
THAT'S his brand new COAT, in the T&T credits Maggie gives him that coat.


That's Maggey. -points to first cross-exam in 2-1-

WrongandRight wrote:
I won't officially announce the story until April 20.

It's May 31... >_>
Image
Click the sig to see my graphics topic!

My sig -is- original. Lots of people just make sigs similar to this one a lot.
Page 1 of 1 [ 17 posts ] 
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

Who is online
Users browsing this forum: No registered users and 4 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 Site map Site map SitemapIndex SitemapIndex RSS Feed RSS Feed Channel list Channel list
Powered by phpBB

phpBB SEO