Board index » Present Evidence » Games

Page 127 of 131[ 5216 posts ]
Go to page Previous  1 ... 124, 125, 126, 127, 128, 129, 130, 131  Next
 


Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News
- (AIGE) Upgraded AHLSL Variable System to take block depth into account.
- (AIGE) Added two new commands for boolean (true/false) decisions: alwaystrue and alwaysfalse returning always true and false respectively.

Example:

Code:
[game]
newvar([out],"int","l");
setvar([out],42);
printvar([out]);

if(<alwaystrue()>)
{
   newvar([in],"int","l");
   setvar([in],12);
   printvar([in]);
   printvar([out]);
}
printvar([in]);
printvar([out]);
quit();


Will output on the output.log file:

Code:
(20:58:19) <Script> The value of the variable "out" is 42
(20:58:19) <Script> The value of the variable "in" is 12
(20:58:19) <Script> The value of the variable "out" is 42
(20:58:19) <Script> The value of the variable "out" is 42


The variable "in" will only exist inside the if block (since it was created there).

Previously, it would output an additional line on the in variable.

Code explanation:

Code:
[game]
newvar([out],"int","l");
setvar([out],42);
printvar([out]); //variable out exists here. (depth 1)

if(<alwaystrue()>)
{
   newvar([in],"int","l");
   setvar([in],12);
   printvar([in]); //variable in exists here. (depth 1)
   printvar([out]); //variable out exists here. (depth 2)
}
printvar([in]); //variable in no longer exists here. (would be depth 0)
printvar([out]); //variable out exists here. (depth 1)
quit();

PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

Just gonna comment here in case. My MSN broke while you were talking, like 10:25 for me (3:25 for you). Couldn't send any message to you. Tried using Meebo, tried nudging you to see if it worked. Didn't look like it did. Talk to you later more on that thing, got me wondering.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News
- (AIGE) Updated the Walker to be able to be used without sets.
- (AIGE) Added ability for animation to have its animation window moved. This can lower the amount of animations created under certain circunstances.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News:
- (AHLSL Associated Libs) Fixed bug with the IVP library not hiding the background object properly when the video ends/is skipped.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

"PWLib Unleashed Update 11/1"


Please download the .pdf.

I haven't been in contact with KSA (that would be my fault) since and due to my passive inactivity but that doesn't mean I was not in work with this. I've been secretly working on the designing. I took references on the guide KSA gave me and went on through there. I've been learning how to use Indesign and realized it doesn't need to be a in a book format but rather just a document and then just export it as a .pdf (a high quality one might I add).

http://www.mediafire.com/?72w15lom6p744uo

The test .pdf uses most of the text in Tutorial 00. I also made some stuff of my own.

I am missing a lot of graphics and looking at the reference guide that KSA gave me, I think I am going to add subtopic backgrounds to add more to the art. There will be pictures to represent the code there, it's just that tutorial didn't really cover enough to demand pictures.

ImageImage


There will be some grammatical mistakes or graphical errors.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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 design is fine, but the bg looks too distracting (maybe make it a lot more transparent?).

I was considering into making some optional first chapters related to AHLSL directly (and only). Would be a nice thing to show that the (busted!) myth of pwlib being harder is not true (thus re-busting it).

I hope I collect enough motivation to work on this book seriously (and make it good quality from start to end).
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

KSA_Tech wrote:
The design is fine, but the bg looks too distracting (maybe make it a lot more transparent?).

I was considering into making some optional first chapters related to AHLSL directly (and only). Would be a nice thing to show that the (busted!) myth of pwlib being harder is not true (thus re-busting it).

I hope I collect enough motivation to work on this book seriously (and make it good quality from start to end).


I thought I made it more transparent <_<. The way I had in mine is that since it follows a simplistic design (minus the graphics I plan on adding) is that it follows a color code.

