Board index » Present Evidence » Games

Page 48 of 131[ 5218 posts ]
Go to page Previous  1 ... 45, 46, 47, 48, 49, 50, 51 ... 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

If you move directly to the positions, it is the classic enable functions. In case you slide from one bench to other, you need to use the method specified on the tutorial book.
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: Tue Feb 27, 2007 7:31 pm

Posts: 34

So maybe this has been asked before (47 pages here!!) but some of my mp3s won't play in the game. Specifically, anything from the Phoenix Wright series won't start playing in my game, while anything else works just fine.

loadandplaymp3("Name.mp3",0,"N"); - works just fine
loadandplaymp3("Pursuit2004.mp3",0,"N"); - silent

They're both in the same folder, and I've tried several different PW songs, downloaded them from different sources, and still nothing. Has anyone run into something similar?
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

From what i tested up until now, I don't recall running into an mp3 that never played. (and no one else complained yet about it on 1.1). Maybe it is a special format that the mp3 uses that isn't supported by audiere. Do you have the origin of some of the mp3's that didn't work?

------------------------------
Current Info on PWLib and AIGE development
-Important Features (and influence of its completion)
1) Parameter-based Custom Commands (PWLib will get a special set of custom commands that will render PWLib a lot easier)
2) #link preprocessor (support for 1, definition of new special compatiiblity sets)
3) playlist commands (special sound playback, allowing to create playbacks that have intro and loop, for example)
4) PWLib Custom Commands Set (easier PWLib dev, phase 1 for editor)
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: Tue Feb 27, 2007 7:31 pm

Posts: 34

Actually, it's working now. It was probably just my computer screwing up. Sorry about that.
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

No problem. It was nice that you reported, since it could be a bug in AIGE or Audiere. I hope that in a near future i implement the plugin system allowing to have alternative sound engines (so better sound support).
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

PWLib / AIGE developer

Gender: Male

Location: 127.0.0.1

Rank: Prosecutor

Joined: Tue May 01, 2007 9:27 pm

Posts: 649

Franziska von Karma wrote:
So maybe this has been asked before (47 pages here!!) but some of my mp3s won't play in the game. Specifically, anything from the Phoenix Wright series won't start playing in my game, while anything else works just fine.

loadandplaymp3("Name.mp3",0,"N"); - works just fine
loadandplaymp3("Pursuit2004.mp3",0,"N"); - silent

They're both in the same folder, and I've tried several different PW songs, downloaded them from different sources, and still nothing. Has anyone run into something similar?
what does that "N" tag do? prevent looping or what?
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-3)Topic%20Title
User avatar

^ Ji Hye Jang

Gender: None specified

Location: Your mom

Rank: Medium-in-training

Joined: Tue Dec 18, 2007 4:16 am

Posts: 535

Is there any function to quickly clear the whole court record?
Proud creator of the first released PWLib-made fangame! ^_^
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Lee Ji Hoon wrote:
Is there any function to quickly clear the whole court record?
As far as I am aware, no. Because you set the variables for all evidence (And profiles) . As such you would probably be best off coding your own script to wipe the Court Records.

P.S anyone whom downloaded my pw_caseselect fixes prior to when I posted this post, please re-download as it fixes final things!

New Variable:
setvar([pw_titletex],X); // Set this variable to the textureID of your titlescreen.

New "Case Select" demo script to demonstrate:
Spoiler: examples/casesel.hlsl
#include(pwlib\pwlib.hlsl)

[game]
jumptoscript("setup");

[setup]
runscript("pw_initpwlib");
runscript("pw_initpwbgs");
setvar([pw_titlescript],"titlepage");
setvar([pw_episodepath],"episode/");
setvar([pw_episodes],2);
setvar([pw_titletex],-304);
jumptoscript([pw_titlescript]);

[titlepage]
setbg([pw_titletex]);
setbgsizefromtexture([pw_titletex]);
changetitle("PWLib: Case Selection");
runscript("pw_showmain");
waitresponse();
runscript("pw_hidemain");
jumptoscript("casemenu");

[casemenu]
jumptoscript("pw_caseselect");

[begin_case1]
runscript("case1_setup");

[case1_setup]
runscript("pw_createpayne");
jumptoscript("case1_begin");

[case1_begin]
runscript("pw_showadvarrowmenu");
runscript("pw_showprosecutorstand");
runscript("pw_enablepaynenormal");
runscript("pw_setnameboxtopayne");
runscript("pw_showmessagebox");
runscript("showpwchar");
runscript("setlipsynctochar");
message("I am here to tell you,\nYour Honor, that this is\nCase 1.");
runscript("pw_hidemessagebox");
placefadescreen(40,"I");
wait(40);
runscript("hidepwchar");
runscript("hidepwmenu");
hidegenobj("pw_courtbench");
placefadescreen(1,"O");
jumptoscript("pw_endcase");

[begin_case2]
runscript("case2_setup");

[case2_setup]
runscript("pw_createema");
jumptoscript("case2_begin");

[case2_begin]
runscript("pw_showadvarrowmenu");
runscript("pw_usepwbgcourthall");
runscript("pw_enableemahappy");
runscript("pw_setnameboxtoema");
runscript("pw_showmessagebox");
runscript("showpwchar");
runscript("setlipsynctochar");
message("Come on, guys!\nLet's go!!!");
runscript("pw_hidemessagebox");
placefadescreen(40,"I");
wait(40);
runscript("hidepwchar");
runscript("hidepwmenu");
placefadescreen(1,"O");
jumptoscript("pw_endcase");

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


Last edited by DDRKhat on Thu Sep 18, 2008 7:42 am, edited 1 time in total.
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

AIGE updates:
-Finished Parameter-based Custom Commands
-Fixed issue with runinlane (it affects the fixed version of case selection)
-Finished #link preprocessor

-Currently working on: pwlib "language".
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: England

Rank: Decisive Witness

Joined: Tue Dec 11, 2007 6:23 pm

Posts: 191

I've downloaded the directX thing, but I get the error message "d3dx9_34.dll cannot be found". I've tried redownloading it but it still says the same thing. Any solution?

(I'm having to save the directX file onto my memory stick so I can take it to my laptop because I don't have wi-fi.)
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

Search the dll on google. Then just put it on AIGE.exe folder.


---------------------
the PWLib Language (earlier prototype)

Before:
[game]
jumptoscript("setup");

[setup]
runscript("pw_initpwlib");
runscript("pw_initpwbgs");
setvar([pw_titlescript],"titlepage");
setvar([pw_episodepath],"episode/");
setvar([pw_episodes],2);
setvar([pw_titletex],-304);
jumptoscript([pw_titlescript]);

[titlepage]
changetitle("PWLib: Case Selection");
runscript("pw_showmain");
waitresponse();
runscript("pw_hidemain");
jumptoscript("casemenu");

After:
[game]
jumptoscript("setup");

[setup]
pwlib_init();
pwlib_initbgs();
pwlib_configmain(-304);
pwlib_startcasesel("titlepage","episode/",2);

[titlepage]
changetitle("PWLib: Case Selection");
pwlib_callmain();
jumptoscript("casemenu");
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

you are already guilty.

Gender: None specified

Rank: Decisive Witness

Joined: Thu Apr 17, 2008 9:30 am

Posts: 151

don't know if it's because of the update, but now it finally reads the savefile correctly and i can access the other cases after restarting. good job in that case.

on another topic, i also had the sound problem. i tried loading the ogg files from that music pack that was released some time ago, and sometimes they worked, sometimes didn't. the same file worked in some cases, and didn't in others though. maybe something else was at fault there.

edit:
also, shouldn't the old values for the court overview be changed to the new one i got when i redid the sprites for it? it looks bad right now with the prosecutors and attorneys being so squished.

i had to find the values i made and put them in my game script, and only then the default cro sprites started looking normal. with the stuff in the default code the cro looks all wacky and wrong.

here's the correct one that makes it look right:
Code:
[pw_crosizesdefaults]
setgenobjsize("pw_croprosecutor",64,128);
setgenobjsize("pw_croattorney",64,128);
setgenobjsize("pw_crojudge",32,32);
setgenobjsize("pw_crowitness",128,128);
placegenobj("pw_croprosecutor",30,70);
placegenobj("pw_croattorney",165,70);
placegenobj("pw_crojudge",112,48);
placegenobj("pw_crowitness",64,64);


edit2:
oh, and was that problem with positioning the sprites fixed recently (as in, sprites are shifted one pxiel to the right and down, which is why i had to substract 1 from the start position to get the correct values)? i noticed phoenix is too high in his deskslam position, and needs fixing. changing his second placecharacter value in [pw_enablephoenixdeskslam], [pw_enablephoenixdeskslam_only] and [pw_enablephoenixdeskslam2] from 16 to 18 fixes that.
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

@Serio: I'll look on the sound issue, maybe it is audiere's way of handling things (i think oggs are played using the filter you have on the system)

I'll fix the phoenix positions.


----------------------
And something i forogt to release earlier:
http://www.ksatechnologyhq.com:1357/pwlib/pwlib_fonts.rar

They were made by jeti.
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

That was objectionable!

Gender: Male

Rank: Decisive Witness

Joined: Wed Sep 10, 2008 10:01 pm

Posts: 176

I noticed this before I registered here, but I was screwing around with PWLib and I remembered it.

On the audio files, Franziska's Objection mp3 has a bit of a delay on it. More specifically, there is a one second pause before it actually plays. The total length of the file is 2 seconds. All of the other objection files are 1 second and play right upon loading them.

I just thought it was weird to have Phoenix and Franziska arguing, have Franziska raise an objection, have the camera wipe over to Franzy, and then have her actually shout objection.
It look weird because she was talking when it finally played and the lipsync was spot-on.
Image<--- Friend me!
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

KSA_Tech wrote:
AIGE updates:
-Finished Parameter-based Custom Commands
-Fixed issue with runinlane (it affects the fixed version of case selection)
-Finished #link preprocessor

-Currently working on: pwlib "language".


The changes I did fixed this issue without the requirement of the new version of AIGE. Case Selection is now truely finished and debugged. Sorry for an emergency bug, truely sorry, and big thanks to Rick Astley (See: Lee Ji Hoon) whom attempted to use it and had a few issues so I could identify them.
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-3)Topic%20Title
User avatar

you are already guilty.

Gender: None specified

Rank: Decisive Witness

Joined: Thu Apr 17, 2008 9:30 am

Posts: 151

i dunno if those are even used, but going through the files i found some more damaged images. so here are the fixes:
Image Image
Image Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Serio wrote:
i dunno if those are even used, but going through the files i found some more damaged images. so here are the fixes:
Image Image
Image Image


They are used, you can switch between Phoenix / Mia buttons with;

runscript("pw_enablepwbuttons");
runscript("pw_enablemiabuttons");

at current, no Edgeworth buttons.

You are able to make your own cross examination buttons. It is recommended that they are exactly the same size as the above buttons.

Code:
[pw_enablemiabuttons]
replacetexture(75,"PW\button\PWMFAdvanceButton.png");
replacetexture(77,"PW\button\PWMFAdvanceButtonY.png");
replacetexture(-251,"PW\button\PWMFCrossExamBack.png");
replacetexture(-252,"PW\button\PWMFCrossExamNext.png");
replacetexture(-253,"PW\button\PWCrossExamBackY.png");
replacetexture(-254,"PW\button\PWCrossExamNextY.png");

Simply put a path to your own textures. Rename the function. And there you go.
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-3)Topic%20Title
User avatar

you are already guilty.

Gender: None specified

Rank: Decisive Witness

Joined: Thu Apr 17, 2008 9:30 am

Posts: 151

no i mean the yellow versions. i know the red ones are, but the yellow versions don't seem to be used. the ones in the files were pretty badly damaged, so i decided to fix them up just in case.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Serio wrote:
no i mean the yellow versions. i know the red ones are, but the yellow versions don't seem to be used. the ones in the files were pretty badly damaged, so i decided to fix them up just in case.
Try clicking the "Previous" or "Next Statement" button when in a cross examination.
They weren't that damaged. Only the corners.
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-3)Topic%20Title
User avatar

you are already guilty.

Gender: None specified

Rank: Decisive Witness

Joined: Thu Apr 17, 2008 9:30 am

Posts: 151

the shading was too. the colors were wrong, they were kind of blurry and there were almost jpg-like artifacts on the borders.

i see the yellow ones now. i don't remember them working in the previous version, so i guessed it's still the case.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: England

Rank: Decisive Witness

Joined: Tue Dec 11, 2007 6:23 pm

Posts: 191

I've followed the tutorial and now when I open AIGE, I get this:

Image

and the screen on AIGE is black.
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 yellow on click for cross was added on 1.1. I did Mia's Button changing for 1.1, and it included all necessary changes, but using PW's one (as i didn't had the gfx) for the yellow.

So change the lines
replacetexture(-253,"PW\button\PWCrossExamBackY.png");
replacetexture(-254,"PW\button\PWCrossExamNextY.png");

on function
pw_enablemiabuttons

to enable mia's yellow cross btns.

@Logic Sword
Check 2 things:

1) On startup, the #include is not commented (preceeded by //)
2) Check if the filename is .hlsl and not .hlsl.txt
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: Female

Rank: Suspect

Joined: Sun Sep 14, 2008 8:05 pm

Posts: 23

Hm, I've seen to come across a problem. I'd normally just tinker with the coding till I'd find the issue, but I'm not exactly sure what I'd be looking for in this case.

