Page 1 of 1
Vaporum: Lockdown
Posted: Wed Sep 16, 2020 6:23 am
by MGGA
Inf. Health
Inf. Energy
Level
Invincible
Immune To Bleed
Immune To Fire
Immune To Poison
Immune To Shock
Immune To Drain
Immune To Stun
Immune To Push
Immune To Switch
Immune To Marker
Re: Vaporum: Lockdown
Posted: Wed Sep 16, 2020 8:26 am
by waganikki
Many thanks. Can you please add circuit point pointer?
Re: Vaporum: Lockdown
Posted: Fri Sep 18, 2020 12:25 pm
by jedi69
waganikki wrote: ↑Wed Sep 16, 2020 8:26 am
Many thanks. Can you please add circuit point pointer?
+1
Re: Vaporum: Lockdown
Posted: Sat Sep 19, 2020 9:15 am
by Kentda
Ok, an important note. The pointers don't seem to populate until you've taken damage.
I loaded the game, loaded the table, and all the items under pointers were ??
But, I got into a single fight, and they all popped up.
Re: Vaporum: Lockdown
Posted: Sat Sep 19, 2020 11:37 pm
by bloodsucker
Kentda wrote: ↑Sat Sep 19, 2020 9:15 am
Ok, an important note. The pointers don't seem to populate until you've taken damage.
I loaded the game, loaded the table, and all the items under pointers were ??
But, I got into a single fight, and they all popped up.
have been confirmed.
thank it work but the game is really boring, went out of the patient in the first 15 min.
Re: Vaporum: Lockdown
Posted: Thu Oct 15, 2020 5:50 pm
by Marc
For whom it concerns, here's my attempt on the
GoG Version Build 45 Patch 3
Features:
- health does not fall below 100
- energy does not fall below 100
- amount of ammo does not decrease when shooting
- find address of XP to edit them
have fun
Marc
Re: Vaporum: Lockdown
Posted: Fri Oct 30, 2020 9:08 pm
by Nzembwa
there is a main quest where you will get a push gun to push metal spiders into a grinder, but it counts as a weapon and combined with a certain ability weapons will also deal 5% of your integrity as damage killing them and unable to progress further in the game and thus ending your story, so, can you make a cheat that pushes enemies dealing no damage or remove circuits talents or reduce / remove your damage or increase enemies hit points?
Re: Vaporum: Lockdown
Posted: Sat Oct 31, 2020 9:11 am
by Marc
I did not play it very far so I could not check it at this very location.
But I've just added another table which should prevent damage to anyone.
Hope it helps,
Marc
Re: Vaporum: Lockdown
Posted: Sat Oct 31, 2020 7:38 pm
by Nzembwa
it prevents damage but also prevents enemies from knockback push effect so it is useless, the best thing you could do to solve this is to increase enemies durability / hit points so they don't die in 1 hit and should make the quest work ...
spiderlings have 1/10 durability, if you could find enemies life somehow, just increase it 10 or 100 or 1000 times, either temporary or until game ends, doesn't matter if it last forever, the game is too easy even on hardest difficulty
Re: Vaporum: Lockdown
Posted: Sat Oct 31, 2020 7:54 pm
by Marc
Hm... Okay then... what could work is to change the "always 100 health" by removing the check if it affects the party or enemies.
Try this (create a new auto assembler script and put this in or replace the "always 100 health" with it):
Code: Select all
[ENABLE]
aobscan(health,F3 0F 11 AE A0 00 00 00 48 8B) // should be unique
alloc(newmem,$1000,health)
alloc(value, 8)
label(code)
label(return)
value:
dd (float)100
newmem:
movss xmm5,[value]
code:
movss [rsi+000000A0],xmm5
jmp return
health:
jmp newmem
nop 3
return:
registersymbol(health)
[DISABLE]
health:
db F3 0F 11 AE A0 00 00 00
unregistersymbol(health)
dealloc(newmem)
Should put the remaing life always to 100. If this does not help, I'm out of ideas.
Re: Vaporum: Lockdown
Posted: Sun Nov 01, 2020 4:51 pm
by Nzembwa
well what it does now it allows to push the enemies but once they fell down into the grinders (a square hole) they don't get grinded into metal scrap pieces so the quest doesn't progress , need to scrap 5 spiderlings for quest (check spiderlings grinder on youtube)
so the spiders must not die from the weapon hit , but they must die from the metal grinder, once they fell down, the hole counts as filled and cannot throw another spider down, but they also don't die so the quest doesn't work
the only solution i can think is to increase enemies health or decrease player total damage (temporary)
Re: Vaporum: Lockdown
Posted: Sun Nov 01, 2020 5:15 pm
by kanggg
Are you using an older build or something because I've completed this game with those +DMG abilities and didn't encounter this problem?
Re: Vaporum: Lockdown
Posted: Sun Nov 01, 2020 5:16 pm
by Nzembwa
the problem is integrity depositor circuit which deals 5% of your max integrity as damage on weapon hit, and i have also cheated to have all abilities in the game so i have a lot of life
Re: Vaporum: Lockdown
Posted: Sun Nov 01, 2020 5:21 pm
by Nzembwa
OKAY ! i have done it , i have used your cheat marc coupled with the game's time stop ability to play turn based instead of real time, so i activate cheat - stop time - push spiders - stop time - deactivate cheat - turn real time, and the spiders fall and die in the grinder
Re: Vaporum: Lockdown
Posted: Mon Nov 02, 2020 2:37 pm
by Marc

Clever solution!
I should have thought of that...