Recent content by nifengyuexia

  1. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    Trying the “--gs-force-bilinear=1”command may be helpful
  2. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    I'm not sure. I have the impression that NTSC-U games don't have anti-piracy protection. I haven't tested any NTSC-U games because of regional issues. Of course, if the error is the same, you can port my code to fix it, otherwise it's another problem.
  3. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    Final Fantasy VIII (Japan, Asia) LUA -- Final Fantasy VIII [NTSC J] (SLPS-01880) -- Lua by nifengyuexia -- emu used=The Legend of Dragoon v1.0 local patcher = function() --Crash caused by removing anti-piracy protection local code_check1 = R3K_ReadMem16(0x09B9E0) if code_check1 == 0x0119 then...
  4. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    Saru! Get You!(Japan) LUA -- Saru! Get You! [NTSC J] (SCPS-10091) -- Lua by nifengyuexia -- emu used=syphonfilter v2 emu local patcher = function() --Widescreen 16:9 R3K_WriteMem16(0x800AEF20,0x0C00) --Bypass anti-piracy rules local code_check1 = R3K_ReadMem16(0x13723C) if code_check1 ==...
  5. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    Silent Hill(Japan) LUA -- Silent Hill [NTSC J] (SLPM-86192) -- Lua by nifengyuexia -- emu used=RRT4 emu local patcher = function() --Widescreen 16:9 local code_check1 = R3K_ReadMem16(0x0C9638) if code_check1 == 0x1000 then R3K_WriteMem16(0x800C9638,0x0C00) end --Crash caused by removing...
  6. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    Metal Slug - Super Vehicle-001 (Japan, Asia) LUA -- Metal Slug 1 [NTSC J] (SLPS-00950) -- Lua by nifengyuexia -- emu used=All emus released after syphonfilter v2 local patcher = function() --Fix scene crash local code_check1 = R3K_ReadMem16(0x103456) if code_check1 == 0x1040 then...
  7. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    It's related to tlb miss, maybe the FPU/COP precision range can also fix it, but it's too difficult and I didn't find the correct precision range. Because it is effective on PCSX2, it is a good choice if you are willing to try it.
  8. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    Not sure, it shouldn't be the same problem, this configuration shouldn't fix the Mortal Kombat arcade mode bug.
  9. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    JoJo no Kimyou na Bouken - Ougon no Kaze SLPM-65140 CLI All versions --vu-xgkick-delay=0 --fpu-no-clamping=1 --cop2-no-clamping=1 # emu used=jak v2
  10. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    Shadow Hearts CLI All versions --gs-kernel-cl="h2lpool" #Completely fixed game frame rate --gs-kernel-cl-up="h2lpool2x2" #Completely fixed game frame rate --fpu-accurate-mul-fast=1...
  11. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    Tekken 5 CLI All versions --host-audio-latency=0.75 --iop-cycle-scalar=0.95 --ee-cycle-scalar=0.78 LUA All versions -- Tekken 5 -- Total Repair by nifengyuexia -- emu used=bully v2 apiRequest(0.1) local gpr = require("ee-gpr-alias") local eeObj = getEEObject() local emuObj =...
  12. nifengyuexia

    PS4 [Research]PS2 emulator configuration on PS4

    Okay, I haven't posted configurations on the forum for a long time, but the repair work has never stopped. Maybe more people need these configurations, they just don't want any PKG files derived from any configurations I posted to appear for download. Nightshade SLUS-20810 lua -- Nightshade...
  13. nifengyuexia

    PS4 I would like to solve the ps2 game dragon ball z3 freezing issue on ps4.

    Regarding this game, there is no address offset in any NTSC version, just add the following configuration to LUA. apiRequest(0.1) local gpr = require("ee-gpr-alias") local eeObj = getEEObject() local emuObj = getEmuObject() local patcher = function() --fight intro freeze skip...
  14. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    By the way, another configuration of the official Legend of Dragoon is to fix the delay. According to the above example, we can repair any game that requires multiple discs to be exchanged。 -- Lua 5.3 -- Title: Legend Of Dragoon (SIEA) -- Author: Ernesto Corvi -- Changelog: function...
  15. nifengyuexia

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    The value of 650 is obviously not enough. I have not tested other versions. In the NTSC-J version, random soft locks will also occur in BOSS battles. I increased the value to 1650 and all random soft locks have been eliminated. Thank you very much Configuration tips. I'm now on disc four, and...
Back
Top