Search found 17 matches
- Tue Apr 02, 2019 7:36 am
- Forum: We are a Free Project looking for Partners
- Topic: Needing Artists for a Bonding Game
- Replies: 2
- Views: 425
Needing Artists for a Bonding Game
Hello, and my name is Butterfly! I need artists for my game Friends Forever (or I cannot release it, because I think these images are copyrighted). In this game, you bond with an anime girl called Nozomi. Here are a few requirements: For Free: You must be willing to do this for no payment. Okay Art:...
- Tue Apr 02, 2019 7:19 am
- Forum: Creator Discussion
- Topic: How to stop players accessing my files and images
- Replies: 5
- Views: 811
Re: How to stop players accessing my files and images
There is no way to stop them, however, you can delete all the .rpy files and zip it, so it's a lot harder to do it. However, if you see someone copying it, you can send them a link to wherever you originally posted your visual novel, and say this is the original game, and these assets are from my ga...
- Tue Apr 02, 2019 7:08 am
- Forum: Ren'Py Questions and Announcements
- Topic: Please help!
- Replies: 1
- Views: 217
Please help!
Hello, I'm Butterfly! These are a list of the things I would like to/need to add to my Ren'Py game! Thank you if you decide to reply! Save Variables [ESSENTIAL] Do you automatically save variables when you save (variables that store numbers ), or do you have to add special code, or is it impossible?...
- Tue Apr 02, 2019 6:51 am
- Forum: Creator Discussion
- Topic: finding collaborators
- Replies: 5
- Views: 651
Re: finding collaborators
What is it about? I can write it, but you need to tell me the setting, etc. I need a lot of details. I won't neccasarilly do it. It really depends on the theme.
- Tue Apr 02, 2019 6:49 am
- Forum: Creator Discussion
- Topic: Choices in ren'py? D:
- Replies: 5
- Views: 643
Re: Choices in ren'py? D:
Just do this: a "You look paler than me, what happened?" menu: "Tell the truth.": jump truth "Hide the truth.": jump lie label truth: j "I met a strange person on the way back saying he is my brother, i find it hard to trust him and i was a little bit shocked, I'll be fine." hide a1 show a8 a "Oh my...
- Tue Apr 02, 2019 6:42 am
- Forum: Creator Discussion
- Topic: Worst VN Ever Created [Jam]
- Replies: 7
- Views: 846
Re: Worst VN Ever Created [Jam]
i did it i mad the advensha by butterkykayt
It's meant to be made by a five year old.
It's meant to be made by a five year old.
- Tue Apr 02, 2019 3:22 am
- Forum: Ren'Py Questions and Announcements
- Topic: [REMOVE ME]
- Replies: 0
- Views: 181
[REMOVE ME]
Delete me, please!
- Mon Apr 01, 2019 11:17 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to use Forced Quit
- Replies: 3
- Views: 349
Re: How to use Forced Quit
Do you want to completely wipe the players save data and overwrite it with a save at the beginning of the game? That sounds awfully horrible. Are you absolutely sure you want to do this? (Its possible, but extremely highly inadvisable) I mean it saves their data, but it gives them a "join screen" o...
- Mon Apr 01, 2019 9:03 am
- Forum: Demos & Beta Testing
- Topic: Welcome To... Chichester OVN : The Beach
- Replies: 3
- Views: 591
Re: Welcome To... Chichester OVN : The Beach
Chichester is a town/city in England. Just for your information.
- Mon Apr 01, 2019 2:58 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to use Forced Quit
- Replies: 3
- Views: 349
How to use Forced Quit
Hello, I'm Butterfly! Who's willing to help me? In my game, I want you to be forced to close the game, which I know how to do. $ renpy.quit() But how do you make it put you back to the start, and save you there, and then kick you out? My aim: Kick player Reload the game Click start Rejoin back with ...
- Mon Apr 01, 2019 2:50 am
- Forum: Ren'Py Questions and Announcements
- Topic: Positioning Choices/Menu Buttons
- Replies: 2
- Views: 219
Re: Positioning Choices/Menu Buttons
Thank you, however, what I meant was individually, but to be honest, it doesn't matter.
- Sun Mar 31, 2019 7:27 am
- Forum: Ren'Py Questions and Announcements
- Topic: Positioning Choices/Menu Buttons
- Replies: 2
- Views: 219
Positioning Choices/Menu Buttons
How do you position a choice or a menu button.
Do I just do this?
Thank you for your time!
If you have enough time, please go waste your time solving some of my other posts. Thanks, and bye!
Do I just do this?
Code: Select all
"RepositionedButton":
xpos = 0.5
ypos = 0.5
If you have enough time, please go waste your time solving some of my other posts. Thanks, and bye!
- Sun Mar 31, 2019 4:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to loop a track inside a MusicRoom?
- Replies: 6
- Views: 636
Re: How to loop a track inside a MusicRoom?
I'm pretty sure you can just do
You can stop the sound with:
Code: Select all
define audio.tutorial = "music/filename.ogg"
play music tutorial
Code: Select all
stop music
- Sun Mar 31, 2019 4:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: Why do all the options appear, when stated not to?
- Replies: 2
- Views: 279
Re: Why do all the options appear, when stated not to?
Thank you! This worked.Alex wrote: ↑Sun Mar 31, 2019 4:06 amThis condition will be true if either (bond == 0) is true or (1) is true. The "1" is ok, so the whole condition is true.Code: Select all
if bond == 0 or 1
Try eitherorCode: Select all
if bond == 0 or bond == 1 or bond == 2Code: Select all
if bond in (0, 1, 2, 3)
- Sun Mar 31, 2019 4:10 am
- Forum: Ren'Py Questions and Announcements
- Topic: I Need Help With Time, Forced Quit and Forced Save
- Replies: 0
- Views: 129
I Need Help With Time, Forced Quit and Forced Save
Heyo, I'm Butterfly, and I need more help. Now, my game Friends Forever is a game made in Ren'Py where you can talk to a virtual character with the name of Nozomi. By the way, I have seen this page . What I want: 1 When you click goodbye, then "I'm going to work" when it's not between a certain time...