Search found 9 matches

by NineBells
Wed Nov 29, 2017 11:59 pm
Forum: Ren'Py Questions and Announcements
Topic: I have no idea what I'm doing!
Replies: 4
Views: 640

Re: I have no idea what I'm doing!

You have a lot of indentation and syntax errors. You forgot to add ":" at the end of "label nursery" and "label test_end". It should look like label test_end: and label nursery: That should solve the last two errors listed in your screenshot. The other errors are all be...
by NineBells
Fri Nov 17, 2017 11:53 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Customizing Save Slot Info. HELP!
Replies: 11
Views: 1480

Re: Customizing Save Slot Info. HELP!

Hi po. I'm not sure about this but try adding FileSaveName to the file picker screen like so: $ file_text = "{b}%s\n %2s. %s\n %s{/b}" % ( FileSaveName(save_name), FileSlotName(number, 6), FileTime(number, empty=_("Empty Slot.")), FileSaveName(number))
by NineBells
Wed Nov 15, 2017 12:07 pm
Forum: Development of Ren'Py
Topic: Ren'Py In-game SFX is still playing on [Main Menu]
Replies: 6
Views: 1660

Re: Ren'Py In-game SFX is still playing on [Main Menu]

Try this:

Code: Select all

textbutton _("Start") action [Stop("sound"), Start()]
by NineBells
Wed Nov 15, 2017 11:04 am
Forum: Development of Ren'Py
Topic: Ren'Py In-game SFX is still playing on [Main Menu]
Replies: 6
Views: 1660

Re: Ren'Py In-game SFX is still playing on [Main Menu]

Try adding

Code: Select all

Stop("sound")
into the action of the button you use to go to the main menu.
by NineBells
Tue Nov 14, 2017 10:58 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] imagemap issues: expected a keyword argument or child statement.
Replies: 5
Views: 4117

Re: imagemap issues: expected a keyword argument or child statement.

I don't really have any experience with playing sounds in Ren'Py but try putting sound inside double quotes like this: Play ("sound","duck.mp3") . Although if you're not using the code I provided before due to using the method below, you don't need to do this. ^^; As for reusing ...
by NineBells
Sun Nov 12, 2017 12:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved] imagemap issues: expected a keyword argument or child statement.
Replies: 5
Views: 4117

Re: imagemap issues: expected a keyword argument or child statement.

Currently untested but it should be something like this: In script.rpy: label start: jump quizq1 return label quizq1: call screen quiz_p1 return In some other .rpy file (screen.rpy, perhaps? or at the bottom of script.rpy?): screen quiz_p1: imagemap: ground "quizp1" hover "quizp1"...
by NineBells
Tue Sep 05, 2017 5:07 am
Forum: I am a Programmer, Director, or Other
Topic: New Ren'py programmer mostly looking for experience
Replies: 1
Views: 1638

Re: New Ren'py programmer mostly looking for experience

Current projects: Forsaken:Wish (waiting for files and further instructions) Diligent Detectives (current progress: main menu done; waiting for further files and instructions) TLH: Freud Was Right (current progress: GUI almost done, just the preferences screen left; variable testing and display don...
by NineBells
Mon Jun 05, 2017 12:47 pm
Forum: I am a Programmer, Director, or Other
Topic: New Ren'py programmer mostly looking for experience
Replies: 1
Views: 1638

New Ren'py programmer mostly looking for experience

BACKGROUND (How I Found Ren'Py) Hello! I'm new to Ren'Py and Visual Novels in general although I've had a bit of programming experience in C, Java and Assembly (I haven't been programming for almost five years though I still retain enough knowledge to figure out what's happening based on the codes ...