Noah Neim

Well-Known Member
Nov 25, 2020
1,508
3,008
Fuck that was quite the game experience, took me hours to progress an hour in game :KEK:

A few questions, when i tried to do work for the inn womanright before i finished and handed like the 8th or 9th guy beer, the entire goddamn tavern started fighting to the death for utterly no reason, so like, what is the reason if there is one?

Is there a better light source? The lamp is really fucking bad

any way to get my clothes back after getting them stolen?
 

Kenny567

Well-Known Member
Oct 10, 2017
1,798
946
A few questions, when i tried to do work for the inn womanright before i finished and handed like the 8th or 9th guy beer, the entire goddamn tavern started fighting to the death for utterly no reason, so like, what is the reason if there is one?
Drunken bar fights, there is no reason (except maybe Lona's Weak/Sexy stat levels being high enough to cause everyone to become hostile)

Is there a better light source? The lamp is really fucking bad
Levelling up the SCU trait is the only way to improve seeing in the dark, there is no better light source than the lantern (which also works when equipped to an EXT slot). It must be said though that the SCU levelling doesn't really help as much as it should (and is capped at like SCU 25)

any way to get my clothes back after getting them stolen?
If they are stripped mid battle, only if you pick them up before they disappear.
If you collapse before they can strip you, they will be in the area's storage chest.
 

RLJFZ

Member
Sep 10, 2022
284
191
There's something interesting I accidentally triggered when I was in the middle of juicing the mobs. I'm not exactly sure of the exact process to do it consistently but sometimes the mobs surrounding the one Lona is juicing gets stunned as well if she finishes juicing with her hand without killing the juiced mob. Gotta test more and see if it's an actual feature or just a bug.

Additionally, I realize after many juicing that having too much sex damage isn't always good (so I don't have to go through that impossible grind and reach max sex level) since ideally you wanna stun/disable the ennemies instead of killing them in order to not make the surrounding NPCs aggressive. You'll even have some living meat shield/food lying around that you can use for strategic placement. This is a pretty unique perk that makes Succubus build very fun to play. My main build is a hybrid of all builds (at the exception of Acolyte), with magic being my main stats and physical/sex my sub stats, it's a surprisingly super flexible and powerful build, it allows me to juggle through every build on the go depending on what I want and what I need.
 

RLJFZ

Member
Sep 10, 2022
284
191
A few questions, when i tried to do work for the inn womanright before i finished and handed like the 8th or 9th guy beer, the entire goddamn tavern started fighting to the death for utterly no reason, so like, what is the reason if there is one?
When Lona begs, masturbates besides someone or does a certain type of work, her sexy and weak stats will temporarily and progressively rise up.
You don't have permission to view the spoiler content. Log in or register now.
 

Michel Poubelle

New Member
Dec 19, 2017
4
0
How does the "othermods" works in the Cheat Mod ?
I'd like to have the F3 UnequipÎtems work as a StripOnlyUnequip, to be precise i want to keep Lona's hair and not unequip them when i use the F3 hotkey.
 

Kenny567

Well-Known Member
Oct 10, 2017
1,798
946
How does the "othermods" works in the Cheat Mod ?
I'd like to have the F3 UnequipÎtems work as a StripOnlyUnequip, to be precise i want to keep Lona's hair and not unequip them when i use the F3 hotkey.
othermods is just a secondary ModScripts folder that loads before the menu scripts and the addons.

UnequipItems is intended as a helper tool to unequipall when necessary, with an optional modifier for items that won't otherwise unequip (Shift+F3, specifically for items such as the cheat sunglasses)
For that purpose it shall remain as an unequipall.

UnequipItems and StripOnlyUnequip serve very different purposes and shouldn't be used for comparisons.
 

Michel Poubelle

New Member
Dec 19, 2017
4
0
othermods is just a secondary ModScripts folder that loads before the menu scripts and the addons.

UnequipItems is intended as a helper tool to unequipall when necessary, with an optional modifier for items that won't otherwise unequip (Shift+F3, specifically for items such as the cheat sunglasses)
For that purpose it shall remain as an unequipall.

UnequipItems and StripOnlyUnequip serve very different purposes and shouldn't be used for comparisons.
I understand, but what is the purpose of StripOnlyUnequip, there is a shortcut or a way to use it ingame ?
Is it something i can use to undress Lona quickly without having to undress her manually ?
 

Kenny567

Well-Known Member
Oct 10, 2017
1,798
946
I understand, but what is the purpose of StripOnlyUnequip, there is a shortcut or a way to use it ingame ?
Is it something i can use to undress Lona quickly without having to undress her manually ?
StripOnlyUnequip is a patch to prevent combat stripped items from dropping on the ground. Those items then stay in Lona's inventory instead.

As such, there is no shortcut nor a way to use it ingame. It is used automatically as it overrides the normal function.

If you must, change this in UnequipItems:
Code:
module CheatUtils
  def self.unequipall(force)
    if self.ingame?
      $game_player.actor.equip_slots.size.times do |i|
        $game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
        SndLib.sound_equip_armor
      end
    end
  end
end
to this:
Code:
module CheatUtils
  def self.unequipall(force)
    if self.ingame?
      $game_player.actor.equip_slots.size.times do |i|
        next if i == 7 and force == false
        $game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
        SndLib.sound_equip_armor
      end
    end
  end
end
This should make it skip the hair unless Shift is held while pressing F3.
 
Last edited:

Michel Poubelle

New Member
Dec 19, 2017
4
0
StripOnlyUnequip is a patch to prevent combat stripped items from dropping on the ground. Those items then stay in Lona's inventory instead.

As such, there is no shortcut nor a way to use it ingame. It is used automatically as it overrides the normal function.

If you must, change this in UnequipItems:
Code:
module CheatUtils
  def self.unequipall(force)
    if self.ingame?
      $game_player.actor.equip_slots.size.times do |i|
        $game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
        SndLib.sound_equip_armor
      end
    end
  end
end
to this:
Code:
module CheatUtils
  def self.unequipall(force)
    if self.ingame?
      $game_player.actor.equip_slots.size.times do |i|
        unless force
          next if i == 7
        end
        $game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
        SndLib.sound_equip_armor
      end
    end
  end
end
This should make it skip the hair unless Shift is held while pressing F3.
Wow ! Thank you very much !
Well i did not understand what was the purpose of the StripOnlyUnequip apparently, thank you too for these explainations btw.
 

Kenny567

Well-Known Member
Oct 10, 2017
1,798
946
Wow ! Thank you very much !
Well i did not understand what was the purpose of the StripOnlyUnequip apparently, thank you too for these explainations btw.
I've adjusted the Hair slot check in that extra code so that it is 1 extra line instead of 3 extras.

This change will be included in the next mod update.
 

JadedKnight

Newbie
Nov 12, 2021
87
95
I feel dumb for only now realizing that gold coins are the cheapest to buy at the Bank, don't know if there's a better way or not though.
 

Fingel

New Member
Jan 16, 2022
13
0
CualquieraCan someone explain to me what is the time of the item drop rate in chests and their rarity chance
 
4.10 star(s) 206 Votes