Search found 73 matches

by shaja
Fri Mar 10, 2006 5:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Aghh!! Strange errors persecute me??
Replies: 6
Views: 2098

$ is not the conversion specifier, actually - % is. So, try changing your line to: renpy.display_say("DEBUG", "Iteration %d of %d"%(i, l)) It may be useful to you while developing your game to run it from IPython . While doing that, if you get an exception in the game, you are ki...
by shaja
Fri Mar 10, 2006 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Aghh!! Strange errors persecute me??
Replies: 6
Views: 2098

Re: Aghh!! Strange errors persecute me??

I'm getting a strange crash when using the len() function. This is part of my code: python: l = len(inventory) renpy.display_say("DEBUG", "Inventory:\n%s\nTotal items: %s"%(str(inventory), str(l))) renpy.display_say("DEBUG", "Iteration $d of $s (valid:%s)"%(i...
by shaja
Wed Mar 01, 2006 4:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Weird exception; please help :S
Replies: 6
Views: 1908

Another problem with the script (easily fixed) is that the string variable interpolations are missing the closing 's' for each.

So, should be:

Code: Select all

DM "In your case (%(char_gend)s/%(char_class)s), the race is %(char_race)s"
by shaja
Sat Feb 25, 2006 1:29 pm
Forum: Creator Discussion
Topic: mac icons?
Replies: 2
Views: 1508

Mac icons are usually in an .icns file in the resources directory of their app bundle.
The standard Mac developer tools include a program called 'Icon Composer', which lets you import regular images to create an icon file, strangely enough.
by shaja
Fri Feb 10, 2006 10:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Traceback Bug with the demo + Eisenhower video
Replies: 6
Views: 1816

I spent a little time checking movie-playing configurations, and... I'm not sure I like Ike anymore. On my Mac Mini, OS X 10.4, running the demo from the Ren'py Launcher results in a CTD at the movie-playing point, with an identical traceback to what Alhrensblade posted. More: With config.debug_soun...
by shaja
Sat Jan 07, 2006 2:12 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

Planar geometry has never been so compelling.

When the "Rip Van Winkle" bit came, I was wondering why the voices were talking about a Love Hina character... ;)

So I googled Urashima Taro. Interesting story.
by shaja
Sun Jan 01, 2006 8:35 am
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

The general sequence of events remains the same, but the specifics change, even in the parts where you're interacting with the other protagonist.

Finding out why is part of the bigger mystery, I think.
by shaja
Sat Dec 31, 2005 6:23 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

I've been spending most of my free time with it for the past week, and really enjoying it. I've just played through to my second ending, and the stat counter says I've seen just over half the game. As the intro in the instruction booklet points out, although there is romance in the game, and the end...
by shaja
Sat Dec 31, 2005 1:17 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

FYI, I've been playing using the first voice.dat file linked (I think the Haeleth poster said it was from the Chinese version) but finally downloaded the Hirameki version yesterday. The two files aren't identical - the Hirameki voice.dat file is slightly smaller, but contains a few more voice files,...
by shaja
Tue Dec 27, 2005 3:46 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

Hirameki also has the voice file up for download now. (here)
by shaja
Sun Dec 25, 2005 10:37 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

And that's a shame, because... *cough* I love Yuu.

Asakawa, that is. :)
by shaja
Sun Dec 25, 2005 10:35 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

I installed it without any obvious failures and played a few minutes of it, and thought it was strange there were no voices at the start...

...just found the Hirameki thread on it, and yeah, it looks like I do have the voice.dat problem.
by shaja
Sun Dec 25, 2005 4:57 pm
Forum: Other Story-based Games
Topic: Ever 17
Replies: 146
Views: 44361

My copy arrived.

If anyone's still wondering, it's four cds, in two dvd-size cases and a box, same size as AYA.

Full installation size is 2.25GB.
by shaja
Thu Dec 22, 2005 5:09 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageDissolve transition generator
Replies: 10
Views: 6095

This is so neat! I've already found the perfect transition for exactly the effect I wanted -- "noise". Smile Can't wait to see what else is in here -- that was the second one I tried. <g> Thank you! You're welcome. It's nice to produce useful stuff. :) I would like to link this from the m...
by shaja
Wed Dec 21, 2005 9:06 pm
Forum: Ren'Py Questions and Announcements
Topic: ImageDissolve transition generator
Replies: 10
Views: 6095

ImageDissolve transition generator

My transition image generator, along with RenPy demo and some pregenerated transitions is now available here (1.4MB). Unzip to your main RenPy directory. Edit: I fiddled with the py2exe process, now the executable is much smaller. But the program itself is the same, so you don't need to bother downl...