Search found 14 matches

by jdeisenberg
Sun Jul 17, 2011 1:28 am
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

Wow, that looks great! Thank you very much; glad the code was useful for you. I'm looking at your script, and I'm thinking it might be useful to add a feature so that instead of having to do this: kurara, {image: "kurara_unsure.gif"}, kurara, "I think I just made myself hungry..."...
by jdeisenberg
Fri Jul 01, 2011 1:25 am
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

Except for audio, there's nothing that needs HTML5 (as far as I know), and the only CSS3 is the rounded rectangle corners on menu items. Do you have a link for the webpage graphic novel?
by jdeisenberg
Thu Jun 30, 2011 11:38 pm
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

If statement rewritten. Added text input fields, expanded the audio command.
by jdeisenberg
Sat Jun 25, 2011 10:48 pm
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

If you're using the code, don't get too enamored of the ifStatement; I am rewriting it entirely so that I can then implement save/load.
by jdeisenberg
Thu Jun 23, 2011 2:34 pm
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

When I hit the "Back to Beginning" button, it starts over without clearing the current state (the background doesn't change, and the music doesn't stop, so the new music plays over it). OK, it should be fixed now. If you're going to actually use the code, you're best off obtaining it from...
by jdeisenberg
Thu Jun 23, 2011 10:57 am
Forum: General Discussion
Topic: What is your religion?
Replies: 219
Views: 21176

Re: What is your religion?

Jew by birth, atheist by choice.
by jdeisenberg
Thu Jun 23, 2011 10:54 am
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Re: Visual Novel Engine in JavaScript

Thanks! If there are any features that you need, let me know, and I will see if I can implement them.
by jdeisenberg
Wed Jun 22, 2011 1:05 pm
Forum: General Discussion
Topic: need advices on a certain addiction to a certain game
Replies: 6
Views: 809

Re: need advices on a certain addiction to a certain game

As far as schoolwork is concerned: find someone in your class and schedule a "pizza-and-study session" where you can get away from the computer and get some studying done and have some fun at the same time.
by jdeisenberg
Tue Jun 21, 2011 10:50 pm
Forum: Other Visual Novel Engines
Topic: Visual Novel Engine in JavaScript
Replies: 14
Views: 4465

Visual Novel Engine in JavaScript

I have written a visual novel engine in JavaScript so that I could adapt a VN that I wrote with Ren'py to a web-based format. It was written specifically for this one project, but I tried to make it general enough that it might be useful to others. It's inspired by Ren'py, but not meant as a replace...
by jdeisenberg
Tue Jun 22, 2010 1:52 pm
Forum: Development of Ren'Py
Topic: ui as a displayable : Solved
Replies: 3
Views: 816

Re: ui as a displayable

Solved. Here's an example of code that lets me add several images to the Fixed layout. scale_layout = Fixed() if (left_total > right_total): image_name = "images/scale2.png" else: image_name = "images/scale1.png" scale_layout.add(im.Image(image_name, xpos=x_base, ypos=y_base)) fo...
by jdeisenberg
Mon Jun 21, 2010 8:14 pm
Forum: Development of Ren'Py
Topic: ui as a displayable : Solved
Replies: 3
Views: 816

Re: ui as a displayable

If you check the Layout section of the Displayables page of the manual it'll show you how to create the Displayable instances you need - so you'll create the Image you want first, and then create the Fixed and pass the Image as the first parameter. Thank you. This starts me in the right direction. ...
by jdeisenberg
Mon Jun 21, 2010 5:12 pm
Forum: Development of Ren'Py
Topic: ui as a displayable : Solved
Replies: 3
Views: 816

ui as a displayable : Solved

My script contains a Python function that creates a ui.fixed depending on certain variables. Here's an oversimplified version of the function: def make_drawing(a, b): ui.fixed() if (a < b): ui.image("a.jpg", xpos=100, ypos=50) else: ui.image("b.jpg", xpos=150, ypos=20) # more cod...
by jdeisenberg
Fri Mar 19, 2010 7:46 pm
Forum: General Discussion
Topic: Lastest Norton Eating my Games
Replies: 10
Views: 1670

Re: Lastest Norton Eating my Games

My brother couldn't use the game I told him to download at http://evc-cit.info/psych018/hypothesis_testing-win32.zip; Norton didn't like it. He is using Norton 2010 Internet Security, v 17.5.0.127 The zip file was built on a Linux box, so I'm pretty sure there's no Windows virus introduced from the ...
by jdeisenberg
Tue Mar 16, 2010 7:42 pm
Forum: Ideas
Topic: Educational Visual Novel
Replies: 4
Views: 1430

Educational Visual Novel

This is a small visual novel I put together to teach the concepts of hypothesis testing to my psych research methods class. http://evc-cit.info/psych018/hypothesis_testing.html I am sure that this is something that Ren'py was never intended for, but I did it anyway. Comments are welcomed. The back s...