Page 1 of 1

Stardew Valley V1.5

Posted: Mon Jan 04, 2021 7:15 am
by Wombleinc
None of the tables work any more, I am trying to fix everything I can but literally everything has moved around. I don't really want to install mods to be able to play and would rather have tables to work from. Can anyone help with this, I am willing to do a lot of the work on my own but I don't really know how to fix these since everything is so different.

Example being:
Old table:

Code: Select all

aobscan(unlimitedStamina,55 8B EC 56 50 8B F1 8B 8E EC) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:
  ret

code:
  push ebp
  mov ebp,esp
  push esi
  push eax
  jmp return

unlimitedStamina:
  jmp newmem
return:
registersymbol(unlimitedStamina)

[DISABLE]

unlimitedStamina:
  db 55 8B EC 56 50

unregistersymbol(unlimitedStamina)
dealloc(newmem)
New information for Stamina:

Code: Select all

What writes-
00F90000 - C7 46 28 0E010000  - mov [esi+28],0000010E (270 in HEX)
00F90007 - D9 5E 28    - fstp dword ptr [esi+28] (store floating point value)

Re: Stardew Valley V1.5

Posted: Mon Jan 04, 2021 7:42 am
by aSwedishMagyar
Wombleinc wrote:
Mon Jan 04, 2021 7:15 am
...
Does this not work?

Re: Stardew Valley V1.5

Posted: Mon Jan 04, 2021 8:17 am
by Wombleinc
aSwedishMagyar wrote:
Mon Jan 04, 2021 7:42 am
Wombleinc wrote:
Mon Jan 04, 2021 7:15 am
...
Does this not work?
Yea that does, I am so sorry I didn't see the updated tables.