Search found 941 matches

by SusanTheCat
Fri Jan 29, 2016 8:49 am
Forum: Ren'Py Cookbook
Topic: Spot The Difference Game skeleton
Replies: 3
Views: 3342

Spot The Difference Game skeleton

I made a system for making a "Spot the Difference" game in Ren'Py. You are welcome to use the code any way you see fit. I do not provide any support (mostly because I am currently dealing with brain lesions from cancer) Features: - left and right image - click on either side - random diffe...
by SusanTheCat
Mon Jan 04, 2016 10:09 pm
Forum: Creator Discussion
Topic: Player Feedback, Character X Liked/Approved that
Replies: 9
Views: 1431

Re: Player Feedback, Character X Liked/Approved that

Other option would be to make the feedback optional. Then you could play it through "blind" a couple of times, but then switch to feedback mode to try to get all the endings.

Susan
by SusanTheCat
Mon May 11, 2015 8:36 pm
Forum: Other Visual Novel Engines
Topic: Simple games made with other engines
Replies: 3
Views: 1751

Re: Simple games made with other engines

Construct 2 looks like a good one.

Susan
by SusanTheCat
Thu May 07, 2015 8:43 pm
Forum: Other Visual Novel Engines
Topic: Simple games made with other engines
Replies: 3
Views: 1751

Re: Simple games made with other engines

Twine added.

Game Maker (windows), Jaguar (Javascript), Adventure Game Engine (windows) games made. I just need to write the tutorials.

PLEASE add any other game engines I should try.

Susan
by SusanTheCat
Fri May 01, 2015 9:06 pm
Forum: Other Visual Novel Engines
Topic: Simple games made with other engines
Replies: 3
Views: 1751

Simple games made with other engines

I am creating a bunch of tutorials on making a simple point and click style game using various engines. So far I have * JSGAM ( Play ) * Inform 7 ( Play ) * Twine ( Play ) The set up is you are left outside a cabin. There are two locations: Outside the cabin and Inside the cabin. You need to get a p...
by SusanTheCat
Wed Mar 04, 2015 1:03 pm
Forum: Completed Games
Topic: Ren'py Vertical Word Puzzle [All][puzzle][CC by]
Replies: 3
Views: 19120

Re: Ren'py Vertical Word Puzzle [All][puzzle][CC by]

I updated the game.

You can now load an xml quote file from the Main menu. The are two files now: the original Biblical quote file and another with random quotes.

Susan
by SusanTheCat
Tue Mar 03, 2015 4:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Android can't load data from a file
Replies: 2
Views: 458

Android can't load data from a file

I am having trouble loading an xml data file on Android. Error message: Couldn't find file 'verses.xml' I am using renpy.loader.transfn("verses.xml") to load the file. How do I get it to find the file? Is there somewhere I can put it so it could read the file? The game is available here: h...
by SusanTheCat
Tue Mar 03, 2015 1:43 pm
Forum: Completed Games
Topic: Ren'py Vertical Word Puzzle [All][puzzle][CC by]
Replies: 3
Views: 19120

Ren'py Vertical Word Puzzle [All][puzzle][CC by]

Ren'py Vertical Word Puzzle is a puzzle game similar to Drop Quote puzzles. screenshot0001.png You are presented with a quote where the letters have been mixed up along the columns. Using the spaces and punctuation given, you have to figure out the quote by sliding the letter up and down the column...
by SusanTheCat
Mon Mar 02, 2015 5:38 pm
Forum: General Discussion
Topic: ████▓▒░ NANORENO 2015 ░▒▓████
Replies: 99
Views: 19772

Re: ████▓▒░ NANORENO 2015 ░▒▓████

I bought a real cowbell for Cowbell Hero!

Susan
by SusanTheCat
Sun Mar 01, 2015 3:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Textbutton backgrounds not showing up
Replies: 3
Views: 693

Re: Textbutton backgrounds not showing up

It was the video card. I updated Direct X and forced it to use Direct X and it is now working.

Susan
by SusanTheCat
Sat Feb 28, 2015 9:51 pm
Forum: General Discussion
Topic: Postcards from Canada
Replies: 13
Views: 2191

Postcards from Canada

I just bought a bunch of postcards and want to feel more connected to people. I will send a postcard to the first ten people who reply to this message. I ask that you send me the mailing information in a private message. 1.Hazel-Bun 2.trooper6 3.Caveat Lector 4.PyTom 5.Obscura 6.Fenrir34 7.alberte 8...
by SusanTheCat
Sat Feb 28, 2015 9:42 pm
Forum: Ren'Py Questions and Announcements
Topic: What is considered a checkpoint? Saving/Rollback woes...
Replies: 7
Views: 1864

Re: What is considered a checkpoint? Saving/Rollback woes...

When you call the screen: does it only return one value or does it return a value after every drag and drop?

Susan
by SusanTheCat
Sat Feb 28, 2015 9:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Getting cElementTree working in Ren'Py [SOLVED using json]
Replies: 4
Views: 1755

Re: Getting cElementTree working in Ren'Py

Are you forced to use cElementTree?

The reason I ask is I have successfully used

Code: Select all

import xml.etree.ElementTree as ET
tree = ET.parse(renpy.loader.transfn(rv))
Susan
by SusanTheCat
Sat Feb 28, 2015 9:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Textbutton backgrounds not showing up
Replies: 3
Views: 693

Textbutton backgrounds not showing up

I am making a dynamic list of files. Unfortunately, when the buttons are in a vbox, only the corners show up: screenshot0001.png The first Hello button is NOT in the vbox, the second uses the same code but IS in the vbox. screen filelist(files): side "t c r": area (200, 100, 400, 400) text...