CDROM-Guide forums  

PDA

View Full Version : problem with bin cue sheet


   
lhys09915
Apr 25, 2002, 01:40 PM
downloaded a game but after unpacking there is no cue sheet.is there a way to burn the bin file without cue sheet?

Sgt. Dan
Apr 25, 2002, 02:01 PM
You can burn .BIN iamges with Nero Burning Rom.
File - Burn Image - Select all file types - Select .BIN - Mode 2 - Burn

If you do not have Nero Burning Rom then you could just make your own cuesheet...

Open a new Notepad file and paste this into it...

FILE "DIRECTORY\IMAGENAME.BIN" BINARY
TRACK 01 MODE2/2352
FLAGS DCP
INDEX 01 00:00:00

Change the DIRECTORY\IMAGENAME.BIN to the real dir. and image name and save as whatever.cue.

Simple :)

CousinFizz
Apr 26, 2002, 09:16 PM
Hey Sgt... I wish I understood what you were saying on the .cue sheet creation there because I've had this problem on about 5 games. There's no .cue or .bin on any of the games at all... (just the files winRAR ed in a folder) I don't get it but it happens over and over again. I know it has to be easy but I'm not sure what you are doing there, any help? Thanks and take care, CFizz

I'll take it over to the games I have and see what happens...

On the dir. could you give me an example? An example on say Tekken 4, thanks again......

DIRECTORY\IMAGENAME.BIN to the real dir.

The files read something like this:
pdx_tek4.001
and so on down the line to .026

The a few PO numbers and a PAR and then .nfo and .sfv (small files)

z0rch
Apr 27, 2002, 05:41 PM
Fireburner burns bins without a cuesheet :tup:

Anarchy
Apr 27, 2002, 06:03 PM
The end of all your cue-sheet needs:
copy the below text into Notepad and saveas autocueps2.bat, make sure your bin file is called ps2image.bin

@echo off
echo ======================================
echo Anarchy's PS2 AutoCue Creator
echo ======================================
echo.
@if exist *.bin goto makecuecheck
echo No *.bin image found! You must run this file with the bin file in the
echo same directory.
goto end

:makecuecheck
@if exist ps2image.bin goto makecue
echo *.bin file(s) found were not named ps2image.bin
echo Please rename the *.bin file and re-run this program.
goto end

:makecue
echo Press any key to make the cue-sheet...
echo.
pause > nul
echo Creating cuesheet as ps2image.cue
echo FILE "ps2image.BIN" BINARY>ps2image.cue
echo TRACK 01 MODE2/2352>>ps2image.cue
echo INDEX 01 00:00:00>>ps2image.cue
echo The Operation was a success! Open up ps2image.cue in FireBurner or CDR-Win
echo and Enjoy!
echo.
echo Made by Anarchy =)
goto end

:end