Board index » Present Evidence » Games

Page 114 of 131[ 5218 posts ]
Go to page Previous  1 ... 111, 112, 113, 114, 115, 116, 117 ... 131  Next
 


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

Gender: Female

Rank: Suspect

Joined: Wed Feb 10, 2010 10:16 am

Posts: 5

Hey, there. First, I'd like to congratulate everyone who has worked or is working on this casemaker! A friend and I have been considering making a fangame, so I just recently started researching technical details. I believe PWlib looks the most like what we would be looking for, and looking at all the incredible work you all did, I feel quite awed. Really, congratulations! :minuki:

But, ah, I guess I feel a bit embarrassed as to the reason for this message... I started testing PWlib, but I think I fiddled with what I shouldn't have! I was a bit peeved that the game window wouldn't close normally when launched (I always had to call the Windows task manager and stop it abruptly). So, as the mad (and inexperienced) programmer I sometimes am, I tried adding "quit();" at the end of my "TutoGame.txt". It seemed to work, but now, I can't relaunch the AIGE application, even after rebooting my computer (and erasing "quit();").

Any idea on how to correct this problem? I would be deeply grateful! Everything worked perfectly until I added that stupid line. :edgeworth: I even replaced my code in "TutoGame.txt" with one of the first tutorials', to no avail.

For that matter, is it a normal behaviour of PWlib that the game window won't close when asked, or did I miss something else?
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

Dragonwing wrote:
But, ah, I guess I feel a bit embarrassed as to the reason for this message... I started testing PWlib, but I think I fiddled with what I shouldn't have! I was a bit peeved that the game window wouldn't close normally when launched (I always had to call the Windows task manager and stop it abruptly). So, as the mad (and inexperienced) programmer I sometimes am, I tried adding "quit();" at the end of my "TutoGame.txt". It seemed to work, but now, I can't relaunch the AIGE application, even after rebooting my computer (and erasing "quit();").

Any idea on how to correct this problem? I would be deeply grateful! Everything worked perfectly until I added that stupid line. :edgeworth: I even replaced my code in "TutoGame.txt" with one of the first tutorials', to no avail.

For that matter, is it a normal behaviour of PWlib that the game window won't close when asked, or did I miss something else?


Sounds like there is a missing line in AIGE's script that won't let you boot it. AIGE will crash if you remove a few lines. Did you edit by any chance the startup script in the scripts folder? If you remove a line there, then its not going to work... I think.

I'd be able to help more if you posted your script in the [code] function. The same can be applied to any of us who know how to help.

There was a bug on 1.1 that wouldn't allow the window to close but KSA_Tech has fixed this problem.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Female

Rank: Suspect

Joined: Wed Feb 10, 2010 10:16 am

Posts: 5

Thank you for your quick reply!
Here is the code in "startup.aigehls":
Code:
//This file is the entrypoint file for any AIGE game: startup.aigehls
//First we include the game's starting script
//#include(game.hlsl)
#include(TutoGame.txt)

//Just like most languages, an entrypoint function is defined. In AIGE HLSL this function is [main]
//You're not obligated to put the main function in this file, but it is recommended to do so.
[main]
//Render and Process System Events to protect not found scripts
render();
processsystemevents();
//We are jumping to the function game that must be present on the game's files. (using runscript here isn't recommended)
jumptoscript("game");
waitresponse();

And in my "TutoGame.txt":
Code:
#include(pwlib/pwlib.hlsl)


[game]
jumptoscript("setup");


[setup]
runscript("pw_initpwlib");
runscript("pw_initpwbgs");
runscript("charcreation");
changetitle("Tutorial");
jumptoscript("run");


[charcreation]
runscript("pw_createema");


[run]
jumptoscript("initscene1");


[initscene1]
runscript("pw_usepwbgcourthall");
runscript("pw_showadvarrowmenu");
jumptoscript("scene1");


[scene1]
runscript("showpwchar");
runscript("pw_showmessagebox");
runscript("setlipsynctochar");

runscript("pw_enableemanormal");
runscript("pw_setnameboxtoema");
message("Yes!");
message("My name is Ema Skye!");

I downloaded the 1.1 version, so I guess that explains that. I'll be patient until the release of 1.2, I guess. ^^
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

You shouldn't have that extra tutogame.hlsl in your script. It won't run.

Replace the lines of startup.aigehls with this.

Code:
//This file is the entrypoint file for any AIGE game: startup.aigehls
//First we include the game's starting script
//#include(tutogame.txt)

//Just like most languages, an entrypoint function is defined. In AIGE HLSL this function is [main]
//You're not obligated to put the main function in this file, but it is recommended to do so.
[main]
//Render and Process System Events to protect not found scripts
render();
processsystemevents();
//We are jumping to the function game that must be present on the game's files. (using runscript here isn't recommended)
jumptoscript("game");
waitresponse();


It should work now- I tried it out myself with your script.

Aah, 1.2 isn't out yet and might not be for a while. Try experimenting with 1.1. There are quite a few features on there but a lot of it has been unexplored such as investigations :p
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Female

Rank: Suspect

Joined: Wed Feb 10, 2010 10:16 am

Posts: 5

Got an error message with the code you gave me. I removed the "//" before the #include, but even with the superfluous include out, I get the same result as before: I can see the AIGE process starting in the Windows task manager, but it disappears after a few seconds, and the game window doesn't open.

Just to check, that bit of code is now:
Code:
//This file is the entrypoint file for any AIGE game: startup.aigehls
//First we include the game's starting script
#include(tutogame.txt)

//Just like most languages, an entrypoint function is defined. In AIGE HLSL this function is [main]
etc.

I am pretty sure I messed up by using that "quit();" line... But I am nowhere near experienced enough in programming to understand what it set off. :larry:

But yes, I do intend to continue experimenting with 1.1 until 1.2 is released! ... If I can correct my blunder, that is. :payne: Thank you for your help, I really appreciate it. ^^
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

I just tested the TutoGame.txt script on both pwlib 1.1 clean install and 1.2 current revision, and both worked.

First, do not edit the startup.aigehls. Depack pwlib 1.1 core again if needed to get a fresh, untouched set of files.
Then put the tutogame.txt on the auto folder.
Once you run AIGE.exe, the script should.

Using the auto folder is better then editing the statup file.

Also, the quit() command orders AIGE to close immediately (without questions asked).
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: Wed Feb 10, 2010 10:16 am

Posts: 5

Thanks for taking the time to help me, KSA!

I tried what you said, even depacked the core again, but unfortunately it didn't work. So, at my wit's end, I erased everything and reinstalled all of PWlib from scratch... and now, it works. Even with the "quit();" line. :keiko:

So now, I have to admit I probably messed with something I shouldn't have in the content of the GFX package... Boy, do I feel stupid. :payne:

Thanks to the both of you for trying to help me out! I'll go back to experimenting, and try to be more careful. :bellboy:

EDIT: Found it! (Because I have nothing else to do than retry everything I did yesterday that could have turned out wrong, apparently...) It had downloaded the Apollo character in this topic, and I finally realized all my problems stemmed from a line in the hlsl file that should have been commented, but wasn't. I had even seen Comaster warn about this, and didn't think to check at all. :payne: So now, all is good. ^^
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

Glad you solved that problem Dragonwing. I too encountered the Apollo problem as well last year :(
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)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 had the same problem as well. I recall asking about it too :godot:
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-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 issue with Apollo is in fact an error on AIGE 0.9.700a itself failing to handle a certain case during code read.

AIGE 0.9.800a has this issue fixed.
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: Wed Feb 10, 2010 10:16 am

Posts: 5

Well, anyway, it's good to know I wasn't the only one who encountered that problem. ^^
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 more functionality to the Video Playback System.
- (Libraries) Updated Video Wrapper Library.

