okay i think i finally got it.
i spotted up an Spanish copy of Enclave (Xbox) through an regional spanish store around the internet(todocoleccion.net) whose back cover (actually a photo of it) contained at least one text written into three languages(English, Italian and Spanish) and the barcode 4 033756 004776.

EDIT: i've also spotted up an Italian copy of Enclave (Xbox) through geo-ship. at least one copy that's currently being sold on italian Ebay has a photo that spots just about the same back cover as the Spanish one i've talked about earlier, down to the barcode itself. that's it for me.

oshit.
sorry.

i'm talking about this:
https://gamefaqs.gamespot.com/xbox/1418 … anion-disc

this one seems to have been released in NTSC regions. i'm planning on buying this one whenever i have the time and will to do so. but for now just add this into some "Xbox missing disc" article around redump wiki.

oh, that about clears up(if not confirms) a lot of things regarding this limited edition of the game. thank you very much wiggy2k.

are you asking this question at what basis exactly?

besides, if you've even bothered to look at the game's wikipedia article you might learn something really interesting regarding its "limited edition" release

all i gotta say for now is that this "limited edition" of the game was released on USA and Europe alongside the regular edition of the game - and that's the PS2 and Xbox versions of the game from what i'd gathered

https://www.amazon.com/Driver-Parallel- … B000CSTIGC
yep

7

(1 replies, posted in Guests & account requests)

thanks

should anyone know how to actually use the quickbms tool, here's a .bms script in which you can use with that exact tool

open FDDE "gdi"

get GDI_BNAME basename

get tracks line
xmath last_track "tracks - 1"
math track_last_size = 0

log MEMORY_FILE10 0 0
for i = 0 < tracks
    get track_info line
    string track_elements S track_info track_number track_offset track_filetype track_blocknumber track_filename track_unknown
    
    string cue_struct01 p "FILE"
    string cue_struct02 p "BINARY"
    string cue_struct03 p "TRACK"
    string cue_struct04 p "%02d" track_number
    string cue_struct05 p "MODE1/2352"
    string cue_struct06 p "AUDIO"
    string cue_struct07 p "INDEX"
    
    putct cue_struct01 string -1 MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    put 0x22 byte MEMORY_FILE10
    putct track_filename string -1 MEMORY_FILE10
    put 0x22 byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    putct cue_struct02 string -1 MEMORY_FILE10
    put 0x0d byte MEMORY_FILE10
    put 0x0a byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    putct cue_struct03 string -1 MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    putct cue_struct04 string -1 MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    if track_filetype == 0
        putct cue_struct06 string -1 MEMORY_FILE10
    elif track_filetype == 4
        putct cue_struct05 string -1 MEMORY_FILE10
    endif
    put 0x0d byte MEMORY_FILE10
    put 0x0a byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    put 0x20 byte MEMORY_FILE10
    if track_filetype == 0
        putct cue_struct07 string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "00" string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "00:00:00" string -1 MEMORY_FILE10
        put 0x0d byte MEMORY_FILE10
        put 0x0a byte MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct cue_struct07 string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "01" string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "00:02:00" string -1 MEMORY_FILE10
    elif track_filetype == 4
        /*
        if last_track == i
            putct cue_struct07 string -1 MEMORY_FILE10
            put 0x20 byte MEMORY_FILE10
            putct "01" string -1 MEMORY_FILE10
            put 0x20 byte MEMORY_FILE10
            putct "00:01:00" string -1 MEMORY_FILE10
        else
            putct cue_struct07 string -1 MEMORY_FILE10
            put 0x20 byte MEMORY_FILE10
            putct "01" string -1 MEMORY_FILE10
            put 0x20 byte MEMORY_FILE10
            putct "00:00:00" string -1 MEMORY_FILE10
        endif
        */
        putct cue_struct07 string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "01" string -1 MEMORY_FILE10
        put 0x20 byte MEMORY_FILE10
        putct "00:00:00" string -1 MEMORY_FILE10
        #putct "00:01:00" string -1 MEMORY_FILE10 # <- you can try this one too
    endif
    put 0x0d byte MEMORY_FILE10
    put 0x0a byte MEMORY_FILE10
next i

get CUE_FSIZE asize MEMORY_FILE10
string CUE_FNAME p "%s.cue" GDI_BNAME
log CUE_FNAME 0 CUE_FSIZE MEMORY_FILE10

simply put, it converts a single .gdi file into the simplified .cue format in case no one is happy with the obtuse .gdi format at all