diff --git a/README.md b/README.md index 2001182..78f4446 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # SEGA dumptools -source: emuline.org and 1cc +source: emuline.org and 1cc (websites and discord) + +Additions and documentation appreciated. diff --git a/tools/Download/DownloadOrder_V1.php b/tools/Download/DownloadOrder_V1.php new file mode 100755 index 0000000..a84cba0 --- /dev/null +++ b/tools/Download/DownloadOrder_V1.php @@ -0,0 +1,55 @@ + array( + + 'header' => "Pragma: DFI", + + 'method' => 'POST', + + 'content' => $compressed + + ) + + ); + + $context = stream_context_create($options); + + $result = file_get_contents('http://naominet.jp/sys/servlet/DownloadOrder', false, $context); + + if ($result === FALSE) { exit("error dl\n"); /* Handle error */ } + + //print($result); + + $response = gzuncompress(base64_decode($result)); + + print($response); + +} + +?> + +SEGA DOWNLOADORDER + +
+ +GAME ID: + +GAME VERSION: + +
+ +
\ No newline at end of file