Page 14 of 18

Re: Persona 4 Golden (Steam)

Posted: Wed Sep 02, 2020 7:06 pm
by DeaconGlen
Great! And fast!

Re: Persona 4 Golden (Steam)

Posted: Wed Sep 02, 2020 7:39 pm
by zachillios
OP updated. Let me know if there's anything not working.

Re: Persona 4 Golden (Steam)

Posted: Sat Sep 05, 2020 12:06 pm
by CorgiZwei
Is there any Instant Fishing script?

Re: Persona 4 Golden (Steam)

Posted: Sat Sep 05, 2020 1:13 pm
by Hiroshi Mishima
The scan-based scripts don't appear to be working. The "Combat Scan" continues to show ??, and the "Out of Combat" scan had both slots 1 and 3 as 0 HP/SP, and a some large number in slot 2 that wasn't related to my characters. I don't think the "money pointer" worked, either. "Infinite SP outside Combat" seemed to work, though.

EDIT: Playing the latest Steam version, by the way.

Re: Persona 4 Golden (Steam)

Posted: Sat Sep 05, 2020 5:09 pm
by zachillios
Hiroshi Mishima wrote:
Sat Sep 05, 2020 1:13 pm
The scan-based scripts don't appear to be working. The "Combat Scan" continues to show ??, and the "Out of Combat" scan had both slots 1 and 3 as 0 HP/SP, and a some large number in slot 2 that wasn't related to my characters. I don't think the "money pointer" worked, either. "Infinite SP outside Combat" seemed to work, though.

EDIT: Playing the latest Steam version, by the way.
You were right about the Combat Scans not working, I went ahead and fixed those. The Money pointer is working fine for me. As for the Out of Combat scan: open the Item menu and their stats will populate there, not on the stats page.

Re: Persona 4 Golden (Steam)

Posted: Mon Sep 07, 2020 12:17 pm
by Hiroshi Mishima
Thanks for fixing the combat scans. Work like a charm now, much appreciated. However, even when I go to the Item Menu, slots 1 and 2 are showing 0's.


Re: Persona 4 Golden (Steam)

Posted: Tue Sep 08, 2020 3:25 pm
by RedFalcon
zachillios wrote:
Wed Jul 15, 2020 11:48 pm
daquist wrote:
Wed Jul 15, 2020 5:53 pm
Hey,

is it possible to undo a relationship?
In the S.Link tab I see e.g. Lovers and Lovers (relationship).

But changing them doesn't do anything.
Lower your rank to the point to the one where you make the choice and increase your progress then redo the rank. This will overwrite the flag and make you not be in a relationship.
My Chie social link is rank 10, when i lowered her rank to 8 i can't speak with her(no ! bubble). Is this method not work if already rank 10?

Re: Persona 4 Golden (Steam)

Posted: Wed Sep 16, 2020 4:02 pm
by Lolleman
why is there no proper explanation for the risette achievement, ive seen this post with the address for the achievement and i added the address manually. I started a whole new game just to try and get the achievement and as soon as i got Rise i put the value on 249 so the first line should be a line ive never heard since its new game. I did a few battles and still nothing am i doing something wrong within the cheat engine? is it suppose to be 4 Bytes or whatever, i really have no knowledge about this. i just want the damn achievement cuz its a real pain the ass

Re: Persona 4 Golden (Steam)

Posted: Tue Feb 02, 2021 10:26 pm
by Ginseng
Great and thorough table, thanks for the updates as well!

Re: Persona 4 Golden (Steam)

Posted: Thu Feb 04, 2021 8:08 pm
by gruff
I can't get the fuse to get any achievement to work. I follow the instructions but the achievement never pops, if anyone could help that would be appreciated

Re: Persona 4 Golden (Steam)

Posted: Wed Jul 21, 2021 4:31 pm
by Jdawg
Can't get any of the pointers to work on the steam version.

Re: Persona 4 Golden (Steam)

