
Originally Posted by
JLM
Okay...
Here's the FULL process.
I stick my game disk into the cd-drive, and it pops open.
---i'd copy the files, but I need to preserve the original format of the disk.
I tell alcohol to create a PS2 format disk.
---it will only allow MDS and CCD images which apache can't open.
I tell alcohol to create a custom disk so ISO is an allowed output format.
---Apache crashes trying to open this ISO,
---despite me being able to extract the internal ISO using alcohol,
So I create an ISO image from the disk using apache instead.
---this "apache disk" ISO opens in apache correctly, and shows the filelist.
So I extract the internal ISO from it as well.
To sumerize, I have:
An "Alcohol Disk" ISO and it's "alcohol extracted" internal-ISO
AND
An "Apache Disk" ISO and it's "apache extracted" internal-ISO
Both internal ISO files can open in alcohol and shows that all files are there.
AND both internal ISO files can open in apache,
BUT... neither shows a filelist.
SO I can't extract OR overwrite anything in these ISO files.
(this is the main problem - even if I get the files that I need to edit using alcohol "from either internal-ISO" - Neither alcohol or apache can overwrite them back into either internal-ISO)
THE FILE LIST:
SLUS20380 (original disk OR disk image)
---Data (folder)
---DATA.ISO
---AND 12 files
===Contents of "DATA" folder:
MUSIC (folder)
---31 files
SOUND (folder)
---DINO (folder)
------27 files
---PEOPLE (folder)
------2 files
---WORLD (folder)
------3 files
---AND 3 files
===Contents of "DATA.ISO" file: disk label "SIMJP"
DATA (folder)
---GUI (folder)
------3DCURSOR (folder)
---------8 files
------BOOTLOCALES (folder)
---------9 files
------LOCALES (folder)
---------9 files
------AND 10 files
---MATLIBS (folder)
------97 files
---MEMCARD (folder)
------1 file
---MISSIONS (folder)
------22 files and a folder containing 76 files
---MODELS (folder)
------165 files
---MOVIES (folder)
------3 files
---PARTICLE (folder)
------18 files
---SAVEGAME (folder)
------contains 1 empty folder
---TERRAIN (folder)
------1 file and a folder containing 70 files
---UNITS (folder)
------284 files (and a folder containing 46 files and 2 folders: containing 59 and 24 files)
---AND 30 files
The "AND 30 files" at the bottom in BOLD...
Includes the files that I want to change.
AKA: "FSLHUNT.INI", and "CONSTANT.INI"
Code:
I wish to change this:
#ifdef TOSHI_SKU_PS2
maxchosen = 3;
starrating[0] = 0;
starrating[1] = 1;
starrating[2] = 3;
//starrating[3] = 3; // Unlock last two at 3 stars
TO THIS:
#ifdef TOSHI_SKU_PS2
maxchosen = 9;
starrating[0] = 0;
starrating[1] = 1;
starrating[2] = 3;
starrating[3] = 5;
starrating[4] = 5;
starrating[5] = 5;
starrating[6] = 5;
starrating[7] = 5;
starrating[8] = 5;
Code:
I'd also like to change this:
MaxDinoPopulation = 60;
TO THIS:
MaxDinoPopulation = 100;
I hope this explains the WHOLE problem better ^^;