Search found 229 matches

by Karl_C
Mon Jul 27, 2015 12:59 am
Forum: Demos & Beta Testing
Topic: Human Reignition Project Demo
Replies: 6
Views: 2075

Re: Human Reignition Project Demo

Well, the story evolves a bit slow (I thought about to cancel playing and delete the demo), but it got much better further on. 'BxG romance game, with some light sci-fi and action elements' is not a good description in my view, I would call it 'BxG romance game, with some light film noir elements' (...
by Karl_C
Tue Jul 21, 2015 2:29 pm
Forum: Completed Games
Topic: Palinurus (Remastered) Release on Steam, December 9th, 2016!
Replies: 21
Views: 15990

Re: Palinurus (SciFi, Romance, BxG, Kinetic) [NaNoRenO2015]

A well written, very nice story.

Thank you for releasing it!
by Karl_C
Fri Feb 27, 2015 9:44 am
Forum: Ren'Py Questions and Announcements
Topic: Linux Error
Replies: 2
Views: 763

Re: Linux Error

This is not a message, this are the contents of the linux shell script? I guess the script opened in a text editor when the player clicks on the file? Probably you'll find the answer here: How to run .sh file BTW: Did you use a MS-Windows tool to build the archive (zip file)? This won't work, as Lin...
by Karl_C
Sat Jan 17, 2015 5:47 am
Forum: General Discussion
Topic: How to: Animated chatbots?
Replies: 3
Views: 1099

Re: How to: Animated chatbots?

With Ren'Py?

Have a look at pyAIML, an AIML Interpreter written in pure Python (FreeBSD license).

You'll need a set of AIML files too, for instance professor-chatbot-aiml-code (150,000 categories from the Wordnet 3.0 database, MIT License).
by Karl_C
Sun Jan 11, 2015 9:12 am
Forum: Ren'Py Cookbook
Topic: Basic Message System
Replies: 93
Views: 57714

Re: Basic Message System

Hi there!! This is absolutely perfect and a dream come true. A few questions if you don't mind ^^ I used the basic in-message system before this and I'm really bad with coding, but to achieve this kind of layout for my inbox, I defined styles and then changed the style values to shape and shop the ...
by Karl_C
Tue Dec 30, 2014 11:25 am
Forum: Ren'Py Cookbook
Topic: Basic Message System
Replies: 93
Views: 57714

Re: Basic Message System

Basically, the original code uses Ren'Py's "textbutton" function. I swapped that out with an imagemap and hotspots, Just curious: Would it also be possible to use an imagebutton for that? The imagebutton would have to change it's appearance, for instance from: http://upload.wikimedia.org/...
by Karl_C
Mon Dec 29, 2014 8:28 am
Forum: General Discussion
Topic: "Revised" Visual Novel Editor?
Replies: 10
Views: 3744

Re: "Revised" Visual Novel Editor?

Nice! http://i.imgur.com/wbthEhj.jpg http://i.imgur.com/ZUvsKpZ.jpg As there's currently some activity on GitHub , possibly the author of this editor will restart his project? You can give your feedback on his webpage btw: Revised, a simple visual editor (or wizard/assistant/GUI) for Ren’Py
by Karl_C
Sun Dec 28, 2014 7:24 am
Forum: Ren'Py Questions and Announcements
Topic: How do I move onto another route once chosen menu choice?
Replies: 16
Views: 2154

Re: How do I move onto another route once chosen menu choice

Take a look at 'Language Basics:Indentation and Blocks' in the Ren'py Docs : A block is open at the start of a file. A new block is started whenever a logical line is indented past the previous logical line. All logical lines inside a block must have the same indentation. A block ends when a logical...
by Karl_C
Sat Dec 27, 2014 9:15 am
Forum: Ren'Py Questions and Announcements
Topic: RAPT: Using 'Android Virtual Devices' for emulation?
Replies: 1
Views: 781

Re: RAPT: Using 'Android Virtual Devices' for emulation?

I found out by myself. Actually, it IS possible to use the Android emulator installed together with RAPT. You 'simply' have to start the Android SDK manager and let the Android SDK manager download a matching system image, then you have to create an 'Android Virtual Device'. After that you have to s...
by Karl_C
Sat Dec 27, 2014 8:45 am
Forum: Ren'Py Questions and Announcements
Topic: SDK error SOLVED
Replies: 10
Views: 1656

Re: SDK error

'I'm still getting nothing' means what?

'javac -version' still doesn't work?

Install the Java Development Kit (JDK), the Java Runtime Environment (JRE) is not sufficient to run the Android SDK.
by Karl_C
Sat Dec 27, 2014 6:02 am
Forum: Ren'Py Questions and Announcements
Topic: Choice Menu error in coding...HELP! (Solved)
Replies: 5
Views: 646

Re: Choice Menu error in coding...HELP!

label goforastroll As Googaboga already mentioned: It should look like this: label goforastroll: (You forgot the ' : ' at the end.) And you're using 'gogorastroll' somewhere instead of 'goforastroll': expected menuitem Label go g orastroll: Next time copy your code here between 'code' tags, like th...
by Karl_C
Fri Dec 26, 2014 9:48 am
Forum: Ren'Py Questions and Announcements
Topic: Cannot create a scene/background in Ren'py.
Replies: 2
Views: 429

Re: Cannot create a scene/background in Ren'py.

Speeny wrote:# Declare images below this line, using the image statement.
image sunet = "rsz_1638697.jpg"
'sunet'? I guess you meant 'sunset'?
by Karl_C
Thu Dec 25, 2014 12:55 pm
Forum: Ren'Py Questions and Announcements
Topic: RAPT: Using 'Android Virtual Devices' for emulation?
Replies: 1
Views: 781

RAPT: Using 'Android Virtual Devices' for emulation?

I'm just playing around a bit with RAPT, it seems to work very good so far. One question: Sometimes it would be helpful to see how the game would look like on a, say, Galaxy S4. As there are some AVD's already available ( GitHub: A collection of pre-configured Android emulator configuration files (A...