SerHawkes
Engaged Member
- Oct 29, 2017
- 3,568
- 15,928
- 765
Your forgetting their drummer Amrit and their manager Els.Nah. I think Ines and VI were plotting an all-girl punk band.
Band Name? Your Mom.
Your forgetting their drummer Amrit and their manager Els.Nah. I think Ines and VI were plotting an all-girl punk band.
ah man, I want to see the black outfit too, I chose that in my playthrough (on a side note, Kana is seriously buff![]()
![]()
Sneak Peek 02/12/2024
You must be registered to see the links
Here's a little look at what we worked on during the art stream on Sat. This really is a fun scene to work on because I finally get to mess around and embrace the inherent silliness of Professional wrestling. So excited for people to see it in it's final glory.
Was thinking the same thing, I chose the black outfit. Kana's in a good position, though, in that with her skin tone both work really well. Black goes well with pretty much anything, but the white is a great contrast.ah man, I want to see the black outfit too, I chose that in my playthrough (on a side note, Kana is seriously buff)
Silliness? Wrestling is serious business.![]()
![]()
Sneak Peek 02/12/2024
You must be registered to see the links
Here's a little look at what we worked on during the art stream on Sat. This really is a fun scene to work on because I finally get to mess around and embrace the inherent silliness of Professional wrestling. So excited for people to see it in it's final glory.
How can you not take midgets seriously?Silliness? Wrestling is serious business.
You don't have permission to view the spoiler content. Log in or register now.
There are also two new Ines-specific variables that were added in the Mallorca update: inessubmission and inesselfreliance. These appear to be scores that are increasing/decreasing just like the others. I'm not sure how important they will be of course, but I thought I'd mention them in case you wanted to include them as well.Here's a quick mod that I made that adds a scoreboard to keep track of variables. Just drop the RPY file in the "game" folder and open the game. It displays at the top of the screen and can be toggled off with the backtick key.
For the MC, F and H are your foot/heel status and I is your injuries.
For McNab, R is rivalry.
For Amrit, C is confidence.
For Vi, F is family, A is acceptance, G is grief.
For Rena, FWB is some variable that isn't used yet.
For Kana, I is injuries.
For Els, T is trust and S is secrecy.
For Ines, P is protectiveness.
Otherwise, F is friendship, L is love, and Y is yuri.
Boy, those would be a tough call to interpret so far. On the one hand, I want her to be a strong, capable independant-minded woman. On the other.. I want her to submit and become a happy little housefrau.There are also two new Ines-specific variables that were added in the Mallorca update: inessubmission and inesselfreliance. These appear to be scores that are increasing/decreasing just like the others. I'm not sure how important they will be of course, but I thought I'd mention them in case you wanted to include them as well.
Anyways, thanks for the handy scoreboard-at-a-glance! There really are an incredible amount of choices and scores being tracked in this game.
All she needs is a french maid outfit and we good.Boy, those would be a tough call to interpret so far. On the one hand, I want her to be a strong, capable independant-minded woman. On the other.. I want her to submit and become a happy little housefrau.
not a chance in a million years that she'd wear that. unless she'd lose some bet and mc would want that.All she needs is a french maid outfit and we good.
Okay, I updated the scoreboard with the two new variables. I is for independence and S for submission. I also set default values for all these variables--something the game's developer really should have done.There are also two new Ines-specific variables that were added in the Mallorca update: inessubmission and inesselfreliance. These appear to be scores that are increasing/decreasing just like the others. I'm not sure how important they will be of course, but I thought I'd mention them in case you wanted to include them as well.
Anyways, thanks for the handy scoreboard-at-a-glance! There really are an incredible amount of choices and scores being tracked in this game.
Not the pussy he was hoping he'd see in his bed.
amrit will come and shoo cat away.Not the pussy he was hoping he'd see in his bed.
In defense of the dev, from what I see of the code for Unbroken, it does properly initialize any new variables. However, it does so only when they are added in a new chapter/update. This works just fine for how the game itself needs to use them, but unfortunately it doesn't support mods that will be trying to display those values right from the first scene of the game. This is really not the dev's fault, because even if they were to duplicate those variable init lines at the start of the game, that still doesn't fix a save from chapter 2 – for example – that a person loads with the mod active.Okay, I updated the scoreboard with the two new variables. I is for independence and S for submission. I also set default values for all these variables--something the game's developer really should have done.
if my_variable is not None:
# execute some code
Declaring global variables at random points within the code is very bad form and really should be fixed. At the very least, global variables should be declared at the start and defined later, though I recommend giving the variables a default value (not relevant to Python, since you can't declare without defining). It is normal to declare, define, and (if the language requires it) delete local variables as needed.In defense of the dev, from what I see of the code for Unbroken, it does properly initialize any new variables. However, it does so only when they are added in a new chapter/update. This works just fine for how the game itself needs to use them, but unfortunately it doesn't support mods that will be trying to display those values right from the first scene of the game. This is really not the dev's fault, because even if they were to duplicate those variable init lines at the start of the game, that still doesn't fix a save from chapter 2 – for example – that a person loads with the mod active.
This gives you a variable undefined error. You have to use a try/except/else block:I'm not that familiar with Python, but like most programming languages, it appears to have a way to check for null (none) values, which is what you probably used to get around this problem, but I thought I'd pass it along for anyone else who might be curious (Note: this is untested code, found from a quick search, so use at your own risk).
Code:if my_variable is not None: # execute some code
try: my_variable
except: my_variable = 0
else: print("Variable exists with value: "+str(my_variable))
default my_variable = 0
init 100 python:
try: my_variable
except: my_variable = 0