Red for definitions.
Black for core topics or ideas. (e.g. AIGE or PWLib)
Blue for instructions (I'll expand it somehow).
Green for file locations.

And with the Shinku sample script you sent me, not a doubt it's easier. So when you are more into writing the book, send me the docs of the stuff over email and when I finish this college related stuff, I will be on more.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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 transparency should be like a very clean watermark. You see it there, but it doesn't attract your attention too much.

One thing that really keeps me from putting a solid step on the book is that thing of "let's decide for a casemaker without testing pwlib". I don't want to put a lot of work, neither make other people work on a decent book for that to just keep going. If it is for that joke to keep happening, then I prefer to use that time working on Strike Witches: Sky Guardians.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

KSA_Tech wrote:
The transparency should be like a very clean watermark. You see it there, but it doesn't attract your attention too much.

One thing that really keeps me from putting a solid step on the book is that thing of "let's decide for a casemaker without testing pwlib". I don't want to put a lot of work, neither make other people work on a decent book for that to just keep going. If it is for that joke to keep happening, then I prefer to use that time working on Strike Witches: Sky Guardians.


That's handled, heh, I thought for sure I made it transparent enough and this time it should be. Yeah, I understand as we talked about previously, I am actually still curious about that one thing you were talking about before I got dc'd on that one day.

I do want to work on the book because I do believe in what PWLib represents and the things it is able to hold. I don't mind if it is slowly-paced. I have seen despite the slow down (from working this project and others using it such as Remnants of the Past), the work you put it through and the promise that you are willing to keep on going even when on day one that I first spoke to you (in MSN) to give up if it does become too frustrating.

And from using your project, I got the third PWLib game completed (coding-wise) :phoenix: . And it's one that can really show what it is capable of.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Pace isn't an issue to me at all. As long as the result is good, being slow with it isn't a problem. It is far better to take a while instead of rushing and deploying something faulty and broken.

I can't give up on PWLib because I promised I would deliver it, so no matter how bad stuff turns out, it will get finished.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News
- (AIGE) Fixed bug on shake effector that would cause aige to crash on certain scenarios.
- (PWLib) Fixed error on investigation that made investigations behave incorrectly.
- (PWLib) Fixed msgbox placement issues due to the Multiple Message Boxes System.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News
- (AIGE) Fixed crash when using variables on the console.
- (AIGE) Now it is possible to lookout the value of a global variable on the console by using >varname. Suppose a variable "number" is declared, so using >number will output is value.
- (AIGE) Created variables will now start with their default values on all cases. This avoids issues related to initialization.
- (AIGE) Local variable creation from the console has been prohibited in order to prevent errors.
- (AIGE) The console now shows the AHLSL Version.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

News
- (AIGE) Defaulted certain objects creation.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Gender: None specified

Rank: Suspect

Joined: Sun Jul 05, 2009 5:53 pm

Posts: 1

this might not be the place to ask, but i cant seem to get pwlib set up correctly.
despite the tutogame.hlsl and setup files being correct and in the right place (copy and pasted from the book as well to be safe) every time i launch aige i get a couldnt jump to script game error.

it doesnt seem like it would be, but maby because im using windows 7?
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

That error is caused by the startup file being out of the scripts folder.

And since the forum is back i'll be able to build the full Changelog section of the AIGE and PWLib site.

News will be only avaiable at the site from now on (as I rarely come to this forum nowadays), so for PWLib questions, please use the PWLib part of the KSA Technology Forums at http://www.ksatechnologyhq.com:1357/forums/. There is no need to register if you're not willing to.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Mandaue City, Cebu, Philippines

Rank: Desk Jockey

Joined: Sun Sep 20, 2009 1:51 pm

Posts: 117

Since KSA_Tech's Forums is down at the moment, I'll post my issues here.

Here's the code from Radex's fangame, Ace Attorneys: Rising Justice, of Franziska's whip animation:
Code:
loadtexture(30000,"PW\character\Franziska\Fran_whipping.png");

//Franziska whipping animation (Test)
createanimation("Franziska_Whipping_Out",1528);
insertanimationframe("Franziska_Whipping_Out",1,30000,6);
setanimationframetexturecoordinates("Franziska_Whipping_Out",1,0,0,169,160);
setanimationframesfx("Franziska_Whipping_Out",1,"sfx-whip.wav",1);
insertanimationframe("Franziska_Whipping_Out",2,30000,6);
setanimationframetexturecoordinates("Franziska_Whipping_Out",2,0,160,169,160);
insertanimationframe("Franziska_Whipping_Out",3,30000,6);
setanimationframetexturecoordinates("Franziska_Whipping_Out",3,0,320,169,160);
insertanimationframe("Franziska_Whipping_Out",4,30000,6);
setanimationframetexturecoordinates("Franziska_Whipping_Out",4,0,480,169,160);
insertanimationframe("Franziska__Whipping_Out",5,30000,6);
setanimationframetexturecoordinates("Franziska_Whipping_Out",5,0,640,169,160);

[pw_franziskawhip]

setanimationrepeations("Franziska_Whipping_Out",1);
resetanimation("Franziska_Whipping_Out");

When I tested it out, it didn't show. Here's the image used:
Image

And how can we arrange the layers in the PW Menu? Like sending the Advance Arrow before the scanlines, or after it. The Court Records button before the CR Layer.

Thanks in advance! :will:
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gone sarnet, Gunter!

Gender: Female

Rank: Decisive Witness

Joined: Fri Jul 08, 2011 5:21 pm

Posts: 222

Yeah, the whole site is down, and I was trying to figure out how to solve my problem.

Has anyone else had problems trying to get the AIGE window to show up? For some reason, the window won't show up when I got the connection to my game script working properly. It would show it before (black screen, red letters showing frame rate, and a window saying that AIGE couldn't find function "game"), but when I got that problem out of the way, AIGE learned to do an invisible spell!

