Board index » Present Evidence » Games

Page 124 of 131[ 5218 posts ]
Go to page Previous  1 ... 121, 122, 123, 124, 125, 126, 127 ... 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

The case selection was added on PWLib 1.1, but the PWLib In A Nutshell wasn't updated to explain how it works, but using it is pretty simple. It uses a more automated system for its graphics, so there are a few rules to be followed:

- First create a folder where the gfx for the menu will be. Suppose "mygame/episodes". Inside this folder, the gfx for the case selection will be placed, but following a small set of naming rules for the files. Each case has 2 case selection images representing background ("case art") and title ("episode X: name"). The name of the background image must be: caseXbg.png, where X is the number of the case. For the episode title, the file must be episodeX.png.
- Given the files are in place, it is needed to make pwlib use the case selection. After PWLib is initialized, here is a "simple" code to use the case selection (as well the new game menu):
Code:
setvar([pw_titlescript],"titlepage"); // This variable is the script we go to when we leave case selection. Basically it's our "starting screen" script.
setvar([pw_episodepath],"mygame/episodes/"); // Set the folder where our case images are kept, this is for the graphics while we're in case selection.
setvar([pw_episodes],2); // Set how many episodes we have, in this case, we have 2.
jumptoscript("titlepage"); // Go to the titlepage script.

[titlepage]
changetitle("PWLib: Case Selection"); // Set our games title
runscript("pw_showmain"); // show the main menu (new game / continue / exit)
waitresponse(); // wait for the user to click something
runscript("pw_hidemain"); // hide the menu.
setbgsize(0,0); // hide the background
jumptoscript("casemenu"); // If we got this far, lets call the case selection

[casemenu]
runscript("pw_caseselect"); // call the case selection! we do this here to prevent possible loop-backs and locking.
waitresponse();


This code was taken from the example file that is on the examples folder. It was made by DDRKhat (i'm not sure if this file is present on the current 1.1 core package). The Case Selection system was made by DDRKhat, btw.

Also each case have a predefined function that will be run:
[begin_caseX] is the entrypoint for case X, where X is the case number. When the case X is selected, this function is run.

To end a case (return to the case selection), use jumptoscript("pw_endcase");, but don't forget to hide the menus, bench, chars or anything else that was shown. Here is an example taken from the PWLib 1.2 Demonstration Game:

Code:
[dem_case1end]
runscript("hidepwmenu");
runscript("pw_hidecourtbench");
messageauto("");
runscript("pw_hidemessagebox");
runscript("hidepwchar");
placefadescreen(1,"O");
jumptoscript("pw_endcase");


And when ending a case, jump to the end function (eg.: jumptoscript("dem_case1end");). Don't runscript. The pw_endcase will automatically proceed to a "case completed" event (unlocking the next case, doing the animations, 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-3)Topic%20Title

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

Ahh, thanks a lot. :edgy:
Yea, I had check the example earlier, but hade no idea about the Turnabout picture thing, I'm a beginner in AHLSL or even coding. So those stuff might be difficult to understand even though I read through all that tutorial. :bellboy:
Again thank you, I hope these questions I have been "spamming" are not considered, "noob questions" as shown in the forum rules. :larry:
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Gender: None specified

Rank: Medium-in-training

Joined: Wed Aug 04, 2010 7:34 pm

Posts: 440

I downloaded PWlib just to check it out, it looks great, hope to see more of it ;)
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

Haha, I finally got past the case selection part, took about 3 days! I was wondering though if there's an easier way to center the text for when it tells you the location,time with the green message and the typewriter noise.
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

BlazinPhoenix wrote:
Haha, I finally got past the case selection part, took about 3 days! I was wondering though if there's an easier way to center the text for when it tells you the location,time with the green message and the typewriter noise.

runscript("pw_settypewritermsgbox");

:jake:

Although I'm not sure if it centers at the moment, it will do as of PWLib1.2

Sorry for my long hiatus guys, life got real busy again. Will be getting back in contact with KSA and working with him once more.
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

Rising Inspirations

Gender: Male

Rank: Decisive Witness

Joined: Sun Aug 01, 2010 8:46 pm

Posts: 241

DDRKhat wrote:
BlazinPhoenix wrote:
Haha, I finally got past the case selection part, took about 3 days! I was wondering though if there's an easier way to center the text for when it tells you the location,time with the green message and the typewriter noise.

runscript("pw_settypewritermsgbox");

:jake:

Although I'm not sure if it centers at the moment, it will do as of PWLib1.2

Sorry for my long hiatus guys, life got real busy again. Will be getting back in contact with KSA and working with him once more.