----------------------------
About PWLib 1.2 Beta: I'll try to complete the demo game as soon as possible, and send it to the first pre-selected users (Chistie, DeMatador and DDRKhat). I was thinking on adding one extra person to the list, but he showed he doesn't deserved it.

More people might be selected for the second final batch to test PWLib 1.2.
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

KSA_Tech wrote:
About PWLib 1.2 Beta: I'll try to complete the demo game as soon as possible, and send it to the first pre-selected users (Chistie, DeMatador and DDRKhat). I was thinking on adding one extra person to the list, but he showed he doesn't deserved it.


Are you talking about me?
I'm just need to know the times of one talking animation and I'll be set. :yogi:
Image
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

Attorneyatlawl wrote:
KSA_Tech wrote:
About PWLib 1.2 Beta: I'll try to complete the demo game as soon as possible, and send it to the first pre-selected users (Chistie, DeMatador and DDRKhat). I was thinking on adding one extra person to the list, but he showed he doesn't deserved it.


Are you talking about me?
I'm just need to know the times of one talking animation and I'll be set. :yogi:


He is talking about me but KSA_Tech doesn't need to beat around the bush when he implies who that person is. I did warn him that I would be changing but I failed to get a proper response back from him.
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

Dragonwing

I hope you have a good time working with PWLib 1.1.


Attorneyatlawl

Of course it isn't with you. You never gave up on trying to help. You have a good chance to be selected for the second list.


Ptapcc

Considering you talked to me about A and posted B, you lost your chance on the first list, and probably the second one. I used to respect you and when you came to me you said one thing, but from what you posted, it is totally different. No wonder you doesn't deserve to be on the first list. If you posted what you talked to me about, I would certainly not care at all. Thanks for that.

I never expect you to disappoint me so greatly. I USED TO RESPECT YOU.


-----------------------------------------------------------------------------------------------------------------------------------------------------
PWLib 1.2 Beta - Changes
- I'll begin now the testing with the first list of pre-selected users. With them, i'll finish the Demnstration Case.
- The second list will be selected once the Demonstration Game is done, and some suficient testing is done.
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

D:

Gender: None specified

Rank: Suspect

Joined: Thu Feb 04, 2010 5:22 pm

Posts: 24

You must be joking. "I USED TO RESPECT YOU"...Pfff...How old are you? Let me guess..Seven years old?

Seriously. If someone doesn't want to use your casemaker, you can't act like that. He has his reasons, and if you don't agree with him, say "Well, I don't agree with you..but that is your opinion"..But making some forum drama just because of that? You must be kidding me. Seriously.
Credits to Elriel for the avatar.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

KSA_Tech wrote:

Ptapcc

Considering you talked to me about A and posted B, you lost your chance on the first list, and probably the second one. I used to respect you and when you came to me you said one thing, but from what you posted, it is totally different. No wonder you doesn't deserve to be on the first list. If you posted what you talked to me about, I would certainly not care at all. Thanks for that.

I never expect you to disappoint me so greatly. I USED TO RESPECT YOU.



Do you think I don't know that? Your engine is superb, there is no doubt about that. The problem is that you have been told by me several times that I cannot 'wait' for one tiny aspect (Perceive). Did you want me to dumb down what I wrote to you in that MSN Conversation (I saved it btw as evidence) to protect your reputation? As someone once said, you do not control what I do KSA_Tech. If another engine can provide what is missing, then I will gladly take that opportunity. Of course, it doesn't hurt that Pywright was my original case maker of choice.

I respected your engine and you KSA but I cannot stay idle forever.

Any further discussion can be done via PM.
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

You said one thing (using pywright for come cases, and pwlib for others) but that isn't what you posted. That is my point at disappointment. Aside from that, I know that I'm late (so that I even started the beta now, with DeMatador receiving PWLib 1.2 now).

I know you want to go ahead and make your game, but you could have posted what we discussed (you use pywright for some cases, then pwlib for others), so I wouldn't have minded at all.