I was hoping that this would be the fix to my case engine need, but If I can't get this working, I might just have to learn how to make this game in Java. :(

Image
Visit my site! It's running smoothly. Just needs content!
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

@AABattery - Show me the code that you have left.

@Dubius - (A repost back at KSA's forum). I had problems having the animation to overlay over Franziska. When I do use it, it would remove the background and the character. I left it incomplete for people to understand how the animation stuff works. During my time in creating of Whipping Turnabouts, I did a lot of workarounds to compensate some problems such as the saving or the graphics. (KSA didn't like that I replaced the graphics lol). As for rearranging the layers in the PWLib Menu, I haven't been able to do that other than some photoshopping to make a pseudo arrangement.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gone sarnet, Gunter!

Gender: Female

Rank: Decisive Witness

Joined: Fri Jul 08, 2011 5:21 pm

Posts: 222

Radex wrote:
@AABattery - Show me the code that you have left.


...

#include(pwlib/pwlib.hlsl)

[game]
runscript("pw_initpwlib");
waitresponse();

When I remove the include it works, but when I add it, it doesn't.
Image
Visit my site! It's running smoothly. Just needs content!
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Mandaue City, Cebu, Philippines

Rank: Desk Jockey

Joined: Sun Sep 20, 2009 1:51 pm

Posts: 117

Try this:
Spoiler: Code
Code:
#include(pwlib/pwlib.hlsl)
[pw_usepwlogo]

[game]
jumptoscript("setup");

[setup]
definekey("key_lclick",<null()>);
runscript("pw_initpwlib");
runscript("pw_initpwbgs");
runscript("charcreation");
runscript("load");
runscript("evidenceprofilecreation");
setvar([pw_titlescript],"titlepage");
setvar([pw_episodepath],"episode/");
setvar([pw_episodes],1);
runscript([pw_titlescript]);

[titlepage]
changetitle("PWLib: Case Selection");
setbg(70010);
runscript("pw_showmain");
waitresponse();
runscript("pw_hidemain");
setbgsize(0,0);
jumptoscript("casemenu");

[casemenu]
runscript("pw_caseselect");
waitresponse();

[begin_case1]
runscript("casestart");

[load]
loadtexture(80900,"PW/evidence/gun.png");
loadtexture(80901,"PW/evidence/lawyer badge.png");
loadtexture(80902,"PW/evidence/photo.png");
loadtexture(90900,"PW/profile/ema.png");
loadtexture(90901,"PW/profile/minuki.png");
loadtexture(70000,"PW/ElisePhoto.png");
loadtexture(70010,"PW/misc/pwdefaulttitle.png");
loadtexture(91000,"choices/choiceblank.png");
loadtexture(91010,"choices/choiceblank.png");
loadtexture(91020,"choices/choicewright.png");
loadtexture(91030,"choices/choiceblank.png");

[charcreation]
runscript("pw_createema");
runscript("pw_createtrucy");

[evidenceprofilecreation]
setvar([evidencenumber],900);
setvar([evidencegfs],80901);
setvar([evidencegfl],80901);
setvar([evidencesup],0);
setvar([evidencename],"Attorney's Badge");
setvar([evidencesdesc],"Type: Other\n One of my possessions.");
setvar([evidenceldesc],"It's my all important badge.\nIt shows that I'm a defense attorney.");
runscript("createevidence");
setvar([evidencenumber],901);
setvar([evidencegfs],80900);
setvar([evidencegfl],80900);
setvar([evidencesup],0);
setvar([evidencename],"Gun");
setvar([evidencesdesc],"Type: Weapons\n Submitted as evidence\n by Prosecutor Von Karma.");
setvar([evidenceldesc],"The murder weapon.\nIt was shot once.");
runscript("createevidence");
setvar([evidencenumber],902);
setvar([evidencegfs],80902);
setvar([evidencegfl],80902);
setvar([evidencesup],1);
setvar([evidencename],"Trucy GS4 Promo");
setvar([evidencesdesc],"Type: Photo\nReceived from Trucy \nWright.");
setvar([evidenceldesc],"A promo photo of Gyakuten Saiban \n4.");
runscript("createevidence");
setvar([evidencestex],70000);
runscript("setevidencepagesimple");
setvar([profilenumber],800);
setvar([profilegfs],90900);
setvar([profilegfl],90900);
setvar([profilename],"Ema Skye");
setvar([profilesdesc],"Age: 19\nGender: Female");
setvar([profileldesc],"An energetic girl that wants to be a \nforensic detective.");
runscript("createprofile");
setvar([profilenumber],801);
setvar([profilegfs],90901);
setvar([profilegfl],90901);
setvar([profilename],"Trucy Wright");
setvar([profilesdesc],"Age: 15\nGender: Female");
setvar([profileldesc],"A cheerful magician girl.");
runscript("createprofile");

[casestart]
setvar([evidencenumber],900);
runscript("addevidence");
setvar([evidencenumber],901);
runscript("addevidence");
setvar([profilenumber],800);
runscript("addprofile");
setvar([profilenumber],801);
runscript("addprofile");
jumptoscript("enterscene1");

[enterscene1]
runscript("pw_enablequicksaveload");
runscript("pw_usepwbgcourthall");
runscript("pw_showadvarrowmenu");
loadandplaymp3("music/03 Phoenix Wright JFA - Courtroom Lounge ~ Another Overture.mp3",0,"N");
jumptoscript("scene1");

[scene1]
runscript("setlipsynctochar");
runscript("showpwchar");
runscript("pw_showmessagebox");
runscript("pw_enableemanormal");
runscript("pw_setnameboxtoema");
messageauto("Oh,");
wait(10);
messageappend(" Hello.");
message("My name is Ema Skye!");
runscript("pw_setnameboxtotrucy");
runscript("pw_enabletrucynormal");
message("My name is Trucy.");
message("I'm a magician.");
setvar([pw_evidtoshowinbox],80902);
runscript("pw_showflyingevidboxright");
message("This photo proves it.");
runscript("pw_hideflyingevidboxright");
setvar([evidencenumber],902);
runscript("addevidence");
setvar([evidencenumber],902);
setvar([pw_headeviaddmsg],"");
setvar([pw_taileviaddmsg]," was added\nto the Court Record.");
runscript("pw_startevidenceadd");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemahappy");
messageauto("That's cool,");
wait(25);
runscript("pw_enableemaexcited");
messageappend(" but scientifically \nspeaking...");
message("Magic doesn't exist.");
runscript("pw_setnameboxtotrucy");
runscript("pw_enabletrucythinking");
messageauto("Scientifically speaking...?");
wait(10);
messageappend("\nHmmm...");
message("But does magic need to be \nproven?");
runscript("setlipsynctonoone");
runscript("pw_setnameboxtophoenix");
runscript("pw_bluemessagebox");
message("(I better not try to argue \nin this one.)");
runscript("setlipsynctochar");
runscript("pw_enableemaunsure");
runscript("pw_setnameboxtoema");
runscript("pw_whitemessagebox");
message("What do you think, Mr. Wright?");
runscript("setlipsynctonoone");
runscript("pw_setnameboxtophoenix");
message("Ah?");
message("Well...");
message("Ah...");
jumptoscript("presenttrucyevidence");