Great to hear man. And we all have our priorities. It can't be helped. Anticipating the release of 1.2 ;).
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

DDRKhat wrote:
runscript("pw_settypewritermsgbox");

:jake:

Although I'm not sure if it centers at the moment, it will do as of PWLib1.2

Sorry for my long hiatus guys, life got real busy again. Will be getting back in contact with KSA and working with him once more.



Yea, it doesn't center, but its an easier way to get that "typewriter" sound, thanks. :phoenix:

Radex wrote:
Great to hear man. And we all have our priorities. It can't be helped. Anticipating the release of 1.2 ;).

Haha, yeah. 1.1 looks great already. :edgy: And 1.2 does sound a lot better, hope it comes out soon. :)
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

BlazinPhoenix wrote:
DDRKhat wrote:
runscript("pw_settypewritermsgbox");

:jake:

Although I'm not sure if it centers at the moment, it will do as of PWLib1.2

Sorry for my long hiatus guys, life got real busy again. Will be getting back in contact with KSA and working with him once more.



Yea, it doesn't center, but its an easier way to get that "typewriter" sound, thanks. :phoenix:
Then at the moment it simply performs;
Green Text
Set Namebox to Blank (so it doesn't appear)
Set sound to Typewriter
in 1.2 it will also; Auto-Center the text.
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

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

Hmm, is the hobo Phoenix Wright messed up? Or is it just my coding? :yogi:
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 Hobo Phoenix from 1.1 packages is broken. I i recall it is a simple issue of incorrect sheets. I'll try to find the fixed one here.
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

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

KSA_Tech wrote:
The Hobo Phoenix from 1.1 packages is broken. I i recall it is a simple issue of incorrect sheets. I'll try to find the fixed one here.


oh, I already fixed it, but I moved the pictures around a bit to match something, I'll post the picture and the code changes tomorrow when I get on the picture if interested.
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 current version of Hobo Phoenix I have is fixed (i don't recall who sent me the fixed one). I think it was released some time ago (not sure), but PWLib 1.2's version is sure to be fixed.

I added some new games to the Third-Party PWLib Games list on the site (if i missed any, let me know). Also the "Turnabout Eyepatch" PWLib game is no more (the new PWLib Demonstration Game will take its place).

With DDRKhat back, I will be able to concentrate on some AIGE features I need to implement (directly connected to AHLSL Compiler).
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: None specified

Rank: Suspect

Joined: Wed Sep 17, 2008 4:07 pm

Posts: 6

I guess I'm being my usual silly self, but I can't seem to find any Edgeworth sprites in the GFX.rar

Do I need to download them somewhere else, or am I missing something here?
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

Xplosivv wrote:
I guess I'm being my usual silly self, but I can't seem to find any Edgeworth sprites in the GFX.rar

Do I need to download them somewhere else, or am I missing something here?


Yeah, the download didn't come with it. But I found someone who has already made an edgeworth sheet with it's coding. I wouldn't really recommend you do it because edgeworth has one of the most pictures and animation. Go search of Yggdrasil and download his game. It's quite fun too. :edgy:
And I'd credit if I post it online. :yuusaku:
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

Most characters aren't added to the PWLib 1.1 Core and GFX Packages, but can be found on the topic (most by Comaster). I decided to not update the packages to avoid confusion among users. If someone could compile a list of the download locations, it would save a lot of trouble for people seeking characters not present in the packages.
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

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

KSA_Tech wrote:
Most characters aren't added to the PWLib 1.1 Core and GFX Packages, but can be found on the topic (most by Comaster). I decided to not update the packages to avoid confusion among users. If someone could compile a list of the download locations, it would save a lot of trouble for people seeking characters not present in the packages.


Yeah, it took forever finding those gfx packages from comaster and others. :yuusaku:
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: None specified

Rank: Suspect

Joined: Wed Sep 17, 2008 4:07 pm

Posts: 6

Well, then at least I know I'm not being stupid.

I'll go and look for them.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title

Guy with many problems

Gender: Male

Location: Canada, Ontario

Rank: Suspect

Joined: Fri Aug 06, 2010 11:32 pm

Posts: 14

While I was coding my game, I noticed you can't make the character say sentences with ". Is there a way for someone to add quotes. Like, "Why did Phoenix enjoy the word "Objection"?".
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

Use \" to make AIGE print the ".
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

I'll list the chars here, if necessary, I'll place it in a new topic. I haven't tested the links, only organized them. Credits to their respective authors.

By Comaster


PW:AA
Quote:


PW:AA:JFA
Quote:


PW:AA:T&T
Quote:


AJ:AA
Quote:


By Lt. Morke

Filespace containing the following: Young Edgeworth, Edgeworth, Desiree, April May, Bellboy, Phoenix, and Franziska

Quote:


By Attorneyatlawl

AJ:AA
Quote:


By Radex

PW:AA
Quote:
Wendy Oldbag (including PW:AA:JFA): http://www.mediafire.com/?8l2chvaa1gw4y9y

* In pw_apollo.hlsl, remove "by comaster" or add // beside "by comaster" otherwise AIGE will crash.
Image


Last edited by Radex on Wed Aug 25, 2010 7:33 am, edited 4 times in total.
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

Radex wrote:
I'll list the chars here, if necessary, I'll place it in a new topic. I haven't tested the links, only organized them. Credits to their respective authors.

By Comaster


PW:AA
Quote:


PW:AA:JFA
Quote:


PW:AA:T&T
Quote:


AJ:AA
Quote:


By Lt. Morke

Filespace containing the following: Young Edgeworth, Edgeworth, Desiree, April May, Bellboy, Phoenix, and Franziska

Quote:


* In pw_apollo.hlsl, remove "by comaster" or add // beside "by comaster" otherwise AIGE will crash.


Outstanding list, all links work. Thanks a lot for that, Radex!
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

No problem :godot:, glad to help.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Your Sword Only Reflects Fear

Gender: Male

Location: the internet

Rank: Desk Jockey

Joined: Wed Aug 26, 2009 8:38 am

Posts: 53

I'm sorry if someone's said this before but any time i go to the site to download the case maker, my browser gives me this message "Safari can’t open the page “http://www.ksatechnologyhq.com:1357/site/” because the server where this page is located isn’t responding." Is there a mirror page to download it from or do I need to use a different browser or something?
Image



When life gives you skittles, chuck them at people and shout, "Taste the fucking rainbow!"
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 site is offline since yesterday (windows restarted due ot updates, and i forgot to run apache when i left for the university.)

As I get back home, i'll put the site back on.
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) Added test version of a new functionality on AHLSL, allowing function and command parameters to be ommited (eg, command(,,);). The ommited values will be set to the default value of the given parameter (if you ommit a string, the value of that param will be "").
- (AIGE) Optimized KSA Technology String Class.
- (AIGE) Small optimization on compiler.
- (AIGE) Fixed small bug with a certain feature of the Message Box.
- (PWLib) Fixed all instances of message calls on PWLib core and demonstration game that would cause aige to stop due to the new messagebox rule (message calls will halt aige if no messagebox is shown).
- (PWLib) New AIGE tweaks made PWLib use less ~30mb memory when loaded, as well made the loading a bit faster.
- (PWLib) Fixed issue from Message Box Update, where message boxes weren't moved propertly.
- (PWLib) Fixed issue with Perceive Text.
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 Aug 18, 2010 2:39 pm

Posts: 3

What language does this software use? C++?
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 is made in pure C++ (no managed stuff). AHLSL (made from scratch by me) is the language exposed by AIGE, and its syntax is based on the C/C++ language. PWLib is fully implemented on AHLSL.
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 Aug 18, 2010 2:39 pm

Posts: 3

It base on C++, but concluding to the PwLib in a nutshell , it is not an object oriented language?
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

AHLSL isn't object oriented yet. It is closer to C, and was created initially as a very simple command list language, so there wasn't an object oriented programming idea during that time.
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 Aug 18, 2010 2:39 pm

Posts: 3

Thanks for answering my question. The language is quite easy to use. What so ever, I am more use to OO Language, however I presume this is aim for casual programmers and most people doesn't have the time to learn such language as C++.

I will be looking forward to using this software. Learn it real quick (as I am already finish with the PWLib in a nutshell) and willing to help if you need anything.

Also you are going to add objects and strings an all those, right? And don't we need to dealloc or release anything to avoid memeory leaks?
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

Currently on AIGE 0.9.700a, strings are supported, but only as simple storage variables without editing possible.
On AIGE 0.9.800a, several string commands were added (like appendtostring).

For variables, AIGE uses two variable "spaces": The global one and the local one.
- On AIGE 0.9.700a, global variables cannot be deleted, while locals are automatically handled by the AHLSL stack. There is no pointers to variables here too.
- On AIGE 0.9.800a, the variable system stays the same, but it will be possible to delete a variable (global or local, prematurely) by the deletevar command.

As AHLSL supports structs on AIGE 0.9.800a, classes may be added to AHLSL in a possibly near future. Class instances will be possibly handled as a special type of global first, then be added on the local space (much like structs were when I first added them).
Also there will be pointers in AHLSL in the future.
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) Added new function to messageboxes (changemsgboxproperty).
- (AIGE) Optimized video creation, avoiding the recreation of a video file in case of buffer errors.
- (AIGE) Fixed issue of waitvideo command imposing a wait event in a case where the video object was created, but failed to have a video assigned (not assigned or error).
- (PWLib) Fixed issue on Minuki Extension related to the Perceive functionality.
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

