Advertisement
atreyu187

Dreamcast Guides : Selfbooting Multi-Game Disc Using XPD

Feb 28th, 2013
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. Quick and dirty multi-game discs with XDP
  2. by comradesnarky
  3.  
  4.  
  5.  
  6. First things first; game data ALWAYS goes in folders. All of the XDP files
  7. should be in the root of the disc. Then you make folders there and put
  8. all relevant game files in said folders.
  9.  
  10. This set is binhacked for 45000 LBA.
  11.  
  12. 1.
  13.  
  14. Edit XDP.INI. Go down to the [Launcher1] section. Leave the "AppUrl="line alone.
  15. For "AppDir=" it needs to be the folder that your game data is in. "AppName=" is the name of the game's binary, which is usually 1ST_READ.BIN, of course.
  16.  
  17.  
  18.  
  19. 2.
  20.  
  21. The next part is dependent on your HTML skills. HTML is generally pretty
  22. self explanatory for what it's doing, and it's not hard to learn. Open
  23. XDPDEX.HTML in some kind of text editor (or maybe some kind of web design
  24. program if you're that fancy). You'll see that this is made up for the
  25. Gundam & DX 2-in-1 disc. You'll have to modify the HTML a bit to make it
  26. display text instead of blank boxes. I'll get to that in a second though.
  27.  
  28. This line:
  29.  
  30. <a href="x-avefront://---.dream/proc/launch/1">
  31.  
  32. Determines which game the link will launch. You probably noticed while editing XDP.INI that there are multiple entries for games that you can have. They go chronologically, so whatever game you put first will be labeled as such.
  33.  
  34. "launch/1"
  35.  
  36. And so on and so forth.
  37.  
  38. The later part of the earlier line is this:
  39.  
  40. <img src="img/standard.png" width="229" height="150" border=0>
  41.  
  42. This displays an image for the link. If you want text instead, the line should look like this:
  43.  
  44. <a href="x-avefront://---.dream/proc/launch/1">Start Game</a>
  45.  
  46. XDP will allow you to set up as many pages as you want on a disc, so your disc can be as complicated or as simple as you want, and you CAN launch games from pages other XDPDEX.HTML.
  47.  
  48.  
  49.  
  50. 3.
  51.  
  52. Hack the binaries. Now, I'm not sure if this is entirely necessary for it to be done this way, but all of the guides I read on multidiscs explained it like this. Each binary must be binhacked with the IP.BIN. The XDP binary must be the last file to be binhacked, though.
  53.  
  54. And that's it. Easy enough.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement