From 29ea51ae7742bfa2589b99e5df55b47e034762d8 Mon Sep 17 00:00:00 2001 From: SEGA CORPORATION <> Date: Tue, 12 Jul 2022 22:15:01 -0400 Subject: [PATCH 1/2] add downloadorder php --- tools/Download/DownloadOrder_V1.php | 55 +++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 tools/Download/DownloadOrder_V1.php 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 From 2834bf98a8b2ebaed7578654debe29b6ec1ec115 Mon Sep 17 00:00:00 2001 From: SEGA CORPORATION <> Date: Tue, 12 Jul 2022 22:15:47 -0400 Subject: [PATCH 2/2] update readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.