- Jun 29, 2017
- 15
- 0
There's the Hardcore Mod, the BonerMod and the Kmod. Are there any other mods for this game?
Links to pages would be much appreciated
Links to pages would be much appreciated
I have Kmod's base mod that you can try (download from this post)Where is the mod?
The Kmod's gimmicks / functions are listed above;does the mod only add dialogue?
I think you probably know, or it just happens to me because I play AqE+Kmod on wineskin/mac. When Eve falls down and gets raped, she becomes invisible until I pick up an item, level up or get raped again. This never happened when I played non-modded AqE, I didn't had any bugs. so I can't blame Wineskin for the bug....also expect some bugs
Maybe theres a secret ending if you beat the game fast cuz there is shortcuts in the game like jumping ubove to get super jump b4 the first boss and getting poison wandWell, people have been digging into the assets of the game and looking at previous versions and concluded from that that there has to be content that Grimhelm is withholding from us for some reason, instead of the more logical conclusion that plans change and placeholders are used.
From the bug you said, it sound like it's a not recent version of Kmod because in the recent version, the way she can get raped when she fell down is when she just got raped and fail to escape also even in the recent version, her model can still disappear (rarely), but her model will appear again when she stand up ; also forget to mention , this bug also appear in non-modded version (super super rare) and in boned mod (same as odd as me; but look different as for boned mod case, her model freeze until get hit or get raped) thank for feedback thoughI think you probably know, or it just happens to me because I play AqE+Kmod on wineskin/mac. When Eve falls down and gets raped, she becomes invisible until I pick up an item, level up or get raped again. This never happened when I played non-modded AqE, I didn't had any bugs. so I can't blame Wineskin for the bug.
Also sometimes monsters grab her when she is on air, rape her above the floor.
Just wanted to let you know... Also great mod and work! Thank you for making me enjoy this game once again, even more than before!!
I think is a bug. No one has been able to unlock it ingame. It only appears when you finish the game.I have to say it! where is this animation? it's true WHERE SHE IS ... At first, I thought we had to continue in the game for him to do it ... but no. So I have two more things to say: I could be extremely unlucky, or has anyone ever had this animation in the game? And secondly, if maybe this is a bug in the game, maybe the great people who mod the game can make it work, that would be one more animation.
View attachment 1067606
I might have a little bit of explanation about this matter.I have to say it! where is this animation? it's true WHERE SHE IS ... At first, I thought we had to continue in the game for him to do it ... but no. So I have two more things to say: I could be extremely unlucky, or has anyone ever had this animation in the game? And secondly, if maybe this is a bug in the game, maybe the great people who mod the game can make it work, that would be one more animation.
View attachment 1067606
You were right! I went to page 138 and downloaded from there, I don't have this problem anymore thank you!From the bug you said, it sound like it's a not recent version of Kmod ...
1) No it was not intentional, I did not change anything related to that because I think Grimhelm is OK with that value so I don't want to tinker with it much [I found out that if she get up too fast , she will get damage due to collision with monster : the way it's work is that when the action is done, the monster will step back waiting for player to get up and I think the current setup make by Grimhelm is OK].You were right! I went to page 138 and downloaded from there, I don't have this problem anymore thank you!
Also I have two questions.
1) Was it intentional for Ellen to stay laying down way too more than usual after the orgasm? Because In the drone/machine fight(Where you get the shield powerup), I got caught by the sex machine and even though I smashed left and right faster than extreme difficulty rhythm game level I couldn't manage to get out of it. And before Ellen managed to get up, sex machine's hand grabbed Ellen again, and I couldn't manage to escape from it again... Is there anyway to increase how fast Ellen can get up after she gets an orgasm? Or a way to get out of the rape grapple easier? I love the grapple being a challenge but sometimes whenever I manage to get the escape bar up to 98-99%, it immediately goes down to 30-40%, which is a little bit annoying to happen in boss/mini boss fights.
2) This is out of curiousity, please do not take it wrong. Im not a coder but I am a story writer(for fun not professional), and I know how sometimes when you want to work on your project, you may not have the energy to continue, despite wanting to work on it. So I am not trying to rush you or mean any harm, but after seeing your tease(s) on your mod I got curious... Do you have any estimated release date, or present time status report? I hope I didn't make you uncomfortable(And sorry for the grammar, english isn't my first language as well)
This seems so silly to me. Why not just generate a random number between 0 (inclusive) and 2 (exclusive) so you don't need the ternary operator to change it into a 0 or 1 afterwards? Yes, I know it's not your code.The way this game choose the H scene is by using a random number generator that has minimum number and maximum number set like this.
from this figure; this is a script using for choosing a H scene in the last boss fight (empress xeno , queen xeno , whatever xeno just call her bitch), H scene number 42 and H scene number 43.
Seems like you're not setting the this.SexComment5 to true in the last conditional block. Also, it's been a while since I've programmed, and I'm certain there's a more elegant way to do what you're doing here, but I suggest at least adding an 'else' before every if statement after the first.
(Fig.1 Level of lewdness)
I'm spotting a bug here. If your previous explenation of the Random.Range method is correct, then this bit of code can only generate six unique outcomes, not seven. That'd be 1 - 7, excluding 7.
(Fig.2 RNG)
from this figure. this is the Random Number Generator (RNG) code I use for choosing which dialogue will be displayed during H scene. From the code, you will see that I use between number 1 to 7 -> mean that there are 7 dialogues that can get displayed.
May I ask what you mean with the "low, low-mid, mid level" part here?1. My kink is not in that particular scene (lesbian , machine , non vaginal , low, low-mid, mid level for every scene)
I think he's talking about the fact that the Kink he loves doesn't fit into those scenes.This seems so silly to me. Why not just generate a random number between 0 (inclusive) and 2 (exclusive) so you don't need the ternary operator to change it into a 0 or 1 afterwards? Yes, I know it's not your code.
Seems like you're not setting the this.SexComment5 to true in the last conditional block. Also, it's been a while since I've programmed, and I'm certain there's a more elegant way to do what you're doing here, but I suggest at least adding an 'else' before every if statement after the first.
I'm spotting a bug here. If your previous explenation of the Random.Range method is correct, then this bit of code can only generate six unique outcomes, not seven. That'd be 1 - 7, excluding 7.
May I ask what you mean with the "low, low-mid, mid level" part here?
Silly me, sometime the font is small so might miss then and there and I'm kinda new to Unity programming, so thank you for the tips.Seems like you're not setting the this.SexComment5 to true in the last conditional block. Also, it's been a while since I've programmed, and I'm certain there's a more elegant way to do what you're doing here, but I suggest at least adding an 'else' before every if statement after the first.
Well TBH, this RNG thing , I don't know, is kinda weird ; I mean when i set to randomize between a narrow number , like 1 - 4, there are chance that the number 4 get chosen but super low but will explore about it later.I'm spotting a bug here. If your previous explenation of the Random.Range method is correct, then this bit of code can only generate six unique outcomes, not seven. That'd be 1 - 7, excluding 7.
I mean Ellen (MC) probably scared / confused / panic at first (low level), and then her "defense" about this kind of thing start to drop (low-mid level), and then at some point her heart is open (mid level), and she start to get horny (mid-high level), and finally broken (max level) ; It's may look silly but come on it's a H game.May I ask what you mean with the "low, low-mid, mid level" part here?
README.txtNew BonedMod:
I'm back with an incomplete rewrite of hardmode mod as a bepinex plugin called BonedMod. At this point, I think it is better than the Hardmode mod already. Having it as a bepinex plugin makes it a lot easier for me to tweak mod balance quickly, update the mod and will also make it easy to update the mod to work with new versions of Alien Quest Eve if grimmhelm ever updates it beyond v1.01. I'm also going to put the source up on github eventually and accept pull requests that are good.
...
- Xeno scrotum now visible
Updated BonedMod to dev build #4. This one includes some important updates to bring it closer to the main 1.0 version. We have display mode toggle added back in (with custom code) to support either the classic windowed mode or a new borderless 16:9 clamped fullscreen resolution mode which should work with 4k monitors as well as any other random small monitor sizes (Yay! no more forced windowed mode!). I've done some mesh modification to make the common xeno alien's scrotum visible in the doggystyle animation and added an initial pass at enemy visibility like anthophobia except without level blackout. I have not tested fixes to door lockdown for the last boss timer event but there are changes that should fix it. Facehuggers still can randomly be lethal.#################################################
#### AQE BonedMod [DEV TESTING BUILD 5] 3/8/21
#### by: twitter@bonedHg
#################################################
Q: What is it?
A: A re-imaging of Hardmode Mod as a Bepinex plugin with some core differences but still a focus on adding difficulty and sex mechanics
##### Installation:
0) This DOES NOT WORK WITH Hardmode Mod, ONLY EXTRACT TO A VANILLA AQE v1.01 DIRECTORY
1) Extract zip to folder containing AlienQuest-EVE.exe
2) Launch AlienQuest-EVE.exe
##### Uninstallation:
1) Remove Bepinex folder
2) Remove winhttp.dll
##### Known issues:
Only built for keyboard controls, some facehuggers are lethal
#######################################
######## Added functionality keys:
#######################################
P - toggle player stats overlay
Up(hold) - strip clothing
Down(hold) - attract monsters while naked
Up/Down(struggle) - endure, restoring control
#######################################
######## Added functionality:
#######################################
##### System ->
# 144hz+ support - added
# 4k+ support - added, now will run native resolution and is clamped to 16:9 aspect maximum
# Jump install fix - added to prevent green skull speed runs
# Xeno lockdown : when monsters are nearby, doors will remain closed
# AI patches : various AI changes to slightly improve aggressiveness
##### Player control ->
# Double Jump : now has a regenerating stock (DJ Stock), disabling double jump while bar is red. Regenerates faster based on how much stock is available so avoid spamming
# Blackout : taking damage causes accumulation of blackout, reducing movement capability and will cause Ellen to pass out when full
# Mana fatigue : depleting mana will cause Ellen to move slowly
# Toughness : Ellen takes less damage with lower health
# Shield interference : enemies touching shield will reduce its duration quickly. Mana regenerates slowly while shielded
# Poison efficacy : poison skill loses potency on low health monsters
# Melee : slightly scales with monster health automatically, skill points still very useful
# Spin attack : deals less single target damage but remains effective for multi target
##### Monster general ->
# Flinch : reduced frequency
##### Sex ->
# Control : affects sex escape struggle effectiveness
# Endure : by pressing up/down, reduce efficacy of struggle but regain control during sex and reduce Ellen's sex healing
# Enforce : reduces struggle effectiveness
# Wetness : reduces damage taken from oversized penis, increases control damage from thrust, increases monster pleasure
# Oversized : (Penis size XP bar) causes sex to damage HP instead of healing, reduce ease of escape. Oversize progression is permanent with enough sex for penis tiers: normal, large, huge, extreme. Previous oversized tiers must be completed before progress on larger penis sizes is available (normal before large etc)
# Ejaculate poison : monster vaginal ejaculate poisons Ellen
# Game over : If Ellen has 1 HP when a monster ejaculates, player will receive game over
##### Monster Sex ->
# Pleasure : a permanent stat on the monster, affecting how long Enforce will be active on start of sex. Monsters not participating in sex but nearby will gain pleasure slowly while Ellen is being fucked
Thanks!boned fantastic mod. The game can't be beat though due to the lockdowns after the boss fight. edited my last post.
I actually triggered it ingame but only after I finished the story and seeing in the gallery that it actually can fuck Ellen. After learning this, I went directlly to the area where these fat aliens appear and they did actually fuck Ellen. To my surprise it doesn't have one, but two animations.I think is a bug. No one has been able to unlock it ingame. It only appears when you finish the game.
Just installed the mod (great work by the way), however the luring system doesnt seem to work for me, the xenos only want to attack me until i'm dead, is there any way to fix this?README.txt
Updated BonedMod to dev build #4. This one includes some important updates to bring it closer to the main 1.0 version. We have display mode toggle added back in (with custom code) to support either the classic windowed mode or a new borderless 16:9 clamped fullscreen resolution mode which should work with 4k monitors as well as any other random small monitor sizes (Yay! no more forced windowed mode!). I've done some mesh modification to make the common xeno alien's scrotum visible in the doggystyle animation and added an initial pass at enemy visibility like anthophobia except without level blackout. I have not tested fixes to door lockdown for the last boss timer event but there are changes that should fix it. Facehuggers still can randomly be lethal.
TLDR; click through to the quoted original post to download the mod
Thanks!