Jul 4, 2018
285
351
Just use the "Cheat Mod" that's linked in the OP
It still works, though there is another floating around somewhere that lets you "See" better in low light areas.

EDIT:
You can customize the functions of the hotkeys if you feel adventurous . For instance I set it so F11 cleans all dirt/cum/blood effects off Lona, and F8 to clear wounds and tighten orifices
no what I meant was that I already use the original cheat mod, but don't know how to modify it, is there like a guide to adding hotkeys or changing them?

because I can't really enter the dirt removeal cheat with the actStat_Set_State part and really don't want dirt.

EDIT:

Never fucking mind, my stupidity knows no bounds and I just spent 20 minutes looking through the cheat RB trying to find it and I finally did, thank you for lettinh me know of this
 
Last edited:
Apr 1, 2020
106
108
any trick to summon the beast in the arena ? i only fought against the gobblins beggars and female warriors so far :(
Each time you do battle in the Arena, you have a mere 4.75% chance of encountering The Beast as an enemy combatant.

So if you want to fight him, you have to keep retrying the combat challenge again and again until he appears.
 

BurnerMan5656

New Member
Dec 27, 2021
7
5
I did a quick once over of the thread and didn't see this posted anywhere, but if you really want Lona to be a baby maker you can set all of her days to being super fertile. Go to LonaRPG>Data>Scripts>Frames>Modules and open Reproduction.rb. The third batch of script in there should be pregnancy rates on different days of the cycle and looks like
Code:
    PREG_RATE_SAFE=[0.0,0.0,0.0]
    PREG_RATE_MENS=[0.08]
    PREG_RATE_OVUL=[0.15,0.3,0.4,0.6,0.8,0.6,0.4,0.2]
I just changed all the values for each to 1.0 so that she has a 100% chance of getting pregnant but the code has a line for anything over 0.7 as being guaranteed ovulation.
Code:
    PREG_RATE_SAFE=[1.0,1.0,1.0]
    PREG_RATE_MENS=[1.0]
    PREG_RATE_OVUL=[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]
See this post from magicduckx for how to shorten pregnancies to 5 days

Here's a quick and dirty way to shorten pregnancy and give Lona's baby the virginal birth that she deserves:

First: edit the pregnancy cycles

Find this code: Reproduction.rb
Code:
    def create_preg_cycle
        #依照苗床化程度決定減低出產所需天數。
        seedbed_level=$game_player.actor.stat["WombSeedBed"]
        seedbed_level_deduction=System_Settings::SEEDBED_LEVEL_DEDUCTION[@baby_race][seedbed_level]
        cycle_template=System_Settings::RACE_PREGNANCY_LENGTH[@baby_race]
        preg_cycle=Array.new
        for i in 0...cycle_template.length-1
            daysNeeded=cycle_template[i].to_a.sample-seedbed_level_deduction
            preg_cycle.push(daysNeeded) <------ This line here
        end
        preg_cycle.push(cycle_template.last.to_a.sample)  <------ This line here
        preg_cycle
    end
Replace the real pregnancy cycle with one day

Code:
    def create_preg_cycle
        #依照苗床化程度決定減低出產所需天數。
        seedbed_level=$game_player.actor.stat["WombSeedBed"]
        seedbed_level_deduction=System_Settings::SEEDBED_LEVEL_DEDUCTION[@baby_race][seedbed_level]
        cycle_template=System_Settings::RACE_PREGNANCY_LENGTH[@baby_race]
        preg_cycle=Array.new
        for i in 0...cycle_template.length-1
            daysNeeded=cycle_template[i].to_a.sample-seedbed_level_deduction
            preg_cycle.push(1)
        end
        preg_cycle.push(1)
        preg_cycle
    end
I also noticed that the game seems to track semen in vagina only when you sleep/rest for the Night>Day. So long as you clean out your privates completely before you sleep at night, it should count as no semen in vagina at all for the day. Or at least thats how the cycle calendar measures it, but that seems to be what the game bases pregnancies off of.
 

narlicious

New Member
May 26, 2018
7
7
So is there no way to fuck the dog companion? Or actually reliably fuck animals in general? I've tried using Juicer on the dog and it just makes him mad, and it is impossible to use it on the boars in the forest without pinning them into a corner or something. And it just seems completely impossible to use on wolves as they'll just tear you apart the moment they notice you, despite their sprites having visible erections.
 
Last edited:
  • Like
Reactions: Daioh

elchivo

Member
Dec 15, 2018
256
103
So is there no way to fuck the dog companion? Or actually reliably fuck animals in general? I've tried using Juicer on the dog and it just makes him mad, and it is impossible to use it on the boars in the forest without pinning them into a corner or something. And it just seems completely impossible to use on wolves as they'll just tear you apart the moment they notice you, despite their sprites having visible erections.
Well you'd think trying to fuck a hungry wolf would be dangerous.
 
  • Like
Reactions: eugene67

Gently Weeps

Member
Jun 25, 2021
187
69
If you're having trouble on taking the papers quest from Cecily.(the escape part of the quest) you can kill Maani before accepting the quest so you don't do have to do the second half. (just a neat thing i found out, (i thought it will break my game but it turned our fine)
 

narlicious

New Member
May 26, 2018
7
7
Well you'd think trying to fuck a hungry wolf would be dangerous.
Oh man why didn't I think of that? Why would I ever have possibly assumed that just because the wolf sprites actually show a dick that it would be possible to fuck them in this h-game? What a fool I am
 
  • Like
Reactions: Daioh

Gently Weeps

Member
Jun 25, 2021
187
69
Soo, I have a few questions: 1-Where can I find the soul of the berserker to get his sword? 2-Where or how can I get the berserker medicine? 3-How do I get to to fight the beast in the arena?
Okay I found it, You can get the Berserker Medicine after rescuing Lisa from the Black Mist, in order to do it, you must go to the south gate village or something and finish the entire questline (?)
 

nhocbun76

New Member
Jun 15, 2019
4
2
I have a problem entering the game, can't enter the game!
please help. tks

◆ 2022-02-05T18:54:39
■ Error Type :
NameError

■ Message :
uninitialized constant DataManager::Mouse_Cursor


■ Backtrace :
(eval):72:in `load_GameStartSetup'
(eval):27:in `init'
(eval):547:in `init'
(eval):25:in `run'
(eval):416:in `run'
(eval):2253:in `run'
(eval):456:in `run'
(eval):10:in `block in load_script'
:1:in `block in rgss_main'
:1:in `loop'
:1:in `rgss_main'
(eval):8:in `load_script'
"ScriptImport"(67):in `eval'
"ScriptImport"(67):in `load_script'
"FileGetter"(38):in `block in load_from_list'
"FileGetter"(35):in `each'
"FileGetter"(35):in `load_from_list'
"FileGetter"(79):in `load_starter'
"loadStarter"(5):in `<main>'
ruby:in `eval'

■ Current In-Game Date :

Game Not Started

■ Story Stats :

Game Not Started
 

Squark ⚧❤️

Conversation Conqueror
Jun 16, 2017
7,026
7,819
I have a problem entering the game, can't enter the game!
please help. tks

◆ 2022-02-05T18:54:39
■ Error Type :
NameError

■ Message :
uninitialized constant DataManager::Mouse_Cursor


■ Backtrace :
(eval):72:in `load_GameStartSetup'
(eval):27:in `init'
(eval):547:in `init'
(eval):25:in `run'
(eval):416:in `run'
(eval):2253:in `run'
(eval):456:in `run'
(eval):10:in `block in load_script'
:1:in `block in rgss_main'
:1:in `loop'
:1:in `rgss_main'
(eval):8:in `load_script'
"ScriptImport"(67):in `eval'
"ScriptImport"(67):in `load_script'
"FileGetter"(38):in `block in load_from_list'
"FileGetter"(35):in `each'
"FileGetter"(35):in `load_from_list'
"FileGetter"(79):in `load_starter'
"loadStarter"(5):in `<main>'
ruby:in `eval'

■ Current In-Game Date :

Game Not Started

■ Story Stats :

Game Not Started
Do you have a gamepad connected to your system? Or are you using JoiPlay?
 

Noidcreid

Member
Oct 6, 2017
296
113
Based upon the Cheats mod https://f95zone.to/threads/lonarpg-v0-5-2-0-eccma417.49993/post-5127580
My updates:
  • I expanded the summons menu to use folders based on the first prefix
  • Added the Items wont disappear change (suggested by someone in this thread)
  • Added the no friendly fire change (suggested by someone in this thread)
  • Added F5 to toggle autoheal which keeps you at max health
  • Fixed the annoying basegame popups that happen upon entering/exiting the debug menu (might be incompatible with versions other than 0.5.2.0)
I'll add to it as I find things that I personally want in the game, but feel free to suggest stuff or build upon it
Is this cheat mod still works?
 

Olimp13

Newbie
Feb 7, 2021
19
13
I play this game on my laptop
Check your LonaRPG folder settings. Is it read-only? Uncheck the box.
Also try moving your game folder somewhere without non-latin letters in path( D:\Games).
ALSO you may need all RPG maker packs installed
https://f95zone.to/threads/rpg-maker-help-section.921/
You will need japaneese app-locale to do it. Google how to.
If nothing helps try downloading other version of the game

I had the same problem long ago but sadly don't remember how I fixed it
 
4.10 star(s) 185 Votes