MalevolentGimp
Member
This will probably mainly interest other PS3Xploit HAN users.
Something I ran across and thought "it sure would be nice if there was a batch script for this."
.rap file creation with hexadecimal key or whatever you want to call it. Manually doing these files is extremely tedious; Open HxD.exe; Ctrl+N; paste in the key; Ctrl+S; paste in the proper .rap file name and you got yourself a 'blank' .rap that can be resigned with the PS3Xploit resigner.
I've got a simple batch script that will take the proper files names from a list.txt and write the .rap files out but they do not have the hexadecimal key entered into the file. What I'm looking for is a batch script or modification of my simple batch script that will not only read and write the proper file names from list.txt but also write the hexadecimal key to the file and save it properly.
@echo off
for /f "delims=" %%a in (list.txt) do break>%%a.rap
the above works fine for creating the .rap files from the list.txt I just don't have the knowledge for how to insert hexadecimal key into the file through batch scripting. I had the idea of modifying list.txt to alternate line by line between proper file name, hex key, and having a script that would read odd number lines for file name and the next even number for the hex/txt to enter into the file. Or create a separate hex.txt file that has the keys and have the script create the properly named file from line 1 of list.txt and then write the hex key from line 1 of hex.txt and continue moving on line by line till end of file. Both ideas seem a bit complex though, someone probably has a simple solution on how to do this without all the hassle.
No doubt will be a question of "WHY!?" OFW PS3Xploit HAN user trying to get all the costume packs for games like Dead or Alive 5 onto my 2nd PS3, while I could cheat with the disc itself and taking the system online to download all the extra stuff I'm more interested in doing this manually just to see if I can.
Something I ran across and thought "it sure would be nice if there was a batch script for this."
.rap file creation with hexadecimal key or whatever you want to call it. Manually doing these files is extremely tedious; Open HxD.exe; Ctrl+N; paste in the key; Ctrl+S; paste in the proper .rap file name and you got yourself a 'blank' .rap that can be resigned with the PS3Xploit resigner.
I've got a simple batch script that will take the proper files names from a list.txt and write the .rap files out but they do not have the hexadecimal key entered into the file. What I'm looking for is a batch script or modification of my simple batch script that will not only read and write the proper file names from list.txt but also write the hexadecimal key to the file and save it properly.
@echo off
for /f "delims=" %%a in (list.txt) do break>%%a.rap
the above works fine for creating the .rap files from the list.txt I just don't have the knowledge for how to insert hexadecimal key into the file through batch scripting. I had the idea of modifying list.txt to alternate line by line between proper file name, hex key, and having a script that would read odd number lines for file name and the next even number for the hex/txt to enter into the file. Or create a separate hex.txt file that has the keys and have the script create the properly named file from line 1 of list.txt and then write the hex key from line 1 of hex.txt and continue moving on line by line till end of file. Both ideas seem a bit complex though, someone probably has a simple solution on how to do this without all the hassle.
No doubt will be a question of "WHY!?" OFW PS3Xploit HAN user trying to get all the costume packs for games like Dead or Alive 5 onto my 2nd PS3, while I could cheat with the disc itself and taking the system online to download all the extra stuff I'm more interested in doing this manually just to see if I can.