Image

I'm still just working off the Nutshell tutorials, trying to work things out for myself. As you can see, Franny and Phoenix are hoovering over their benchs like ghosts XD It seems the Judge might be too far up, as well as the witness(? I couldn't quite tell if she was placed right or not).

Here is my coding.
Spoiler: tutocourt2.hlsl
#include(pwlib/pwlib.hlsl)

[game]
jumptoscript("setup");

[setup]
runscript("pw_initpwlib");
runscript("pw_initpwbgs");
runscript("charcreation");
runscript("load");
runscript("crocreation");
changetitle("PwLib Tutorial Game");
jumptoscript("run");


[load]
loadtexture(-7000,"PW/CRO/CROWtYoungEma.png");
loadtexture(-7001,"PW/CRO/CROJudge.png");
loadtexture(-7002,"PW/CRO/CROPrFranziska.png");
loadtexture(-7003,"PW/CRO/CRODfPhoenixEma.png");


[charcreation]
runscript("pw_createema");


[crocreation]
loadtexture(70010,"cust/PWLobTutoMain.png");
setgenobjgraphic("pw_crowitness",-7000);
setgenobjgraphic("pw_crojudge",-7001);
setgenobjgraphic("pw_croprosecutor",-7002);
setgenobjgraphic("pw_croattorney",-7003);


[run]
setbg(70010);
runscript("pw_showmain");
waitresponse();
runscript("pw_hidemain");
jumptoscript("enterscene1");

[enterscene1]
runscript("pw_showadvarrowmenu");
jumptoscript("scene1");

[scene1]
runscript("setlipsynctochar");
runscript("showpwchar");
runscript("pw_showmessagebox");
runscript("pw_setnameboxtoema");
runscript("pw_showattorneystand");
runscript("pw_enableemaunsure");
message("What?");
setvar([sld_targetcharanim],"pw_enableemanormal");
runscript("pw_slideattoneytowitness");
message("Done.");
setvar([sld_targetcharanim],"pw_enableemamad");
runscript("pw_slidewitnesstoprosecutor");
message("Done2!");
runscript("pw_showattorneystand");
setvar([sld_targetcharanim],"pw_enableemaunsure");
runscript("pw_slideattoneytoprosecutor");
message("Done3!");
setvar([sld_targetcharanim],"pw_enableemasurprised");
runscript("pw_slideprosecutortoattoney");
message("Done4!");
jumptoscript("courtroomoverview");


[courtroomoverview]
runscript("pw_hidemessagebox");
runscript("pw_showcourtroomoverview");
runscript("pw_hidecourtroomoverview");


Thanks for looking guys.
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

Since you're using Serio's set of CRO, you need to run this:
runscript("pw_crosizesalternative");
once to use the alternative CRO sizing. I kept by default the original sizing for compatibility.

Lee, i'll implement a command to clear the Court Records.

-----------------------------------------
And some notes on the "PWLib Commands Set": it will be codenamed "Himeko" and will be possibly featured on the next release of pwlib.
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

PWLib / AIGE developer

Gender: Male

Location: 127.0.0.1

Rank: Prosecutor

Joined: Tue May 01, 2007 9:27 pm

Posts: 649

Serio wrote:
the shading was too. the colors were wrong, they were kind of blurry and there were almost jpg-like artifacts on the borders.

i see the yellow ones now. i don't remember them working in the previous version, so i guessed it's still the case.
Well it was just a quick-rip from the emulator, without the ability to turn layers off or anything. Thank you for your work anyway.
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-3)Topic%20Title
User avatar

Gender: Male

Location: England

Rank: Decisive Witness

Joined: Tue Dec 11, 2007 6:23 pm

Posts: 191

KSA_Tech wrote:

@Logic Sword
Check 2 things:

1) On startup, the #include is not commented (preceeded by //)
2) Check if the filename is .hlsl and not .hlsl.txt


I've checked and I haven't done either of those things.
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

Can i see the script file? Sometimes it is a tiny typo or something.

---------------------------
PWLib Command Set "Himeko" update:
"Setting the chars for a Court Room Overview"

pwlib_makecrochardef("witness","Dahlia");
pwlib_makecrochardef("judge","Judge");
pwlib_makecrochardef("prosecutor","Franziska");
pwlib_makecrochardef("attorney","PhoenixEma");

Note: No need to even load the required files. The command does that automatically.
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

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

Logic Sword wrote:
I've checked and I haven't done either of those things.