[presenttrucyevidence]
definevar([signal],"int");
runscript("pw_setnameboxtonoone");
runscript("pw_greenmessagebox");
messageauto("(Show what proves that Trucy is \na magician!)");
runscript("pw_showselectananswer");
runscript("pw_forcepresent");
waitsignal("advance",[signal]);
runscript("pw_hidemessagebox");
runscript("pw_hideselectananswer");
loadandplaysfx("01_Phoenix - takethat.wav",0);
runscript("pw_raisetakethat"); wait(6);
if(<compare([currentitemcode],"equal",902)>,<jumptoscript("presenttrucyevidencecorrect")>,<jumptoscript("presenttrucyevidencewrong")>);

[presenttrucyevidencecorrect]
runscript("pw_showmessagebox");
runscript("pw_setnameboxtophoenix");
runscript("pw_whitemessagebox");
message("What about this?");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
message("You may be right...");
message("But who gave you this?");
jumptoscript("presenttrucyprofile");

[presenttrucyevidencewrong]
runscript("pw_showmessagebox");
runscript("pw_setnameboxtophoenix");
runscript("pw_whitemessagebox");
message("What about this?");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
message("What is this supposed to mean \nanyway?");
jumptoscript("scene1");

[presenttrucyprofile]
definevar([signal],"int");
runscript("pw_setnameboxtonoone");
runscript("setlipsynctonoone");
runscript("pw_greenmessagebox");
messageauto("(Show who gave you this \nphoto!)");
runscript("pw_showselectananswer");
setvar([pwonetypepresent],2);
runscript("pw_forcepresent");
waitsignal("advance",[signal]);
runscript("pw_hidemessagebox");
runscript("pw_hideselectananswer");
loadandplaysfx("01_Phoenix - takethat.wav",0);
runscript("pw_raisetakethat");
wait(6);
if(<compare([currentitemcode],"equal",801)>,<jumptoscript("presenttrucyprofilecorrect")>,<jumptoscript("presenttrucyprofilewrong")>);

[presenttrucyprofilecorrect]
runscript("pw_showmessagebox");
runscript("pw_setnameboxtophoenix");
runscript("pw_whitemessagebox");
message("What about this?");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
runscript("setlipsynctochar");
messageauto("Hmmm,");
messageappend(" that is interesting...");
jumptoscript("simpleexamine");

[presenttrucyprofilewrong]
runscript("pw_showmessagebox");
runscript("pw_setnameboxtophoenix");
runscript("pw_whitemessagebox");
message("What about this?");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
runscript("setlipsynctochar");
message("I'm not sure about this, you \nknow...!");
jumptoscript("scene1");

[simpleexamine]
runscript("pw_showmessagebox");
setbuttonarea("pw_examinearea1",178,212,57,42);
setvar([pw_examinemaxplaces],1);
runscript("pw_showtouchananswer");
messageauto("So,");
wait(10);
messageappendauto(" what is wrong in this place?");
runscript("hidepwmenu");
runscript("pw_showspecialexamine");
runscript("pw_waitexaminetouch");
runscript("hidepwmenu");
runscript("pw_showadvarrowmenu");
runscript("pw_hidetouchananswer");
if(<compare([pw_examinearea],"equal",1)>,<jumptoscript("simpleexaminecorrect")>,<jumptoscript("simpleexaminewrong")>);

[simpleexaminecorrect]
runscript("pw_showmessagebox");
runscript("setlipsynctonoone");
runscript("pw_setnameboxtophoenix");
message("Here!");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
runscript("setlipsynctochar");
message("Hmm, yeah, it looks \ninteresting...!");
jumptoscript("questionexample");

[simpleexaminewrong]
runscript("pw_showmessagebox");
runscript("setlipsynctonoone");
runscript("pw_setnameboxtophoenix");
messageauto("This is what proves...");
messageappend(" er...");
runscript("setlipsynctochar");
runscript("pw_setnameboxtoema");
runscript("pw_enableemanormal");
runscript("setlipsynctochar");
message("I'm not sure about this, you \nknow...!");
jumptoscript("scene1");

