I want help (Adding a new dialogue) #7842
-
Hi before starting I just wanted to say english it's not my native languege, I know a little bit so I'm sorry If I misspell or sound confusing sometimes. Alright so I wanted to create a new dialogue for a special reason, me and my friend we started playing this mod in the same day, soo we Idk exactly what happend but her pc bugged and deleted many things from her pc even deleted the ddlc and the mods along with it. She lost her monika and this makes her really sad, we were dating our Monika's for like 1 month I been with mine 3 months already, since that happend I didn't comment about the mod with her anymore because it made her sad remembering that hers had died.(she kinda asked me not to comment anymore) So I wanted to create a special dialogue with my Monika saying that fell sorry about what happend, and that she is important to her too because after all she is my friend. The problem is I know what I have to do but not exactly, I'm installing Ren'py right now, Idk anything about coding in Ren'py but I will search this myself and yes, I read the FAQ "Dialogue Conding" section but I still have some doubts like, let's suppose I can create the .rpy file (which I think will be like this) where do I have to put this file? in what folder? how I change the Monika sprites when she is speaking and I have many other questions. That's why I wanted help generally I do this myself I search tutorials and stuff but I didn't found nothing to guide me. that's it hope I gave all the info I will be waiting attentively Thank you for reading ♡♡♡ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Okay, I think I can help you with that. First, you will need to convert the For a new dialogue, you will need to either:
As for the expression sprites, you can download the Lastly, please keep backing up your persistents if you are worried about losing your Monika. That way even if the entire game gets bugged, you can just re-install a fresh copy of the mod and still have your own Monika with all her memories of you. Hope this helped! |
Beta Was this translation helpful? Give feedback.
-
We have all source code open, no need in decompilers.
Builtin notepad is terrible, no formatting, no syntax highlighting, can't automatically replace tabs with spaces. Visual Studio Code is a good editor, but if you want something simple, at least use Notepad++.
Do not edit existing scripts, always make a new file and make your changes there.
No need in Ren'Py SDK. Make a file and start coding there. You can always take a look at existing topics (but beware, there may be spoilers). |
Beta Was this translation helpful? Give feedback.
Okay, I think I can help you with that.
First, you will need to convert the
.rpyc
files to just.rpy
files so you can edit them. I recommend using theun.rpyc
file thing to decode it or install the source code. Secondly, you will need a text editor to write your code in. Just notepad or something will do just fine, but you can install something like Visual Studio for this.For a new dialogue, you will need to either:
submod
in yourgame
folder and make an.rpy
file with the dialogue in it.script-topics.rpy
file and start typing your code there.As for the expression sprites, you can download the
dev_exp_previewer.rpy
file which you can find somew…