But now, I have more important stuff to work on, like testing PWLib 1.2 and completing the Demonstration Case instead of talking with you 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
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

Enough fighting, guys, please. I won't comment, but I'll just ask you to please take it to PMs.
---------
In much more important news, I've recieved the 1.2 Beta files perfectly. Curiousity: the PWLib Mio 1.2 Beta folder is 181 MB. PWLib Hayase 1.1 Final Release was 100 MB.

So far, I couldn't test anything out (aside from the Updater, the smoooooth loading screen, and the Game Selector), and I'm going to bed now (6:30 AM). If KSA agrees, tomorrow I'll write a review, with screenshots and everything.
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

I won't lose my time pm-ing someone who acts like that. Saying one set of things and doing a totally different one is really a mark of a distrustful person. I really didn't expected this from him, but well, in CR this seems the normal way. At least I have people like DeMatador who are trustful here.

---------------------------------------------------------------
We will talk on MSN about what can/cannot go public as of now. Chistie is having issues with her PC (so that's why the demo game was delayed), and I'll talk to DDRKhat as soon as possible.
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

Some news:
-(PWLib - Mikumo Extension) Fixed collision issue on the walking section.

------------------------------------
Important Notes
- With the primary beta testing, ad well help from DeMatador and DDRKhat, I'll be developing and finishing a first version of the Mikumo Extension (since the collision issue is fixed) in parallel with developing the cases of the Demonstration Game (so probably the demo game might even contain a demo of GK gameplay).
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

Eco wrote:
KSA_Tech wrote:
I never expect you to disappoint me so greatly. I USED TO RESPECT YOU.


Image


Aw shnap you got 'im. You'r wit is admirable.

Seriously, it's not funny. We could talk about funny quotes regarding casemakers (boy I just got one about Valentine's Day and disappointment), but not here.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

LuAA Developer

Gender: Male

Rank: Prosecutor

Joined: Thu Jan 01, 2009 4:46 pm

Posts: 607

DeMatador wrote:

Aw shnap you got 'im. You'r wit is admirable.

Seriously, it's not funny. We could talk about funny quotes regarding casemakers (boy I just got one about Valentine's Day and disappointment), but not here.


I'll try and get TotT out this week, ok? No worries.

Just let me perfect LuAA in the meantime.

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

Let's not whip a sick horse, people.

I mean, let's not beat a dead horse, people. (Damn you, T&T)

Seriously, all that's come and gone, so let's allow KSA_Tech to continue using his topic. I'm hoping to hear good news about 1.2. Good luck!
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-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

B12Core wrote:
DeMatador wrote:

Aw shnap you got 'im. You'r wit is admirable.

Seriously, it's not funny. We could talk about funny quotes regarding casemakers (boy I just got one about Valentine's Day and disappointment), but not here.


I'll try and get TotT out this week, ok? No worries.

Just let me perfect LuAA in the meantime.


Great, then tell your puppy to please get out.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

LuAA Developer

Gender: Male

Rank: Prosecutor

Joined: Thu Jan 01, 2009 4:46 pm

Posts: 607

DeMatador wrote:
B12Core wrote:
DeMatador wrote:

Aw shnap you got 'im. You'r wit is admirable.

Seriously, it's not funny. We could talk about funny quotes regarding casemakers (boy I just got one about Valentine's Day and disappointment), but not here.


I'll try and get TotT out this week, ok? No worries.

Just let me perfect LuAA in the meantime.


Great, then tell your puppy to please get out.


If you're referring to Eco, don't associate him with me... especially without any basis behind it. Don't associate everyone that dislikes KSA_Tech's attitude with me, he's not exactly the most peaceful person on C-R...

Him coming in here was his choice; I don't see why you choose to feel that I am in control of his actions.

I'm just here to defend myself. It was rather immature of you to bring me into this.

We can continue this through PM tyvm.

