4.50 star(s) 119 Votes

Januar1

New Member
Sep 13, 2020
3
2
Just finished this game, even though I am not the biggest fan of the Metroidvania genre of nukige this game was surprisingly good! Although it is kinda regretful that the heroine didn't have more fleshed out background and character.
 

coolgy

Newbie
Apr 19, 2018
67
124
Just to verify:
  • The other features of the mod work? (e.g. damaging enemy after H-Scene, regaining health after complete H-Scene)?
  • Does the attacked monster have an H-Scene?
  • When you attack the monster (spin or normal) while holding Left Shift, do you make damage (should not be; monsters without H-Scene just are not hit, with H-Scene starts the scene)
  • Do you have a censored version without H-Scenes?
  • Do you use the keyboard or a controller? (controller is L-Trigger + Attack, Keyboard is L-Shift + Attack; L-Trigger is the key you press for switching to Mana Potions when playing with XBox controller)
Just to follow up, as i have a similar issue to Fazio. I think i've found out what the problem for me is.

To describe the problem; for me every auto attack leads to the grab attack that initiates sex. all auto attacks go through non-H enemies and do no damage. I think the reason i have this issue is because i have joysticks/controllers plugged in that have constant inputs which are holding down the 'shift' key while im playing the game.

Any way to fix this? I'd love to play the mod but its unrealistic for me to unplug my joysticks for just this game.

Thanks.
 

RaivoAsdf

Newbie
Modder
Mar 2, 2018
73
155
Just to follow up, as i have a similar issue to Fazio. I think i've found out what the problem for me is.

To describe the problem; for me every auto attack leads to the grab attack that initiates sex. all auto attacks go through non-H enemies and do no damage. I think the reason i have this issue is because i have joysticks/controllers plugged in that have constant inputs which are holding down the 'shift' key while im playing the game.

Any way to fix this? I'd love to play the mod but its unrealistic for me to unplug my joysticks for just this game.

Thanks.
That explains that... Grabbing non-H-Scene monsters will do no damage in my mod.

I don't think that the controller/joysticks will send the same signal as left-shift. But maybe they send a Z-Axis as negative. This is what signals the L-Trigger.

But that would mean, you also cannot use the Heal potions with the controller, as "B" on controller uses Red Potions, and L-Trigger + "B" uses Blue Potions. Do you encounter that problem, too (the blue potions always glowing)? You can still use both potions on the keyboard with "1" and "2", however...

And you have a controller attached, but play using the keyboard. Is that correct? What type of controller do you have?
 

coolgy

Newbie
Apr 19, 2018
67
124
That explains that... Grabbing non-H-Scene monsters will do no damage in my mod.

I don't think that the controller/joysticks will send the same signal as left-shift. But maybe they send a Z-Axis as negative. This is what signals the L-Trigger.

But that would mean, you also cannot use the Heal potions with the controller, as "B" on controller uses Red Potions, and L-Trigger + "B" uses Blue Potions. Do you encounter that problem, too (the blue potions always glowing)? You can still use both potions on the keyboard with "1" and "2", however...

And you have a controller attached, but play using the keyboard. Is that correct? What type of controller do you have?
Well im not sure what button "B" is mapped to but i pressed random buttons and infact only the blue pots got used.

I have dual


And yes. I play on the keyboard and mouse with no issues otherwise.
 

RaivoAsdf

Newbie
Modder
Mar 2, 2018
73
155
Well im not sure what button "B" is mapped to but i pressed random buttons and infact only the blue pots got used.

I have dual


And yes. I play on the keyboard and mouse with no issues otherwise.
Ok, I see. That's a 4 axis joystick.
I used a normal XBox controller, where the L/R Trigger are the Z-Axis. I think it should be the Throttle slider on yours. Try to put it exactely in the middle.
You can also check in the Windows Gamecontroller settings what the axis is (Hit Windowskey > enter "Gamecontroller" > go to "Properties" > "Test"). The Z-Axis must be in the middle (neutral / 100%) position.
You find more info here:
Hope this helps...
 

coolgy

Newbie
Apr 19, 2018
67
124
Ok, I see. That's a 4 axis joystick.
I used a normal XBox controller, where the L/R Trigger are the Z-Axis. I think it should be the Throttle slider on yours. Try to put it exactely in the middle.
You can also check in the Windows Gamecontroller settings what the axis is (Hit Windowskey > enter "Gamecontroller" > go to "Properties" > "Test"). The Z-Axis must be in the middle (neutral / 100%) position.
You find more info here:
Hope this helps...
Nah its not the slider. Its the throttle twist. Throttle needs to be twisted to the left to use pots, do damage. It also makes me spin attack constantly.

Trying to see if i can disable the input inside Assembly-CSharp.dll but its been a while since i did any sort of programming.
 