I have returned!

Gender: Male

Rank: Decisive Witness

Joined: Thu Jul 02, 2009 7:53 pm

Posts: 264

Radex wrote:
I'll list the chars here, if necessary, I'll place it in a new topic. I haven't tested the links, only organized them. Credits to their respective authors.


Hmmm... I'll go see if I can find the ones I did.
Image
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

Attorneyatlawl wrote:
Radex wrote:
I'll list the chars here, if necessary, I'll place it in a new topic. I haven't tested the links, only organized them. Credits to their respective authors.


Hmmm... I'll go see if I can find the ones I did.


That would be great :phoenix: . Would help everyone.

I don't know if it hurts to ask, but does anyone happen to have the following:

A proper Franziska whiplash effect sheet or compatible PWlib set
Wendy Oldbag (preferably PW:AA)

I'm on the point in which graphics is becoming an issue. Hehe, almost entirely redesigned the button interface. And working on 2-3 bgs. And editing/redesigning two chars.

I suppose that's me being lazy for lazy's sake :yuusaku: . Still working on understanding the way animating works in PWLib, gonna need to learn it eventually, especially for the next planned episode. But, I'm excited, I believe my episode should be as large as Damion Shard, maybe even larger. Halfway done I believe coding wise (3000 or so lines), 3 cross examinations to go.
Image


