- Feb 5, 2019
- 219
- 57
I also get this error whenever I install the github files. Clean installs of the mod work fine. I've unren-ed archive.rpa and overwritten the game files with the github versions. Is there something I'm missing?When Trying to load the game.
You don't have permission to view the spoiler content. Log in or register now.
Mmm...... Are u sure about that? The dev explanations points to: rogue....../gameThe files you see in the root of the GitHub version need to be placed in the game folder.
NOT in the "/game/ " folder !!!
YES in the root "/ " folder where the Rouge-Like.exe is located.
You don't have permission to view the spoiler content. Log in or register now.
I would GUESS any updates to images go to "/game/images/ " but that is only my guess at this point. I have tried replacing the modded menu background to test and it is working. I would guess for any girl related image folders to belong there as well (e.g. "/game/images/[some-folder-name]"). Maybe someone from the official modding team can confirm this?
I think i tracked down the bug but not sure...label _("Background")
textbutton _("Modded") action Preference("background choices", "modded1")
textbutton _("Modded Laura") action Preference("background choices", "modded_laura")
textbutton _("Modded Rogue") action Preference("background choices", "modded_rogue")
textbutton _("Modded Kitty") action Preference("background choices", "modded_kitty")
textbutton _("Modded Emma") action Preference("background choices", "modded_emma")
textbutton _("Original") action Preference("background choices", "original")
Thanks for the heads up!!! If anyone who has updated his game with the github files and still has the start game bug, search for elif name == "background choices", and add this lines on your 00preferences.rpy file:@Grigori_127 Fixed the GitHub startup bug!!! I couldnt fix Emma start menú saddly u just forgot to upload 00preferences.rpy :3
just put screens.rpy in your mainfolder/game (in my case: Rogue-Like-0.978e-pc\game) and 00preferences.rpy in mainfolder/renpy/common (ej.: \Rogue-Like-0.978e-pc\renpy\common)
P.S.: renpy just got the best of me with the tab error D:
elif name == "background choices":
if value == "modded1":
return SetField(_preferences, "background_choices", "modded1")
if value == "modded_laura":
return SetField(_preferences, "background_choices", "modded_laura")
if value == "modded_rogue":
return SetField(_preferences, "background_choices", "modded_rogue")
if value == "modded_kitty":
return SetField(_preferences, "background_choices", "modded_kitty")
if value == "modded_emma":
return SetField(_preferences, "background_choices", "modded_emma")
elif value == "original":
return SetField(_preferences, "background_choices", "original")
if value == "modded_emma":
return SetField(_preferences, "background_choices", "modded_emma")
Yeah. I deleted it cause it was giving me a bug even with the lines. Its better to upload the files, a lot of people dont know about notepad+ or could get into the tab error just like me when editing the files.Thanks for the heads up!!! If anyone who has updated his game with the github files and still has the start game bug, search for elif name == "background choices", and add this lines on your 00preferences.rpy file:
The file is located in mainfolder/renpy/common as kenshuck mentioned!Code:elif name == "background choices": if value == "modded1": return SetField(_preferences, "background_choices", "modded1") if value == "modded_laura": return SetField(_preferences, "background_choices", "modded_laura") if value == "modded_rogue": return SetField(_preferences, "background_choices", "modded_rogue") if value == "modded_kitty": return SetField(_preferences, "background_choices", "modded_kitty") if value == "modded_emma": return SetField(_preferences, "background_choices", "modded_emma") elif value == "original": return SetField(_preferences, "background_choices", "original")
@kenshuck you having problem with Emma was probably because it was missing this code on your preferences file:
I've added those lines to your file and it worked just fine!Code:if value == "modded_emma": return SetField(_preferences, "background_choices", "modded_emma")
PS: If someone already downloaded the files in the post above I would suggest to "update" again then add the lines... Because it's missing a line of code on the screens.rpy, so that you won't be able to set Emma as the title background...
That's true. Here are the files if anyone want them. The screens.rpy goes into "Rogue-Like-0.978e-pc\game" and the 00preferences.rpy goes into "\Rogue-Like-0.978e-pc\renpy\common".Yeah. I deleted it cause it was giving me a bug even with the lines. Its better to upload the files, a lot of people dont know about notepad+ or could get into the tab error just like me when editing the files.
I just cut with the easy option, since I prefer just the original modded background, it was fiving me an error on line 520 dont know what caused it
Ps: just tried again and it didnt give me the error thats some weird shit, i think my pc just hates me u.u
If you really read the posts, you should have seen a discussion of the bugs and images indicating that the latest author's version was included in version 0.978e.
However, you are right that it is difficult for a new user to understand this approach. This is a flaw in the authors of the topic, who still have not made a clear indication of updates. Version 0.978e has not changed since its inception, but changes are occurring but this is not reflected in the numbering.
Here I would like to ask the developers to give clear explanations in the topic header and without fail to indicate the date of the last update and which author's version corresponds to the mod.
Okay, let me make a few things clear here.You are not tired of repeating the same thing. I asked you to explain normally where to copy. I say again, I opened the update on the githab and found a bunch of folders there that are not in the game folder. I have once copied everything into the game folder. And she stopped working at all. I had to delete and download again. In addition, if you are already referring to the githabs put things in order too. During the search for a solution, I clicked on the link "Simply download the build for your OS here", and downloaded the version that turned out to be old.
If everything is so simple for you, let us write to you about the bugs as well as you explain about the updates. For example, I will write simply “I found a bug in your game,” “I found the second bug in your game,” and so on. And the question of exactly where and what I will answer "in the folder with the game."
If your approach is “we made a game”, and you yourself understand how to update it, then perhaps you yourself are able to find all the bugs and do everything as it should. Perhaps I will not take up your precious time anymore on specifying the bugs that you all know yourself, and even less I will not ask stupid questions about updating the game. Good luck in your development. Once again I don’t need to explain anything more about the game.
Cheers for pointing that out! I totally forgot about it. It's been changed.I'd suggest to change the OP's dates as well to prevent further confusion (It says the last update was on January)
Some things were added to Github after the latest build was updated. It will all be there with the next build.@Grigori_127 @Tinymanhood @highlander00 the original 00prefrences.rpy says that there is a modded2 background, but screens.rpy just have modded1 background, gramar error? or do we have another missing background?
Yeah… my pc hates me... im triple posting everithing u_u
Yeah. I deleted it cause it was giving me a bug even with the lines. Its better to upload the files, a lot of people dont know about notepad+ or could get into the tab error just like me when editing the files.
I just cut with the easy option, since I prefer just the original modded background, it was fiving me an error on line 520 dont know what caused it
Ps: just tried again and it didnt give me the error thats some weird shit, i think my pc just hates me u.u
PS2: updated files with emma background
Please don't post loose files here (especially not if it's for the Github version) as it will only confuse people (talking from experience).That's true. Here are the files if anyone want them. The screens.rpy goes into "Rogue-Like-0.978e-pc\game" and the 00preferences.rpy goes into "\Rogue-Like-0.978e-pc\renpy\common".
...Can someone provide a screenshot of their Github version of the game so i can compare it to mine? Pretty sure i'm completely screwing this up
Well, I was sure until you posted. Reason being, I was getting an error otherwise and the error log said the game was trying to read double entries from the root directory that was empty, causing a lock-up on game start, so I moved everything over. It might have been just the one file. I figured I solved it by moving everything to root. Error was removed for me.Mmm...... Are u sure about that?...
For what I can tell, it was a background only for Laura, perhaps Grigori_127 added it as a test for the dynamic background... Seeing that it worked he changed the variable name to match the others...@Grigori_127 @Tinymanhood @highlander00 the original 00prefrences.rpy says that there is a modded2 background, but screens.rpy just have modded1 background, gramar error? or do we have another missing background?
Yeah… my pc hates me... im triple posting everithing u_u
No problem! It's just that I was having that same problem, and as kenshuck posted a solution I thought it was best to share them to prevent others from asking the same question again and again... But you're right, even when you simply share the game ready to play people get confused, imagine what it would do if we started to throw away files on this thread...Please don't post loose files here (especially not if it's for the Github version) as it will only confuse people (talking from experience).