Posted: Fri Oct 08, 2021 10:02 pm
by hatake_kornel
It seems currently its not working for Steam version. Could anyone who got free time to update this please?

Re: Persona 4 Golden (Steam)

Posted: Sat Nov 20, 2021 11:45 pm
by arkadounel
does the social link editor help with reversing the social link event of valentine's because i thought the relationship system was similiar to hades?

Re: Persona 4 Golden (Steam)

Posted: Fri Mar 18, 2022 7:57 pm
by jeremyrem
I know this is an old table but just got the game and needed a way to be able to pick all cards during the shuffle and made this snippet

It prevents the card "tried" from going down letting you pick every card

Code: Select all

{ Game   : P4G.exe
  Version: 
  Date   : 2022-03-18
  Author : JRemi

  Unlimited Cards during Shuffle Time
}

[ENABLE]

aobscanmodule(INJECT,P4G.exe,FF 8B 94 B5 01 00) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
  nop 6
  jmp return

INJECT:
  jmp newmem
  nop
return:
registersymbol(INJECT)

[DISABLE]

INJECT:
  db FF 8B 94 B5 01 00

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: P4G.exe+22CFB4DB

P4G.exe+22CFB4AB: E8 70 B9 42 DD           - call P4G.exe+126E20
P4G.exe+22CFB4B0: 89 83 60 C4 01 00        - mov [ebx+0001C460],eax
P4G.exe+22CFB4B6: 83 C4 08                 - add esp,08
P4G.exe+22CFB4B9: A1 C4 81 E8 21           - mov eax,[P4G.exe+21A881C4]
P4G.exe+22CFB4BE: A9 00 20 00 00           - test eax,00002000
P4G.exe+22CFB4C3: 74 09                    - je P4G.exe+22CFB4CE
P4G.exe+22CFB4C5: 83 BB 8C B5 01 00 00     - cmp dword ptr [ebx+0001B58C],00
P4G.exe+22CFB4CC: 7E 0D                    - jle P4G.exe+22CFB4DB
P4G.exe+22CFB4CE: 83 BB 60 C4 01 00 02     - cmp dword ptr [ebx+0001C460],02
P4G.exe+22CFB4D5: 0F 85 1E 01 00 00        - jne P4G.exe+22CFB5F9
// ---------- INJECTING HERE ----------
P4G.exe+22CFB4DB: FF 8B 94 B5 01 00        - dec [ebx+0001B594]
// ---------- DONE INJECTING  ----------
P4G.exe+22CFB4E1: 8B 8B D0 C7 01 00        - mov ecx,[ebx+0001C7D0]
P4G.exe+22CFB4E7: E8 F4 EF 3D DD           - call P4G.exe+DA4E0
P4G.exe+22CFB4EC: 8B 8B D0 C7 01 00        - mov ecx,[ebx+0001C7D0]
P4G.exe+22CFB4F2: E8 E9 F0 3D DD           - call P4G.exe+DA5E0
P4G.exe+22CFB4F7: F6 83 80 B5 01 00 02     - test byte ptr [ebx+0001B580],02
P4G.exe+22CFB4FE: 75 19                    - jne P4G.exe+22CFB519
P4G.exe+22CFB500: 8B 83 D4 C7 01 00        - mov eax,[ebx+0001C7D4]
P4G.exe+22CFB506: 8B 40 40                 - mov eax,[eax+40]
P4G.exe+22CFB509: 66 83 88 C4 01 00 00 08  - or word ptr [eax+000001C4],08
P4G.exe+22CFB511: 66 83 8B 80 B5 01 00 02  - or word ptr [ebx+0001B580],02
}

Re: Persona 4 Golden (Steam)

Posted: Thu Mar 24, 2022 8:56 pm
by anl93
I upldated and merged tanbles here,

I also added persona skill editor for Yu and team members.
Update1: Added persona editor for Yu and Team members.
Update2: Added Kanji, Rise, Teddie & Bait / Fish Editor.

Enjoy.