Image
priceless.


Last edited by B12Core on Tue Feb 16, 2010 4:04 am, edited 2 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

B12Core wrote:
If you're referring to Eco, don't associate him with me... especially without any basis behind it.

Him coming in here was his choice; I don't see why you choose to feel that I am in control of his actions.

I'm just here to defend myself. It was rather immature of you to bring me into this.

We can continue this through PM tyvm.


Not associate Eco with you? Boy, that's a funny one.

Don't worry, I'm done.
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

Yesterday, after an example script KSA showed me, I wrote a small test game testing the Logic System. Just for everyone's information, there are some animations which need fixing (it is the Beta, after all), but the core works flawlessly. And may I add, it's very simple. So simple, yet so effective.

KSA, I wanted to ask this for a long time, but how are things going on with "PWLib Unleashed"? Last thing I knew, you were trying to find a suitable skin for the book, but that was a long while ago.
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

Really, the thing with Patpcc was gone (I really wanted to sit and talk to him, but I know that I would like to know why he didn`t post what we talked about, but anyway, it is barely and issue now). I do still respect Ptacpp because he was always a nice guy. I think he had dis motives to post the way he did. As I said, I just wanted to talk wit him on MSN a bit.

Eco and B12Core never fail to quote me and resurface bad stuff. No matter if it`s done, they will resurface it. I would like they stop with it. It leads to silly wars, and flamming. I think B12 had some rules to not post here. I didnt`t post on his topic since Ceres placed the order. I was honest with the rules in place. I really doesn`t want issues with other casemaker.

Thanks, papermario, you`re saying just the right thing. It`s all come and gone now. Why ever try to kick it?

I want some peace here, what I hope to see in the future when people like Eco are gone. Why the need to go into my topic and make comments like that? What with B12Core quoting me with the objective to make me go and fight back (so get banned)?

-------------------------
Important news
- My notebook HD just decided to go down, taking Windows with it. I was able to save AIGE`s source (and pwlib) by using a live linux install from a bootable pendrive. This WILL, unfornately, delay pwlib 1.2 beta develoments. I will have to reuse my old server pc to develop and test the engine, but with DDRKhat and DeMatador helping, I might get through this a lot better.

Also replying to DeMatador, I will try to work on the book during the beta (with both of you helping to write, if you want 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

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

It'd be nice if the thing with Ptapcc was solved, really. He's a great PWLib developer and always willing to help with it, so it's a big loss having him out of the small (but growing) PWLib community.

Regarding your HD's death, that really sucks. It's great to hear that you could save AIGE and PWLib, though. I don't want to imagine what would happen if you lost all of it...

Sure, I'll help with the writing of Unleashed. Anything to get 1.2 out there soon.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

Gender: Male

Location: Melbourne, Australia

Rank: Ace Attorney

Joined: Thu Oct 08, 2009 10:56 am

Posts: 1371

KSA_Tech wrote:
Really, the thing with Patpcc was gone (I really wanted to sit and talk to him, but I know that I would like to know why he didn`t post what we talked about, but anyway, it is barely and issue now). I do still respect Ptacpp because he was always a nice guy. I think he had dis motives to post the way he did. As I said, I just wanted to talk wit him on MSN a bit.


I've signed onto MSN so if you want to discuss anything there then that's fine. Hopefully we can clear up everything as DeMatador knows why I acted the way I did. It wasn't because of the lack of Perceive. There was something else but I don't want to derail this thread now so we can talk about it on MSN.

I really like using PWlib. It's a great engine there's no doubt about that. I'm still willing to help with it, as highlighted by ROTP, ME: AA PWlib conversion and that secret project KSA_Tech :p
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

I don`t count Ptapcc out of the PWLib community. He just decided to use pywright for this own fangame (according to what we talked, because he wanted to do it and 1.2 needed features, like perceive and p-locks were not out yet).
Issue solved. While my notebook is out, i`ll be thinking about the future 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

