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.
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...
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...
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...
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.
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 =...
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...
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...
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...
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...