[questionexample]
definevar([qreplysignal],"int");
messageauto("But,");
wait(10);
messageappendauto(" what was Trucy's \nlast name again?");
setvar([pw_maxquestions],4);
setvar([pw_q1gfx],91000);
setvar([pw_q2gfx],91010);
setvar([pw_q3gfx],91020);
setvar([pw_q4gfx],91030);
runscript("hidepwmenu");
runscript("pw_setupquestions");
runscript("pw_showquestion");
waitsignal("qreply",[qreplysignal]);
runscript("hidepwmenu");
runscript("pw_showadvarrowmenu");
if(<compare([qreplysignal],"equal",3)>,<jumptoscript("questionexamplecorrect")>,<jumptoscript("questionexamplewrong")>);

[questionexamplecorrect]
message("You're correct!");
jumptoscript("scene1");

[questionexamplewrong]
message("That doesn't seem right...");
jumptoscript("scene1");

Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gone sarnet, Gunter!

Gender: Female

Rank: Decisive Witness

Joined: Fri Jul 08, 2011 5:21 pm

Posts: 222

Like I said, whenever the include is on the script, it won't work.

Guess I can't use it... :(

Image
Visit my site! It's running smoothly. Just needs content!
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Mandaue City, Cebu, Philippines

Rank: Desk Jockey

Joined: Sun Sep 20, 2009 1:51 pm

Posts: 117

Try downloading AIGE again. Tell us if it works.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

Its been a long time since i visited the forums, and i decided to give an answer for those who waited for PWLib 1.2 over the years (since I promised to get it delivered numerous times).

There is a working version of PWLib 1.2, and I plan to send a copy of it to those who are still interested (I did send a copy to drthingums, Percei and Christie already), so they can make some use of it (and the implemented code don't just go to waste). I thank all the people who still make use of PWLib for their games (a never expected to see people still using it after what happened on CR).

Also, I wanted to say sorry for all the trouble I caused in the past. I wasn't mature enough back then, so I acted stupidly over many things.

I don't plan to return to PWLib development at full power since I started the Strike Witches: Sky Guardians game (and AIGE's SEU engine to make it happen), but I plan to give assistance and updates to PWLib if the need arises. Probably still make PWLib a viable option as a casemaker engine.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

'owdy, KSA. It's definitely been a while.

I must say, you have impeccable timing, as I was going into a hopefully fully successful relaunch of ROTP as my exams take a nice break. The main problem was that although PWLib 1.1 had allowed closer visuals to the original game, it lacked animations that made it feel less authentic than PyWright as a result. However! I hear 1.2 has remedied most of said issues and I would much prefer running ROTP through it instead of learning another programming language and also losing the progress we've had thus far.

Ergo, I would like to request a copy of 1.2 if it's okay. I'll give the current script a test on it, and then decide on sticking with 1.2 or if I'll be switching to PyWright in the end. It boils down to whichever I'll have better support with, and like I said, I like how PWLib portrays things more like the original games, so I would really like to go with 1.2. My problem will be if PWLib ceases to have support- both from its creator (who will hopefully be working on updates and any fixes) and for its users (timely assistance for when problems occur).

Hope to work well with you, KSA. No more fallings out and that such- just a good running on 1.2 and ROTP with no problems, that's 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: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

Contact me on MSN so I can send it to you. Then you can tell me the missing animations (or just post here, your call), and I may take care of it (I added a lot of stuff to 1.2, so those animations may already been added).

