Search found 10 matches
- Sun Dec 12, 2021 3:14 pm
- Forum: Ren'Py Questions and Announcements
- Topic: renpy.input boxed in center of the screen?
- Replies: 12
- Views: 9371
Re: renpy.input boxed in center of the screen?
http://www.renpy.org/wiki/renpy/doc/reference/functions/ui.input I have tried this because I wanted to make an nvl visual novel, but I can't seem to put the input thing on top of the nvl thing. Maybe if I delete image of the nvl background? I don't want to do that though, so help on this would be w...
- Tue Oct 05, 2021 4:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help Creating Files that appear at specific parts of the game.
- Replies: 6
- Views: 4889
Re: Help Creating Files that appear at specific parts of the game.
$ chapter = 4 call ch4_main python: try: renpy.file(config.basedir + "/hxppy thxughts.png") except: open(config.basedir + "/hxppy thxughts.png", "wb").write(renpy.file("hxppy thxughts.png").read()) I tried this and it works, but displays an error message, do you know why?
- Thu Sep 30, 2021 10:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to know first letter of renpy.input?
- Replies: 3
- Views: 326
Re: How to know first letter of renpy.input?
Nvm I found something here
https://stackoverflow.com/questions/710 ... -in-a-list
https://stackoverflow.com/questions/710 ... -in-a-list
- Thu Sep 30, 2021 10:09 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to know first letter of renpy.input?
- Replies: 3
- Views: 326
Re: How to know first letter of renpy.input?
Even though it's useful, i meant knowing what the first character is (for example "a" in "animal")
- Wed Sep 29, 2021 2:46 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to know first letter of renpy.input?
- Replies: 3
- Views: 326
How to know first letter of renpy.input?
Ok, so I want to check the first letter of an input. So if for example I write ",commandhere" then it does something, but if it starts with "," but has something else behind I want to put an error message like "Unknown command" or something. If I haven't explained myself good enough please tell me s...
- Sun Sep 26, 2021 5:47 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Conceal something written on string
- Replies: 2
- Views: 274
Conceal something written on string
So I was reading a tutorial on how to do this but the "mask" thing doesn't work as expected. Followed the tutorial from here: https://www.renpy.org/doc/html/input.html And tried implementing it in this code: $ name = renpy.input("Username", allow="abcdefghijklmnopqrstuvwxyz0123456789_.", length=20) ...
- Sat Apr 17, 2021 6:51 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to change text in the History screen like in DDLC?
- Replies: 2
- Views: 308
Re: How to change text in the History screen like in DDLC?
Thank you! It works like a charm.Ocelot wrote: ↑Sat Apr 17, 2021 4:48 pmYou can edit history list entries. For example:Code: Select all
"Hi! I couldn't wait to see you again!" $ _history_list[-1].what = "I hate you. Wish you were dead." "If you check history now, you will notice that the last entry changed"
- Sat Apr 17, 2021 2:35 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How to change text in the History screen like in DDLC?
- Replies: 2
- Views: 308
How to change text in the History screen like in DDLC?
I was wondering how this could be done. I'm on the middle of making a short game with Ren'Py and I wanted to break the fourth wall a bit, y'know?
If someone knows, thank you!
If someone knows, thank you!
- Tue Mar 02, 2021 7:31 am
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py code corrupt after changing name of laptop
- Replies: 3
- Views: 256
Re: Ren'Py code corrupt after changing name of laptop
try this. 1. Do winkey + r 2. Type %appdata%/Renpy/backups then enter. look for your game folder, there should be a backup of your scripts there. Also, renpy always reminds you to backup your scripts before launching your game, if you haven't noticed. either do that manually or use version control ...
- Mon Mar 01, 2021 6:07 am
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py code corrupt after changing name of laptop
- Replies: 3
- Views: 256
Ren'Py code corrupt after changing name of laptop
I was trying to change my new laptop's user name but in the process I lost a lot of information. When I got back most of it, I realized that most of my code was corrupt, and the screens.rpy file is completely empty.
I don't want to throw away weeks of work, please help.
I don't want to throw away weeks of work, please help.