moonbaby

Member
Jan 20, 2018
398
213
197
Usually it doesn't take users long to figure out that games this far into production, typically contains a bundle of content, and with story paths expanding only increases dev times that much more. Clearly these people who complain are either under age, or trolls, or just really new to these threads. But judging when Ravenouszx92 registered (Apr 29, 2024), it's either he hasn't played any other titles on here, or, I'm thinking the *"I" word.

* Imbecile :rolleyes:
In my own defense, I am not complaining about any update... :D just eager
 

funkymonkeyjedi

Engaged Member
Jan 16, 2023
2,011
3,590
388
In my own defense, I am not complaining about any update... :D just eager
Nah, my post was directly aimed at those that go in threads and display zero effort in getting information to post "duhh dead game bro...", when there are plenty of references to progress being made regardless if it's perceived as 'slow progress'. Hence why I even mentioned him by name.

Whereas posting something in terms of 'eagerness' as you say, only shows some form of appreciation for the project and wanting more. I don't see that any other way than making a compliment to the creator. (y)
 

torresm

Well-Known Member
Apr 5, 2020
1,156
2,545
386
Nah, my post was directly aimed at those that go in threads and display zero effort in getting information to post "duhh dead game bro...", when there are plenty of references to progress being made regardless if it's perceived as 'slow progress'. Hence why I even mentioned him by name.

Whereas posting something in terms of 'eagerness' as you say, only shows some form of appreciation for the project and wanting more. I don't see that any other way than making a compliment to the creator. (y)
If you check the profile of that last mouthbreather who did that, you'll see he has a habit of going into threads, making inflammatory comments and leaving. Probably thinks he's very funny, witty or some shit.
 

Fauno36

Active Member
May 26, 2023
848
1,045
276
Si revisas el perfil de ese último respirador bucal que hizo eso, verás que tiene la costumbre de meterse en hilos, hacer comentarios incendiarios y marcharse. Probablemente piensa que es muy divertido, ingenioso o algo así.

Thanks for reminding me why I have that guy on my ignore list.
 
  • Haha
Reactions: TheDevian

Ozymandias037

Member
Sep 25, 2023
287
895
179
Nah, my post was directly aimed at those that go in threads and display zero effort in getting information to post "duhh dead game bro...", when there are plenty of references to progress being made regardless if it's perceived as 'slow progress'. Hence why I even mentioned him by name.

Whereas posting something in terms of 'eagerness' as you say, only shows some form of appreciation for the project and wanting more. I don't see that any other way than making a compliment to the creator. (y)
This is my 2nd biggest pet peeve on this forum. Like, why do people even post if they're not willing to read the goddamn thread???
 

grey_shadow

Member
May 21, 2022
255
287
131
This is my 2nd biggest pet peeve on this forum. Like, why do people even post if they're not willing to read the goddamn thread???
That was post #49,434 in the thread. At one post per second, it would take 13 hours, 43 minutes and 54 seconds to skim through the thread.

Not reading any of the thread is going too far the other way, but very few people are ever going to read more than a page or two of posts, and most people are going to read rather less before posting.
 

TheDevian

Svengali Productions
Game Developer
Mar 8, 2018
15,810
37,464
1,031
That was post #49,434 in the thread. At one post per second, it would take 13 hours, 43 minutes and 54 seconds to skim through the thread.

Not reading any of the thread is going too far the other way, but very few people are ever going to read more than a page or two of posts, and most people are going to read rather less before posting.
Yeah, no one expects someone to read the whole thread, but a lot of times people will ask something that was answered a post or few above them asking.

What we do expect from people is to do a cursory search to at least try to find the answer before asking. Especially when it is something that gets asked a lot.

A tip to make it easier though, go into your settings, and set the results to sort by date.
 

Reinyn

Member
May 22, 2017
121
160
274
If you check the profile of that last mouthbreather who did that, you'll see he has a habit of going into threads, making inflammatory comments and leaving. Probably thinks he's very funny, witty or some shit.
Do you guys think that guys ass would be jealous with all the shit spouting from his mouth?
 
  • Haha
Reactions: torresm

herrderr75

Member
Aug 5, 2019
267
550
209
Anybody know where Runey's from? Sometimes the wording sounds so odd to me as an American. Is this British or something?

emma.png
 

MalLiz

Well-Known Member
Jan 26, 2024
1,172
2,375
340
Anybody know where Runey's from? Sometimes the wording sounds so odd to me as an American. Is this British or something?

View attachment 5014603
As a very much not American person, I can definitely say it looks a bit odd to me as well. But I'd wager it is simply because it was (presumably) quite hastily written. Here is how I would have written that same string of sentences:

"I came in here with a guy, I asked for something sexy to wear... There's no way she doesn't know I'm going to have sex in it!"

Granted, that is just how I, personally, would have written it. But I'm no writer. I am just a guy that enjoys various forms of...literature. :sneaky:

-Mal
 

Ozymandias037

Member
Sep 25, 2023
287
895
179
As an American, I understand both sides. The way it's written feels like an attempt to convey a sort of fast, half-panicked way of speaking where her agitation erases the division between her sentences and ideas. Her thoughts and emotions are running away with her. It's a very "as it's spoken" kind of punctuation.

That said, since it IS written down and we're reading it on the screen, I agree with MalLiz that an ellipsis or semicolon in there would be more grammatically correct and a little easier to parse in the way it's probably meant to be interpreted.
 

RazerVee

Member
Nov 10, 2021
140
46
87
anyone know what happened to this game? and how to fix it? this think happend when i open the game
 

torpedogoat

Member
May 24, 2024
230
513
179
anyone know what happened to this game? and how to fix it? this think happend when i open the game
Many Ren'Py games organize various collections of many files together into RPA archive files, which are a just a header followed by an ordinary ZIP file. So just like ZIP files, they can be read using Python's zlib module (after discarding the extra header).

In this case, extraction of one of the RPA archives seems to fail. The most likely explanation is that the ZIP or RAR file of the entire game was corrupt or that it was extracted incorrectly. Most extraction tools refuse to extract from corrupted archives (unless you use a special option), but some just extract what they can, with just a warning. In this case, you might e.g. end up with an incomplete RPA file in your game directory.
 

RazerVee

Member
Nov 10, 2021
140
46
87
Many Ren'Py games organize various collections of many files together into RPA archive files, which are a just a header followed by an ordinary ZIP file. So just like ZIP files, they can be read using Python's zlib module (after discarding the extra header).

In this case, extraction of one of the RPA archives seems to fail. The most likely explanation is that the ZIP or RAR file of the entire game was corrupt or that it was extracted incorrectly. Most extraction tools refuse to extract from corrupted archives (unless you use a special option), but some just extract what they can, with just a warning. In this case, you might e.g. end up with an incomplete RPA file in your game directory.
my game work properly when it on v17 something, but after i download the "update only v18" and extract the file to game file, the game suddenly boken lol :KEK:
 
4.60 star(s) 500 Votes