Search found 23 matches

by Aoi14
Sat Jan 13, 2018 5:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Need Help, No module named _renpysteam
Replies: 2
Views: 3901

Re: Need Help, No module named _renpysteam

Try redownloading the Ren'Py SDK. That usually works :D
by Aoi14
Tue Jan 02, 2018 10:57 am
Forum: Ren'Py Questions and Announcements
Topic: Question about snow effect?
Replies: 1
Views: 619

Re: Question about snow effect?

Try checking this link out, it should help make your effect more realistic :D
https://www.renpy.org/wiki/renpy/doc/co ... now_effect
by Aoi14
Tue Jan 02, 2018 10:48 am
Forum: Welcome!
Topic: Guestbook
Replies: 5535
Views: 2719165

Re: Guestbook

Oooh wow, I missed the Guestbook completely -___- Better sign in then :D Name: Aoi14 Location: UK Website: I don't have one personally, but I do HTML coding for others so you could say I've made quite a few ;) My Games: I'm currently making two using Ren'Py- however, I like to think they're not just...
by Aoi14
Tue Jan 02, 2018 10:04 am
Forum: Ren'Py Questions and Announcements
Topic: How do you make the game scriptly delete files in renpy
Replies: 6
Views: 5835

Re: How do you make the game scriptly delete files in renpy

Ahh, sorry! Totally forgot that you needed to add files as well. However, to help you, I'll need a little more info: • Where do you plan on adding the files to? • Are they premade files(i.e. you've made an image already and just want it to appear) or do you want script.rpy itself to write the files?...
by Aoi14
Mon Jan 01, 2018 8:51 pm
Forum: Ren'Py Questions and Announcements
Topic: The bottom of my text keeps getting cut off.
Replies: 3
Views: 1275

Re: The bottom of my text keeps getting cut off.

I'm pretty stumped now :? Maybe try using a similar font to Arial, from Google Fonts, or redownload the Ren'Py SDK if it still doesn't work. Try Open Sans- works ok for me! https://fonts.google.com/specimen/Open+Sans?selection.family=Open+Sans Sorry if this is trouble; I hope you figure out the issu...
by Aoi14
Mon Jan 01, 2018 8:43 pm
Forum: Ren'Py Questions and Announcements
Topic: .exe Files in Ren'Py?
Replies: 6
Views: 927

Re: .exe Files in Ren'Py?

Perfect! Will definitely check this out. Pygame did prove tough, so it'll feel much nicer to venture back into nicer territory.
Thanks! :D
by Aoi14
Mon Jan 01, 2018 8:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Can I call a replay from anywhere?
Replies: 2
Views: 462

Re: Can I call a replay from anywhere?

I'm really not sure if this is helpful, but you could give each scene a label and jump to it at a replay. # Scene A goes here label Scene_A: "Hello etc." menu: "Other options": #irrelevant things here "Read your diary (Replay scenes)": menu: "Choose a scene to repl...
by Aoi14
Mon Jan 01, 2018 8:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Where to put music nor sound files?
Replies: 1
Views: 438

Re: Where to put music nor sound files?

If you asked script.rpy to run a music file, it would look for it in the same directory as script.rpy itself, which is the game folder. I'd recommend putting music files in the game directory itself. However, if you want to make a music folder in the game directory and put all your files in there, y...
by Aoi14
Mon Jan 01, 2018 8:27 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you make the game scriptly delete files in renpy
Replies: 6
Views: 5835

Re: How do you make the game scriptly delete files in renpy

You'll need to script this in Python, using the os family of commands. Here's something you could try: # At the start of script.rpy, add this code: init python: import os # Then, when you wish to delete files etc., try this. label start: python: os.remove('Desktop/MyFile.png') # Specify the file pat...
by Aoi14
Mon Jan 01, 2018 8:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding Titlescreen Music
Replies: 5
Views: 1685

Re: Adding Titlescreen Music

Hi! I can't exactly figure out the problem with your script- try pasting this code over the corresponding part in options.rpy, and it'll hopefully remove any faulty indentation. ## Uncomment the following line to set an audio file that will be played while ## the player is at the main menu. This fil...
by Aoi14
Thu Dec 28, 2017 7:45 pm
Forum: Ren'Py Questions and Announcements
Topic: "launching the project failed renpy" Need Help
Replies: 2
Views: 1321

Re: "launching the project failed renpy" Need Help

I am rather inexperienced, but when looking through your error message, it seems like you might be missing some key files. Perhaps try redownloading the Ren’Py SDK and see how that works.

Hope this helps! :D
by Aoi14
Thu Dec 28, 2017 2:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Text not showing up in Python While Loop
Replies: 5
Views: 1060

Re: Text not showing up in Python While Loop

Thank you! That works perfectly :D
by Aoi14
Thu Dec 28, 2017 1:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Text not showing up in Python While Loop
Replies: 5
Views: 1060

Re: Text not showing up in Python While Loop

Aaand I realised I was being stupid and not including the $ sign. But even that hasn't prevented me from making a rookie mistake: I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/script.rpy", line 407: invalid syntax $ re...
by Aoi14
Thu Dec 28, 2017 12:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Text not showing up in Python While Loop
Replies: 5
Views: 1060

Re: Text not showing up in Python While Loop

I tried renpy.say, but I got an error: I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 396, in script python: File "game/script.rpy", line 411, in <module> renpy.say("Your username or password is invalid.") TypeError:...
by Aoi14
Wed Dec 27, 2017 7:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Text not showing up in Python While Loop
Replies: 5
Views: 1060

Text not showing up in Python While Loop

I'm trying to make a username and password system in my VN. I've written this Python script to act as the login system: python: pow = True while pow: povnamee1 = renpy.input("Enter your username:") pworde1 = renpy.input("Enter your password:") povnamee1 = povnamee1.strip() pworde...