fireundubh wrote: ↑Sun Dec 03, 2017 7:56 pm
[...]
I checked enable, inf. energy, and zero weight on the main menu, loaded a save, checked inventory editor while in the game, and then opened the Inventory window.
I added hotkeys to inc/dec item slot by 1, and cycled through the slots. I believe
[Link] should have a quantity of 100.
[...]
from the look of the screen cap, somehow the offset calculation is messed up.
with "item slot" at 28, offset base should be 0x1F8 (you can view the calculated offset base by putting an X in front of the "item slot").
and address of "[items slot base]" should be inventory base+1f8*8.
so, in the case shown at your screen cap, address of [items slot base] should be 2BDF4AC0FC0; but instead, it's showing "2BDF4AC0200", which means the calculated offset base is somehow 0x40. which is way off.
the problem is mostly likely caused by the byte size I set for the "item slot" and the hidden slot "offset base", which was 4 bytes each, but I treat them as 8 bytes when calculating the offset base, which is possible to messed up both the "offset base" AND the "inventory base".
I've updated the scripts a little bit, which should have this problem fixed. see if this version works on your game now.
kain33 wrote: ↑Mon Dec 04, 2017 10:00 am
Hello, i´m using this table for the 1.0.2 version of the game. The undead cheat doesn´t work for me even if I write an very high value I still get killed when my health bar depletes. Am I doing something wrong?
thanks for the report.
if setting the "min health" threshold to a high value and the health bar still depletes, that means the filter I used are defected on your game.
I may have a look to refine the script later this week.