Posted by: Erg
« on: September 10, 2014, 08:17:05 AM »I'm currently using the latest version of EasyTutu, with Tutufix v19, and I've noticed that there are no spawns in area FW5400 and area FW4100.
This is caused by faulty area scripts. The following code fix the issue:
This is caused by faulty area scripts. The following code fix the issue:
Code: [Select]
// Patching _AR5400.BCS and _AR4100.BCS (spawns didn't work)
COPY_EXISTING ~_AR5400.BCS~ ~override~
~_AR4100.BCS~ ~override~
PATCH_IF SOURCE_SIZE > 0x34 BEGIN
DECOMPILE_AND_PATCH BEGIN
REPLACE_TEXTUALLY CASE_INSENSITIVE ~\(TriggerActivation.+\)~ ~\1
Continue()~
END
END
BUT_ONLY_IF_IT_CHANGES