There are some stuff added to 1.2 rc1 that may speed up development (part of the Shinku command set, the new investigation model, etc).
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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 MSN anymore and I would really prefer not to have it (as it's a huge mess of potential viruses and spam). Is there a different way the files could be sent? The only IM service is use is Skype, really, unless there are other forms of uploading files.
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: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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 would only use MSN to talk, because I would host the file on my server. Sending files over MSN is a pain.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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, so you do have an alternative method? Perhaps we can discuss just the finer details over PM? I just really, really prefer not to have MSN on my computer. :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: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title

Blah!

Gender: None specified

Rank: Ace Attorney

Joined: Tue Jun 22, 2010 1:18 pm

Posts: 1029

papermario13689 wrote:
Ah, so you do have an alternative method? Perhaps we can discuss just the finer details over PM? I just really, really prefer not to have MSN on my computer. :P


You could use a third party client, like Pidgin, but of course you'd still need to make an MSN account.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

Any IM method for me is fine. MSN, GTalk, IRC, as long as we are able to talk real time, it is fine.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

Are those your three available ones, KSA? As I said, I already do have Skype, but I can temporarily download a different one.
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: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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

Skype is a valid option, but isn't gtalk a lot easier (no need to install anything)?
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-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 alright too, whatever works.
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: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title
User avatar

PWLib / AIGE developer

Gender: Male

Location: 127.0.0.1

Rank: Prosecutor

Joined: Tue May 01, 2007 9:27 pm

Posts: 649

I have to completely confess I forgot about this place for a long while (sorry!) and recently just remembered about here and decided to take a look, things certainly have changed all over the place.
I found myself reading old posts in here and it's kinda amusing to see my Case 1-1 for PWLib1.1 then seeing some of my own written code that I (surprisingly!) still have on my system here for the custom case I was doing for KSA with PWLib 1.2, and I must once again express how shocked I am at how far along the code leaped, so much neater! Especially with these functions that I wrote myself. (Thank GOD I left them well documented!)

It's amusing that I think I've managed to spark my interest in this again and I can't help but wonder if I'll end up gathering a few of us to kick-start interest in PWLib again and perhaps re-encourage KSA, but in the meantime I'm gonna just leave this post here, go to bed then perhaps get together with some peoples to make this demo case for 1.2 that was supposed to happen!
If you put your mind to it, you can accomplish anything!
"(Not)Guilty" for PWLib | Emergency Case Selection Fixes
Case 1-1 for PWLib | Pearl
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title

Two is always better than one ♥

Gender: None specified

Rank: Suspect

Joined: Thu Jun 07, 2012 6:58 pm

Posts: 2

I notice that this forum has been inactive lately :_:... I just got to know about PWlib for about 1 days until now and I found myself quite obsesses over this program. I decided to try and overcome everything by myself without asking any question but 'till this point I gave up.

:edgeworth: I've found almost every sprite I need for my test game except... Edgy (my love TT_TT) :edgy: :edgy: I went around on the internet, trying to find his sprites (And I did, a folder with his sprite but no .hlsl file for me to run...). I also looked over 127 pages of this forum, every post of Comaster just to stumbed over some dead mediafire links TT_TT at this point if I don't have his sprites my game would go to waste...

If someone has his sprite please send him to me (Including the coding file, I don't want to do it myself because I'm coding blind -.-) Maybe a new Mediafire link, maybe through my email (bup_be_happy61@yahoo.com) Anything in fine, just... I want Edgy so bad TT^TT

(Thanks for reading and sorry for my English...)
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title

Gender: None specified

Rank: Suspect

Joined: Sun Jun 17, 2012 5:51 am

Posts: 2

Hi!
Could somebody help me? I'm having trouble with the "Multy colored" text thing.
The thing is that, reading through this board, I read that you can use something called
"color tags" on the text, but I have no idea how to use them ):
I just want to put -some- words in other color, like in the games:
"That was a close call"

Something like that... Thanks!
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title
User avatar

The protagonists of my fangame!

Gender: None specified

Location: Behind you...

Rank: Desk Jockey

Joined: Fri Jul 08, 2011 11:26 am

Posts: 55

Simply use $c{colour} as in message("drthingums is $c{colorpworange}awesome!"). Valid values are colorpwwhite, colorpworange, colorpwblue and colorpwgreen. BTW, I've already helped Michiyo with their problem.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title

Gender: None specified

Rank: Suspect

Joined: Sun Jun 17, 2012 5:51 am

Posts: 2

Awesome! Thank you very much @drthingums ^^
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title
User avatar

Gender: Male

Rank: Suspect

Joined: Mon Mar 12, 2012 8:15 pm

Posts: 11

Not sure if this question has already been answered but how do you play an Ogg Vorbis file?
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-Topic%20Title
User avatar

The protagonists of my fangame!

Gender: None specified

Location: Behind you...

Rank: Desk Jockey

Joined: Fri Jul 08, 2011 11:26 am

Posts: 55

Just use loadandplaymp3.
Page 127 of 131 [ 5216 posts ] 
Go to page Previous  1 ... 124, 125, 126, 127, 128, 129, 130, 131  Next
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

Who is online
Users browsing this forum: No registered users and 26 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