Ren'Py Stellar Crossroads [v0.81] [Xavster Gaming]

3.40 star(s) 13 Votes

Avaron1974

Resident Lesbian
Aug 22, 2018
28,073
96,934
1,021
it likely would be very easy for the devs to implement.
Not a dig at your post, nothing you said was bad, I actually agree with you even though I do enjoy the gameplay.

Just that line got me.

Not the first time i've seen someone say something like that but i'll never understand why people think it's easy for a dev to implement anything.

They have to fiddle with the code and get that code working with all the other code and that alone is a pain in the arse. Nothing a dev adds is ever easy to implement. Any time code is touched it could break a million and one things.

Goes back to the old ditty ..... 99 little bugs in the code, 99 little bugs. Take one down, patch it around, 117 little bugs in the code.
 

Alex3Ton

Newbie
Feb 5, 2024
39
18
50
Would that be possible?
Google translation.

Everything is possible if you want. I am translating this project and in the version with my translation I have written a cheat mod for adding money. Unfortunately, I do not publish on this resource, so I can not leave any links.
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

Kagarus

Member
Sep 28, 2017
412
772
296
Not a dig at your post, nothing you said was bad, I actually agree with you even though I do enjoy the gameplay.

Just that line got me.

Not the first time i've seen someone say something like that but i'll never understand why people think it's easy for a dev to implement anything.

They have to fiddle with the code and get that code working with all the other code and that alone is a pain in the arse. Nothing a dev adds is ever easy to implement. Any time code is touched it could break a million and one things.

Goes back to the old ditty ..... 99 little bugs in the code, 99 little bugs. Take one down, patch it around, 117 little bugs in the code.
Yes but no. Yes, modifying code that is used by different parts of the code can cause cascading issues, so can pretty much everything in a language with pointers and no checks (so you've overwritten the return address... oops!). And if you're unfamiliar what you might think is very easy is actually very complex. But no, giving you the option to start with more money would be 7 lines
You don't have permission to view the spoiler content. Log in or register now.
, and the only thing it would affect is the amount of credits you have at the start*. If you fucked up somehow, either renpy would complain or it would be easy to spot when testing - this isn't debugging C code (or whatever Unity-based mess Owlcat created), renpy is pretty well engineered to be easy and safe to use and to allow changes to code without causing issues, and making menus like this is part of the bread&butter of writing renpy games.
I'm all for getting across to people that developing games is hard, but let's not overmistify everything :)

*And yes, if you make assumptions elsewhere about how much money the player has, 1. you probably shouldn't, 2. it's still very manageable.
 

cxx

Message Maestro
Nov 14, 2017
76,682
39,513
1,519
this is bad game, player starts it and then few hrs later notices that sun rises.

anyways nice and bit weird update and seems that we are nearing end war.

You don't have permission to view the spoiler content. Log in or register now.
 

CyBeRd0g

Newbie
May 13, 2018
85
214
221
Xavster, please check the following code in v08.rpy:
Python:
            "Grab a beer at the bar?":
                $ rel_krog += (1 - rel_krog) * 0.05
it should probably be
Python:
                $ rel_krog += (100 - rel_krog) * 0.05
otherwise you actually lose the relationship points by buying him a beer.

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
Reactions: sachmet

DementedMan

Newbie
Mar 6, 2019
78
105
197
Can someone please answer a question about the Covert Missions?
For example, I have a mission Poldar Assassination-Industrial.
Does that mean that I am doing the mission against the Poldar or on behalf of the Poldar against someone else?
I don't want to accidentally sabotage my friends.
 

Ahchi

Forum Fanatic
Jul 17, 2020
4,835
8,945
678
Can someone please answer a question about the Covert Missions?
For example, I have a mission Poldar Assassination-Industrial.
Does that mean that I am doing the mission against the Poldar or on behalf of the Poldar against someone else?
I don't want to accidentally sabotage my friends.
Covert missions are FOR the stated state.
In this case you will be acting on behalf on "Poldar"
 
  • Like
Reactions: DementedMan
3.40 star(s) 13 Votes