I have returned!

Gender: Male

Rank: Decisive Witness

Joined: Thu Jul 02, 2009 7:53 pm

Posts: 264

Guys, paper is right, we shouldn't be arguing about this. This is KSA's thread to discuss the development of PWLib. NOT the place for people to argue.

If you're going to argue, bring it to PM or MSN.

ON-TOPIC: Demat, I need to consult for your help again for Jacques. :tennis:
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

Leave them. In short words, do not feed the trolls (as much as sometimes they need to be yelled at back).

Sure. I'm on MSN almost all the time now. As I'll setup the needed environment on my server pc to be able to work on AIGE again, we can talk anytime.
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

This is a bit of a pre-emptive post, I haven't gotten to trying out the coding aspect of it yet. But I must admit, after having quite a hiatus from PWLib then returning and comparing it to 1.1 I can guarentee you folks that you will certainly be pleasently surprised.

I'm not sure what I'm allowed to speak about yet but I'll just say that even without having gotten to making some test scripts or working on the demonstration case at all, I am quite happy with all the little features that have been added! There is alot more customizability for the user, and there seems to be tons more for the developer to toy with!

I will probably make another post later once I've had a full on headbutt into the coding but with just perhaps a hour of wetting my apetite with PWLib 1.2 I am already excited to be using this product once more, I will also promise you this is genuine interest on my part and not KSA twisting my arm (Like he ever could...).
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

The Rocking Attorney

Gender: Male

Rank: Medium-in-training

Joined: Fri Apr 11, 2008 11:49 pm

Posts: 375

Oh hey everyone, just dropping by now that AAI has pushed my hype levels into space and beyond.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

What is my liiiife?!?

Gender: Male

Location: UK

Rank: Admin

Joined: Tue Feb 27, 2007 11:02 am

Posts: 2504

Hey Eco? Come onto this topic again and troll, and I'll start suspending you. (And eventually ban you, if you don't get the hint)

Edit: Actually have a day's ban, Eco. If you do it again, then you'll get a week; third strike's a permaban.
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

The Rocking Attorney

Gender: Male

Rank: Medium-in-training

Joined: Fri Apr 11, 2008 11:49 pm

Posts: 375

I'm not really sure how much PWLib has changed since I last used it, but....is Hobo Phoenix supposed to look like...

Image

this?

I swear I have a dejá vu on the matter but IDK 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

GenoWhirl wrote:
Oh hey everyone, just dropping by now that AAI has pushed my hype levels into space and beyond.


It's understandable, since PWLib can emulate most of AAI since a while back, and now, with the availability of a localized game, we have even more to work on, but the core is mostly done. As far as I know, Confrontation and Logic (except for a couple of animations) are complete, and Walking Investigations was recently refined, with working collisions. So be hyped ;D

BTW, KSA, I haven't found you on MSN for a while, so I'll tell you here: I ripped from the AAI ROM a lot of localized buttons and graphics, including two logic animations (logic fact fading into the Logic button and Logic Succesful animation, where two buttons fuse into a white supernova), and I'm still working on it. If you could log on to MSN and talk to me, so I know you're there, I can send you the current package.

Also, GenoWhirl, I'll download Notepad++ on this laptop and try out Hobo Phoenix. I'm pretty sure he shouldn't work like that.
Image
Re: PWLib Casemaker (Released 1.1 at 14/09/2008 11:24PM GMT-3)Topic%20Title
User avatar

The Rocking Attorney

Gender: Male

Rank: Medium-in-training

Joined: Fri Apr 11, 2008 11:49 pm

Posts: 375

Maybe I downloaded the wrong Core/GFX package? Although I doubt it since it was from KSA's site
Page 114 of 131 [ 5218 posts ] 
Go to page Previous  1 ... 111, 112, 113, 114, 115, 116, 117 ... 131  Next
 
Display posts from previous:  Sort by  

 Board index » Present Evidence » Games

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

phpBB SEO