CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

Mod Ren'Py Rogue-like: Evolution - Prime Mod

4.80 star(s) 18 Votes

Bekai7

Member
Jul 6, 2020
206
316
I wanted to know how to get more than two girls in the same place
Cant be done in current version, oni was working on it but didnt finish cuz it was too laggy i think, some bugs let 3 girls be in front but only let you interact with 2, and in some public spaces there can be girls in the back ground. but thats it no 4somes.

Maybe Prime should take this mod as a basis (Rogue-Like Chonky Mod) and update from 0.998 to the latest, since the Oni code is terribly written and structured

View attachment 4108726
every person that knows how to code says the same, its too much work, some have tried, none has done it. fuck oni he wont work on a rework just keep adding girls and making them uglier but now he adds 2 at the same time so hey thats better no?
 

JohnOoom

Newbie
Mar 12, 2023
15
13
Hi im new here ... What version update mod version for android here i really want to play the game it seems very interesting please help this poor guy
 
  • Like
Reactions: pip34

gjbcyjjb

Newbie
Oct 21, 2018
60
16
who can give your personal changes to the characters' clothes, hair colors, if there are such craftsmen here, give your files for the characters
 

smile07

Newbie
Dec 2, 2023
45
96
who can give your personal changes to the characters' clothes, hair colors, if there are such craftsmen here, give your files for the characters
In terms of clothing, here is a link from what I managed to find on the forum and discord , but some of the files need to be redone because the poses have changed or there are missing files for the set

+ there are several mods where you can extract the files Post and Rogue-like: Evolution - Expanded Mod
 

smkey21

Active Member
Nov 15, 2017
558
433
What's most impressive to me about the whole thing is that this sort of things has somehow not happened to Prime often enough that he either (a) accepted that getting randomly pinged with zero consideration was a fact of life, or (b) long ago implemented safeguards against it happening.
Perhaps I have slightly underestimated the average random person on the internet...
 

smile07

Newbie
Dec 2, 2023
45
96
i woke up prime and i dont think he is happy about it...

View attachment 4236121
I think it's understandable, everyone is waiting for a new version of the mod from him and asking when it will be, but guys, you forget that this is not an easy and labor-intensive task and everything takes time and motivation to take and do it

Has anyone of you tried to decompile the game, understand the code, etc.? No, most are stupidly waiting for someone to take it and do it, but maybe you should try to do something yourself and then ask

Can you imagine how many lines of code are in the Oni files? At least 3000-8000 lines of shit code that is slow, not optimized, with crooked transitions and stupid copy-paste and changing the code for new girls and a big screw on rewriting the old code. At least they broke it into smaller files with code, so to speak, separated the logic by files, but no, large files are super, crooked names of variables and functions are super

In the latest version of the mod at the moment 1.3d Prime wrote a file with optimization, etc. in 22,000 lines of code, 22,000 lines, damn, how much effort and time was spent on tracking and optimization, etc. And what do we have now, version 1.54b, a decent amount of changes (a lot), all this needs to be tracked and analyzed, and then decently fucked up and written code

Therefore, you don't need to bother a person, he will make a mod, he will post it, he will not do it, he will just write, I will screw it all and that's it

If you want to help, etc., then try to make a new outfit for the characters, a new image, post the files on the forum or discord, and over time your work will be added
 

Justadood19

Newbie
Feb 1, 2018
37
4
I think it's understandable, everyone is waiting for a new version of the mod from him and asking when it will be, but guys, you forget that this is not an easy and labor-intensive task and everything takes time and motivation to take and do it

Has anyone of you tried to decompile the game, understand the code, etc.? No, most are stupidly waiting for someone to take it and do it, but maybe you should try to do something yourself and then ask

Can you imagine how many lines of code are in the Oni files? At least 3000-8000 lines of shit code that is slow, not optimized, with crooked transitions and stupid copy-paste and changing the code for new girls and a big screw on rewriting the old code. At least they broke it into smaller files with code, so to speak, separated the logic by files, but no, large files are super, crooked names of variables and functions are super

In the latest version of the mod at the moment 1.3d Prime wrote a file with optimization, etc. in 22,000 lines of code, 22,000 lines, damn, how much effort and time was spent on tracking and optimization, etc. And what do we have now, version 1.54b, a decent amount of changes (a lot), all this needs to be tracked and analyzed, and then decently fucked up and written code

Therefore, you don't need to bother a person, he will make a mod, he will post it, he will not do it, he will just write, I will screw it all and that's it

If you want to help, etc., then try to make a new outfit for the characters, a new image, post the files on the forum or discord, and over time your work will be added
i want to know how to get started into all this coding and modding stuff, i do have the time and interest but dont know where to start
 

smile07

Newbie
Dec 2, 2023
45
96
i want to know how to get started into all this coding and modding stuff, i do have the time and interest but dont know where to start


Honestly, first practice on some simple games and create your own, and then get into Rogue-like: Evolution

Useful guide

1 To better navigate the code and +- understand it, figure out how it is structured (basic syntax, launching files) and how the renpy engine works (how variables are created, how the transition between blocks occurs, working with animations, working with coordinates) and learn the basic things of the engine (official documentation and videos). And most importantly, how to separate the game logic into files and correctly name variables and functions (this already relates to the basics of programming)

2 Understand how to decompile the official version of the game (UnRen)

3 Download the required version of renpy (the official version uses 6.99.13, but you can use 7.4.11. The version above will swear because the code is quite old and voluminous for rewriting)

4 How to launch, configure and build (do not forget to uncheck add from clauses to calls) the game through renpy launcher + install ide (visual studio code + renpy plugin)

5 Open the decompiled game in ide. Understand what each file is responsible for and what it contains. The basic logic is in the "script" files. Well, and then optimize and change the code so that you can easily transfer the mod code

Note on the game and so on in general:
- Use git (gitlab) for development, create 2 branches main (original game code) and main_mode (the main branch of your mod). For each addition of something, change, transfer, etc., first create an issue, then a branch for this issue and then work with this branch, after completing the changes, commit the code to git and merge the branch created by the issue in main_mode.
- + you need to know Bose Python, since part of the code will be in it, since renpy supports Python inserts
- if you write a game from scratch yourself, you can change the original files and + if the game is finished. If the game is not yours and you are modifying it, then separate the files with the code and other files separately, so that you can easily transfer your code in case the code changes a lot in the new version, then you will rewrite it 25 times
+ if you change the label in the game, then move this code to a separate file and use the design as Prime

Python:
init 5:
    python:
        config.console = True
        config.name = "Rogue-Like Mod"
        config.version = "1.54b"
        config.save_directory = "Rogue-Like Mod"
        config.window_title = u"Rogue-Like: Mod"
        build.directory_name = "Rogue-Like-1.54b-mod"
        config.label_overrides["Betsy_Clothes"] = "Betsy_Сlothes_Prime"
This allows you to replace the blocks of the original game with your own and not change the original code

- If suddenly the thought flashes to rewrite the code in the Animation files, then know that it is commendable, but it will be in vain since the game is not finished, it is useless to rewrite these files, but you can add to them. If a new version comes out, it will be difficult to support and modify the code. + If you rewrite these files, then know that you wrote a new game, since these files are almost the entire game and I do not think that you will be able to rewrite normally 8000+ lines of code in each file, since there were many attempts by people to do this, but it is all in vain until the game is finished.

- Regarding the pictures of clothes and images, you need either an artist or master a graphic editor (Photoshop or Gimp) and use AI to create or draw yourself
 
4.80 star(s) 18 Votes