There is if you buy the game.is this game got discord server?, it would be nice
There is if you buy the game.is this game got discord server?, it would be nice
For your spoilage question i'll do a writeup tomorrow on the exact way its determined from the code just so I dont write something inaccurate.Yeah, I went there as a mage and just killed everyone one by one.
Should I have paused between kills or something?
I must say that for some defeated enemies the reputation dropped by 10, and for killing others by as much as 100.
At some point my reputation was -200.
UPD: And thanks for answering me, heh... I already thought I was being ignored for some reason... :>
Okay... So there is no way to return 100 max reputation if permanent reputation has gone into the negative?For reputation, certain enemies reduce moral immediately by -100 (temporarily) and -10 immediately and fully. Usually non combatants, but the ones that aren't seem to all have certain qualities in common like being affiliated with the Saint.
For example: if you attack enemies during stealth section, its almost always -10 moral per enemy as a punishment for killing unnecessarily. If you kill one enemy its -10, but also an additional -100 temporarily for killing someone in the area since its a crime. If you wait without being scene for long enough, temporary loses go away. So if you start the fight at 0, get -10 and -100 temp, you'll eventually be at just -10.
Edit: this doesn't include the situations where permanent max moral is lowered (too complicated to discuss all at the same time and remain understandable, just understand thats different from this)
What about food spoilage... I don't know, maybe it's because of 5 survival points in the new playthrough, or if you sleep on the global map, and not on the location, then it seems like soups spoil much longer...For your spoilage question i'll do a writeup tomorrow on the exact way its determined from the code just so I dont write something inaccurate.
The link to the discord server comes in a separate archive when you buy the game... Alas.fair point
welcome to the gamealso how to deal with foods and stamina?cus eating meat and then sleep its not much
Sounds like a bug tbhOkay... So there is no way to return 100 max reputation if permanent reputation has gone into the negative?
UPD: The problem is that fake id papers do not reset my reputation to 50, as it should, but to 0, making me a criminal even by fake id.
I used the console.Honestly man, I'd just get the cheat mod and set your reputation to default. I wouldn't throw away the save. Or if you don't wanna cheat it, you could do rescue missions and just sneak into the city. If that's not optional, I'm not quite sure. Never had that issue because I would only run past the church people because of the moral drop alone lol.
Open yourWoah the game comes with shell scripts to run it through wine or proton, that's cool (it works too!). LinuxStart.bin is wrongly named though, should be LinuxStart.sh. Doesn't impair functionality in any way, linux is good at detecting formats regardless of extension, but that is not a binary, that is a shell script, so sh it should be.
Game won't actually start though, just get stuck on some political bs
View attachment 4736964
Weird thing to put in a hardcore hentai game, but all right, I have no skin in the game of taiwan v china anyway but i do prefer taiwan being independent. but pressing z does nothing. Is there a way to skip this screen?
Version 8.9.2.1 was playable for me tho.
UserData/GameLona.ini
file, in the [LonaRPG] section there should be a LaunchWarning entry, set that to 1.LaunchWarning = 1
to the bottom of the [LonaRPG] section.Apparently, I am not explaining the essence of my problem very clearly.What do you mean? 50 is not the max, my man. I'm at 80 something lol. Oh well, at least your game is saved. Have fun bro
Somehow after saving Cocona my max morality was 50, so when Big Mom gave me a face id it didn't reset my morality to 50, it reset it to 0.What do you mean? 50 is not the max, my man. I'm at 80 something lol. Oh well, at least your game is saved. Have fun bro
$game_player.actor.morality_plus
$game_player.actor.morality
(what is shown in the menu) it does so using this formula: [in function recalculateStats]$game_player.actor.morality = $game_player.actor.morality_lona + ($game_player.actor.morality_plus-200)
self.
instead of $game_player
$game_player.actor.morality_plus
variable is less than 200 the shown value is inaccurate.$game_player.actor.morality_plus
is where the permanent reduction is stored.($game_player.actor.morality_plus-200)
would be 0)It worked.When adjusting Lona's Morality, you also need to change$game_player.actor.morality_plus
When the game itself updates$game_player.actor.morality
(what is shown in the menu) it does so using this formula: [in function recalculateStats]
Note: In the actual function code, it usesCode:$game_player.actor.morality = $game_player.actor.morality_lona + ($game_player.actor.morality_plus-200)
self.
instead of$game_player
Cheat Menu's Morality Editor also uses this same formula as the editor is used.
However, if the$game_player.actor.morality_plus
variable is less than 200 the shown value is inaccurate.
ie:$game_player.actor.morality_plus
is where the permanent reduction is stored.
While it is 200, it doesn't affect Lona's Morality (because($game_player.actor.morality_plus-200)
would be 0)
The variable has a value range of 0 to 200.
Whenever you do something that adds a permanent reduction, it changes that morality_plus value.It worked.
Thanks.
However, why did this happen? A bug?
To be honest, I don't understand why it is needed at all?ie:$game_player.actor.morality_plus
is where the permanent reduction is stored.