Last edited by Radex on Fri Aug 20, 2010 12:54 am, edited 1 time in total.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

I have returned!

Gender: Male

Rank: Decisive Witness

Joined: Thu Jul 02, 2009 7:53 pm

Posts: 264

I think I found most of mine.

Daryan Crescend:http://download852.mediafire.com/i5emcmdoi0rg/jylhnzhctjo/Daryan.zip
Spark Brushel:http://download851.mediafire.com/4k7wabxw0esg/nfwwjoczlld/Spark.zip
Machi Tobaye:http://download851.mediafire.com/g24x7bo67pag/mtmrbyzhd2g/Machi.zip

I know I had more than this though... :sadshoe:
Image
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) Added ability for the Video System on AIGE to automatically use subtitles on MKV files. The system needs ffdshow installed, with the Subtitles option enabled to work.
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) Chanbged behavior of AIGE's video player. Now MKV files won't automatically use its subtitle if available. To make the player use subtitles, a new command was added.
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

Spoiler:
ImageImageImageImageImageImageImage ImageImageImageImageImageImageImageImage


Wendy Oldbag for PWLib 1.1

http://www.mediafire.com/?8l2chvaa1gw4y9y


Posting it here in case any PWLib user needs the Wendy Oldbag set.

Tell me if there are any problems.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

이의 있소!

Gender: None specified

Rank: Suspect

Joined: Sat Aug 28, 2010 4:17 am

Posts: 3

Hi, I have a question about PWLib and I didn't really know where in the forum to ask, so I will just ask here if that's ok.
I was reading the PWLib in a Nutshell tutorial book and I followed everything it did, but whenever I tried to load the tutorial game, a blank screen showed up. Everything loaded fully and the top even said the title of the game, however it always shows just a white screen. I am not really sure if this has been answered already and it might have to do something with "stoppers" (I think?) but I don't really know. Sorry if this has already been asked but if someone could help... THANKS in advance!!!! :D
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

Reason wrote:
Hi, I have a question about PWLib and I didn't really know where in the forum to ask, so I will just ask here if that's ok.
I was reading the PWLib in a Nutshell tutorial book and I followed everything it did, but whenever I tried to load the tutorial game, a blank screen showed up. Everything loaded fully and the top even said the title of the game, however it always shows just a white screen. I am not really sure if this has been answered already and it might have to do something with "stoppers" (I think?) but I don't really know. Sorry if this has already been asked but if someone could help... THANKS in advance!!!! :D


Is your tutogame.hlsl file inside the "auto" folder? If it's not, put it in there, and try again. This may not solve it, since you mentioned the title of the game appeared. But if it doesn't work, post your code here under a "Code" tag.
Image
Page 124 of 131 [ 5218 posts ] 
Go to page Previous  1 ... 121, 122, 123, 124, 125, 126, 127 ... 131  Next
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

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