I had the same problem. Move tutogame.hlsl to auto folder. I had the EXACT error box, and KSA told me to move the file and well, it worked!

Hey, wait a minute, PWLib WORKED IN MY PC! HELL FUCKING YEEEEEEEEEEAAAAAHHH!!!!!!!




I mean, splendid! :garyuu:
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

^ Ji Hye Jang

Gender: None specified

Location: Your mom

Rank: Medium-in-training

Joined: Tue Dec 18, 2007 4:16 am

Posts: 535

Guess you can finally see the sprites you did in action, then. :D
Proud creator of the first released PWLib-made fangame! ^_^
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

About time i did fix the render issue. Couldn't leave people out of PWLib.

Himeko-chan is a nice girl and growing nicely. CR just got an easier setup:

pwlib_makecrochardef("witness","Dahlia");
pwlib_makecrochardef("judge","Judge");
pwlib_makecrochardef("prosecutor","Franziska");
pwlib_makecrochardef("attorney","PhoenixEma");

Simple, easy. For custom ones, there is another command,

pwlib_makecrochar("type","name","base-path");

eg:

pwlib_makecrochar("witness","Nyala","custom/CRO");

filename is CROWiNyala.png, present at custom folder in this example.
I decided to follow Serio's naming convention.
CROxxXXXX.png
xx
-Wi for witness
-Pr for prosecutor
-Df for attorney
-nothing for judge
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: Wed Sep 10, 2008 3:34 pm

Posts: 17

This might be a stupid question but where do I put the new fonts? <_<
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Luke: Layton's #1 Apprentice

Gender: Male

Location: United Kingdom

Rank: Bug Sweeper

Joined: Fri May 30, 2008 4:19 pm

Posts: 365

The fonts should (I think) be installed into %SystemRoot%/Fonts, which typically resolves to C:/Windows/Fonts/. Then you can use them in Micro$oft Word! :D
Web developer by night, school student by day. That's how I roll.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

.____________.

Gender: None specified

Rank: Suspect

Joined: Wed Sep 10, 2008 3:34 pm

Posts: 17

Oh, I thought PWLib takes the fonts from somewhere within the PWLib folder <_<
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 is due to the Simple Font Render. Since I can't drop it (since Accelerated isn't perfect yet), i need to keep its requirements towards Accelerated too. As I get Accelerated to render perfectly, i'll try to add a font library that can load from the font file.

Yes, the fonts must be on windows' fonts folder.
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: England

Rank: Decisive Witness

Joined: Tue Dec 11, 2007 6:23 pm

Posts: 191

DeMatador wrote:
Logic Sword wrote:
I've checked and I haven't done either of those things.


I had the same problem. Move tutogame.hlsl to auto folder. I had the EXACT error box, and KSA told me to move the file and well, it worked!


Thanks, it works now.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Lee Ji Hoon wrote:
Guess you can finally see the sprites you did in action, then. :D


Heh heh, I guess :edgy:

@Logic Sword: You're welcome :D
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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

Anyone else having any issues? Also do be aware that the new font(s) were released and a link to them are in the first post.
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-3)Topic%20Title
User avatar

Someone. Isn't that enough for you?

Gender: Male

Location: Somewhere

Rank: Suspect

Joined: Sat Sep 06, 2008 5:42 pm

Posts: 49

Well, AIGE is bugging up again. After downloading 1.1, I lost a dll file. After downloading it, i start AIGE and I get the black screen. Am I doing anything wrong in this new AIGE? I kept all of the same scripts I made in 1.0b.
P.S. Can someone make a completed Pearl script for me? Thanks!
Image
Image
Awesome sig done by Caelestis!
Avatar from Croik!
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

wilddrawfour.tumblr.com

Gender: Male

Location: Yes

Rank: Medium-in-training

Joined: Thu Aug 14, 2008 12:19 pm

Posts: 457

I downloaded it but i can't make it work.. :uramidn:
Image

HERE COME DAT SPIRIT MEDIUM!
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

@someone70

From 1.0b to 1.1 there is a change on the place where the startup.aigehls must reside. On 1.0x, it was on the same folder as AIGE.exe, and now on 1.1 it is on the scripts folder (i mentioned it some pages ago, way before 1.1 release).

@jaydrick0620

Explain your issue a bit better for us to know.
PWLib 1.2 Under Development

PWLib Casemaker (Version 1.1) at http://forums.court-records.net/viewtopic.php?f=36&t=8788
Page 48 of 131 [ 5218 posts ] 
Go to page Previous  1 ... 45, 46, 47, 48, 49, 50, 51 ... 131  Next
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

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