RaivoAsdf

Newbie
Modder
Mar 2, 2018
73
155
Nah its not the slider. Its the throttle twist. Throttle needs to be twisted to the left to use pots, do damage. It also makes me spin attack constantly.

Trying to see if i can disable the input inside Assembly-CSharp.dll but its been a while since i did any sort of programming.
This is what I added for the grapple attack:
C:
////////////////////////////////////////
// MODIFY Monster.OnTriggerStay2D:
////////////////////////////////////////
private void OnTriggerStay2D(Collider2D col)
{
// [...............SKIP Down to this part ~Line 260 in the method]
        else if (col.tag == "Col_PC_Atk" && !this.isInvincible)
        {
            //////////////// ADD THIS
            if (Input.GetAxis("L_Trigger") < 0f || Input.GetKey(KeyCode.LeftShift))
            {
                if (this.GM.Hscene_Num == 0)
                {
                    base.SendMessage("Start_H_Single");
                }
                if (this.GM.Hscene_Num == 0)
                {
                    base.SendMessage("Start_Hscene");
                }
                return;
            }
            //////////////// END ADD THIS
// [...............Rest unchanged]
If you remove the Input.GetAxis("L_Trigger") < 0f, it will stop reacting to the L-Trigger and only Left Shift will start the H-Scene.

Hope this helps
 

coolgy

Newbie
Apr 19, 2018
67
124
This is what I added for the grapple attack:
C:
////////////////////////////////////////
// MODIFY Monster.OnTriggerStay2D:
////////////////////////////////////////
private void OnTriggerStay2D(Collider2D col)
{
// [...............SKIP Down to this part ~Line 260 in the method]
        else if (col.tag == "Col_PC_Atk" && !this.isInvincible)
        {
            //////////////// ADD THIS
            if (Input.GetAxis("L_Trigger") < 0f || Input.GetKey(KeyCode.LeftShift))
            {
                if (this.GM.Hscene_Num == 0)
                {
                    base.SendMessage("Start_H_Single");
                }
                if (this.GM.Hscene_Num == 0)
                {
                    base.SendMessage("Start_Hscene");
                }
                return;
            }
            //////////////// END ADD THIS
// [...............Rest unchanged]
If you remove the Input.GetAxis("L_Trigger") < 0f, it will stop reacting to the L-Trigger and only Left Shift will start the H-Scene.

Hope this helps
Yes, that works. Much appreciated!
 

Buziol

Active Member
Jun 5, 2017
780
1,488
anybody have the 0.13 version? i kinda removed it by accident from my gahh dahmn storage
Ehmmm....why would you want a 0.13 version when a full release is available for years now? It's not like there's some content cut from it so there's literally no reason to grab old demos.
 

$ent1ent

Newbie
Sep 25, 2020
44
16
Ehmmm....why would you want a 0.13 version when a full release is available for years now? It's not like there's some content cut from it so there's literally no reason to grab old demos.
idk just wanna play the old version
 
Nov 24, 2019
59
35
Can't you like, imagine that game ends in 1/4th? That's pretty much the scope of the demo 0.13. Literally nothing is different. Even enemies, powers, mechanics and animations stayed the same.
I thought the only difference was the face hugger animation was in the gallery for .13 and it got removed from the gallery in the full might be wrong tho
 

Buziol

Active Member
Jun 5, 2017
780
1,488
I thought the only difference was the face hugger animation was in the gallery for .13 and it got removed from the gallery in the full might be wrong tho
As far as I can remember, facehugger was never in the gallery because it is something of a situational critter and the only gore in-game. Definitely there wasn't a full animation (aka birth), of that I am sure.
 
  • Like
Reactions: LDV

Hi There

New Member
Nov 21, 2017
1
1
The 0.12B and prior demos had a different map layout as well as difficulty (or may be just the spitter dudes having a different attack that made it harder), as well as enemy "grab logic" being slighty different I think. Otherwise, pretty sure the 0.13 demo is just a watered down version of the full game, which is probably why I don't have it anymore, sorry.
 
  • Like
Reactions: Buziol

cell943

Active Member
Oct 14, 2017
603
562
Since someone here want to know how is KMod doing now
Here are some other newer sneak peek (older sneak peek)

Please note that thing(s) inside sneak peek may not be included in the release version

You don't have permission to view the spoiler content. Log in or register now.
"Im...preg...nate" sounds like the male is declaring he is pregnate with babby.
 

kwanlier

Active Member
Oct 26, 2019
508
982
"Im...preg...nate" sounds like the male is declaring he is pregnate with babby.
Okay
English is not my first language, so there might be grammatical error then and there,
but "Im" pretty sure that to get word that you just type, I have to use "Im...Preg...nant".
 
4.50 star(s) 119 Votes