- Jun 25, 2021
- 309
- 158
hey, got a question; is there a lona wiki anywhere? feels like lona would do well with a wiki to help people try and get the more obscure endings/items/companions etcetera
Since 0651 I've had a weird thing with Doom mode where it creates a save as soon as I open the menu, not when I return to title, and that doom save is not deleted when I close the menu. I'm a save-scumer by nature and was hoping Doom mode would break me of that habit. I can't imagine the behavior I'm seeing with Doom save creation as being an intended feature and not a bug, but I see it's not being addressed in 0660. Am I the only one with this problem?LonaRPG 0.6.6.0 release post Hype
**Heavy modify on screen_z, may cause weird bugs**
You don't have permission to view the spoiler content. Log in or register now.
Check the OPwhere can I find the English translation to add it to the game files?
Level 1: Set them on fire with the lantern. If that doesn't work keep trying until it does. (wounds will accumulate)how do you drop stamina heath for enemies
Put asd.rb in root of game folder, cheat mod in modscripts and press f11 to run whatever you wrote in asd.rb as if it were in f10.Can you set a specific key to auto-type a cheat? for example if I wanted to bind f12 to $game_player.actor.dirt+=-255 what would I do?
that's a very barebones wiki, i'll be honest. but thanks anywayYou must be registered to see the links
are you using an outdated save??I can't complete the first quest with the goblins at the healer merchant. this error appears when I reach the dialogue in the forest. how do I solve this problem? View attachment 1632364 View attachment 1632362
It's entirely random with a low chance.any trick to summon the beast in the arena ? i only fought against the gobblins beggars and female warriors so far
so call me fucking retarded(because I am) but I have no idea what you mean by asd.rb, I created one myself with the only line in it being " $game_player.actor.dirt+=-255 " and nothing else and that didn't work so I'm kinda at a standstill on what to doLevel 1: Set them on fire with the lantern. If that doesn't work keep trying until it does. (wounds will accumulate)
Combat: Use whip? Iunno don't ask me
Magic: Set them on fire with thefire booklantern.
Succubus: Suck em, or set them on fire with the lantern if that's not an option.
Put asd.rb in root of game folder, cheat mod in modscripts and press f11 to run whatever you wrote in asd.rb as if it were in f10.
Just use the "Cheat Mod" that's linked in the OPso call me fucking retarded(because I am) but I have no idea what you mean by asd.rb, I created one myself with the only line in it being " $game_player.actor.dirt+=-255 " and nothing else and that didn't work so I'm kinda at a standstill on what to do
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?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
Each time you do battle in the Arena, you have a mere 4.75% chance of encountering The Beast as an enemy combatant.any trick to summon the beast in the arena ? i only fought against the gobblins beggars and female warriors so far
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]
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]
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.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
Replace the real pregnancy cycle with one dayCode: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
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