Moya621

Newbie
Apr 3, 2025
23
6
3
fair point
The link to the discord server comes in a separate archive when you buy the game... Alas.

Unfortunately, for example, I can't buy the game because... Well, you know... Russia...

I really want to join the community, because it seems like there isn't much content about Lona on the Internet.
 

Moya621

Newbie
Apr 3, 2025
23
6
3
How viable is Bloodlust Mage Lona without timid?
I fucking love blasting enemies with Lona's sly smile.

But 8 armor and 10 points for the price of one...

Raise to 40 and heal from Bloody Mess... Is that a shitty idea?
 

jkllkj177

New Member
Mar 10, 2019
7
0
11
Okay... 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.
Sounds like a bug tbh
 

Velomous

Member
Jan 14, 2024
420
425
140
Woah 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

1744433368059.png

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.

Edit: idk what I did but after restarting it like 10 times it worked, and the screen doesn't come up again
 
Last edited:

Moya621

Newbie
Apr 3, 2025
23
6
3
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.
I used the console.

And I couldn't raise reputation with the console above 50, so.
50 is the maximum reputation.
 

Kenny567

Well-Known Member
Oct 10, 2017
1,964
1,096
318
Woah 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.
Open your UserData/GameLona.ini file, in the [LonaRPG] section there should be a LaunchWarning entry, set that to 1.

If that entry isn't there (gets set by the disclaimer), add LaunchWarning = 1 to the bottom of the [LonaRPG] section.
 

Moya621

Newbie
Apr 3, 2025
23
6
3
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.

That's what I'm talking about.
 

Kenny567

Well-Known Member
Oct 10, 2017
1,964
1,096
318
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]
Code:
$game_player.actor.morality = $game_player.actor.morality_lona + ($game_player.actor.morality_plus-200)
Note: In the actual function code, it uses 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.
 
Last edited:

Moya621

Newbie
Apr 3, 2025
23
6
3
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]
Code:
$game_player.actor.morality = $game_player.actor.morality_lona + ($game_player.actor.morality_plus-200)
Note: In the actual function code, it uses 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.
It worked.
Thanks.
However, why did this happen? A bug?
 

Kenny567

Well-Known Member
Oct 10, 2017
1,964
1,096
318
It worked.
Thanks.
However, why did this happen? A bug?
Whenever you do something that adds a permanent reduction, it changes that morality_plus value.

I was just testing things out and for some reason morality_plus keeps resetting back to 200, which is weird.
To be fair though, I haven't checked into how that value actually gets updated...
 

Kenny567

Well-Known Member
Oct 10, 2017
1,964
1,096
318
To be honest, I don't understand why it is needed at all?
What does "permanent reduction" mean?
A reduction that cannot normally be undone.

Also, I've looked into morality_plus a bit more and most of the edits I found seem to be on the max limit of the stat (mostly equipment modifiers)

That explains why it was being weird.
 

Moya621

Newbie
Apr 3, 2025
23
6
3
I already asked on the forum, but no one answered me... Is it possible to return the forest sprites in version 0.9.8 to what they were in version 0.9.7?
 

Yukihirou

Well-Known Member
Feb 4, 2018
1,553
1,411
304
Woah 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.

Edit: idk what I did but after restarting it like 10 times it worked, and the screen doesn't come up again
I don't know your operating system, but next time it happens to this game or any game that loses focus, do the equivalent of Task Manager -> specified app name -> expand -> switch to/bring to font
 
4.10 star(s) 231 Votes