Hacking YSMENU R4 DLDI released!

hoist20032002

Well-Known Member
Member
Joined
Nov 14, 2007
Messages
241
Trophies
1
XP
957
Country
United States
ok if i put this file into my r4.....will i still be able to play ds games or will i just be able to play gba games or both?
 

Rob_Threat

Well-Known Member
Member
Joined
Jul 19, 2006
Messages
128
Trophies
0
Location
East Oakland, Califo'nia
XP
229
Country
United States
SkH said:
Yasu has just released r4dldi.dat today!

This means you can now launch Homebrew from YSMENU on the R4!

Guide how to get YSMENU to run on R4: http://www.gbatemp.net/index.php?showtopic=97615

Guide how to get r4dldi.dat and how to get it work

1. Download it from http://home.usay.jp/pc/etc/nds/ near the end there's "DS(T_T)DS" download ttextract.exe r4dldi.dat
2. Run ttextract.exe after you've TTMENU.DAT and r4td.dldi in one folder
3. Now that you've got r4dldi.dat, place it in the YSMenu folder on your card
4. Launch Homebrew!
smile.gif


Thanks Yasu!
grog.gif


Homebrew now loading AOK on my old M3Simp/Yasu setup. Thanx for the heads up... I check his page so rarely.
smile.gif
 

Predator04

Well-Known Member
Newcomer
Joined
Oct 17, 2007
Messages
74
Trophies
0
XP
184
Country
United States
loopguy said:
Predator04 said:
loopguy said:
Predator04 said:
This might be stupid. but does it auto-DLDI patch like the r4?
now it does
yaynds.gif
ok so its just like the r4 firmware? as in i dont need to patch homebrew or games correct? sorry for the stupid questions:P
right
Thanks for the replys! im go ahead and switch. thanks again
 

Predator04

Well-Known Member
Newcomer
Joined
Oct 17, 2007
Messages
74
Trophies
0
XP
184
Country
United States
Now it really doesnt say.. but do you delete everything off the r4 b4 doing all this? seems like you would just not sure
 

Predator04

Well-Known Member
Newcomer
Joined
Oct 17, 2007
Messages
74
Trophies
0
XP
184
Country
United States
ZML said:
I haven't gotten to that yet, but the first post explains it well enough.
If it's needed, when I get my YSMenu set up tomorrow, I can post more instructions.
well i got it,,, just not they way it was explained. but now i go to run a game/homebrew it says unsuported dldi name. ive tryed everything and cant get it to work. anyone have any ideas? or can post how there files/folders look? thanks
 

revnull

New Member
Newbie
Joined
Jan 22, 2007
Messages
4
Trophies
0
XP
133
Country
United States
Automate the process in 5 (4 really) steps.

1. Create this folder/file structure: (you should be able to find all the files needed in links from the original thread... don't ask)
Code:
ROOT_FOLDER
|ÂÂ ysmenu2r4ds.cmd
|
+---bin
|ÂÂÂÂÂÂ 7za.exe
|ÂÂÂÂÂÂ dlditool.exe
|ÂÂÂÂÂÂ r4crypt.exe
|ÂÂÂÂÂÂ r4tf.dldi
|
\---source
ÂÂÂÂ|ÂÂ DSTT_v1.15_English.zip
ÂÂÂÂ|ÂÂ YSMenu0805222222.zip
ÂÂÂÂ|ÂÂ YSMenu_ttextract080903.zip
ÂÂÂÂ|
ÂÂÂÂ+---cheat
ÂÂÂÂ|ÂÂÂÂÂÂ 09_02_08_USRCHEAT.DAT.zip
ÂÂÂÂ|
ÂÂÂÂ\---skin
ÂÂÂÂÂÂÂÂÂÂÂÂgbaframe.bmp
ÂÂÂÂÂÂÂÂÂÂÂÂYSMenu1.bmp
ÂÂÂÂÂÂÂÂÂÂÂÂYSMenu2.bmp

2. Create ysmenu2r4ds.cmd using this code
Code:
@ECHO OFF

REM Set the name of the destination directory.
SET distro=r4ds_dir

REM Clean up
ECHO Cleaning Old YSMenu
IF EXIST %distro% RMDIR /S /Q %distro%
MKDIR %distro%

REM Extract the Source to be updated.
ECHO.
ECHO Extracting Source Files
bin\7za.exe x -o"%distro%" -y source\*.zip
REM Clean up the TTMenu archive
IF EXIST %distro%\eng\TTMenu MOVE /Y %distro%\eng\TTMenu %distro%
IF EXIST %distro%\eng\TTMENU.DAT MOVE /Y %distro%\eng\TTMENU.DAT %distro%
IF EXIST %distro%\eng RMDIR /S /Q %distro%\eng

REM DLDI Patch YSMenu.nds
ECHO.
ECHO DLDI Patching YSMenu.nds for R4DS
COPY /Y bin\r4tf.dldi %distro%
IF EXIST %distro%\YSMenu.nds bin\dlditool.exe %distro%\r4tf.dldi %distro%\YSMenu.nds

REM Run ttextract to create patch files for R4DS
ECHO.
ECHO Running ttextract (If it takes longer than 5sec. press enter to continue)
ECHO.
CD %distro%
ttextract.exe
CD ..

REM Encrypt YSMenu.nds for use with the R4DS
ECHO.
ECHO Encrypting YSMenu for R4DS
bin\r4crypt.exe -e %distro%\YSMenu.nds %distro%\_DS_MENU.DAT

REM Copy over skin files
ECHO.
ECHO Copying Skin Files
IF EXIST source\skin\gbaframe.bmp COPY /Y source\skin\gbaframe.bmp %distro%\TTMenu\
IF EXIST source\skin\YSMenu1.bmp COPY /Y source\skin\YSMenu1.bmp %distro%\TTMenu\
IF EXIST source\skin\YSMenu2.bmp COPY /Y source\skin\YSMenu2.bmp %distro%\TTMenu\

REM Extract English Cheat file
ECHO.
ECHO Copying Cheat File
IF EXIST %distro%\TTMenu\USRCHEAT.DAT DEL /F %distro%\TTMenu\USRCHEAT.DAT
bin\7za.exe x -o"%distro%\TTMenu" -y source\cheat\*.zip

REM Make the proper changes to the YSMenu.ini
ECHO.
ECHO Changing YSMenu.ini from JNP to ENG
FOR /F "tokens=*" %%I IN (%distro%\YSMenu.ini) DO (
IF "%%I"=="LITERALS=LITERALS_JPN" (
ECHO LITERALS=LITERALS_ENG >> %distro%\temp.ini
) ELSE (
ECHO %%I >> %distro%\temp.ini)
)

REM Shifting Stuff Around
ECHO.
ECHO Shifting Stuff Around
IF EXIST %distro%\temp.ini MOVE /Y %distro%\temp.ini %distro%\TTMenu\YSMenu.ini
IF EXIST %distro%\r4dldi.dat MOVE /Y %distro%\r4dldi.dat %distro%\TTMenu\
IF EXIST %distro%\r4patch.dat MOVE /Y %distro%\r4patch.dat %distro%\TTMenu\
IF EXIST %distro%\ttdldi.dat MOVE /Y %distro%\ttdldi.dat %distro%\TTMenu\
IF EXIST %distro%\ttpatch.dat MOVE /Y %distro%\ttpatch.dat %distro%\TTMenu\

REM Remove unneeded files
ECHO.
ECHO Removing unneeded files
IF EXIST %distro%\akextract.exe DEL /F %distro%\akextract.exe
IF EXIST %distro%\ttextract.exe DEL /F %distro%\ttextract.exe
IF EXIST %distro%\r4tf.dldi DEL /F %distro%\r4tf.dldi
IF EXIST %distro%\TTMENU.DAT DEL /F %distro%\TTMENU.DAT
IF EXIST %distro%\YSMenu.nds DEL /F %distro%\YSMenu.nds
IF EXIST %distro%\YSMenu.txt DEL /F %distro%\YSMenu.txt
IF EXIST %distro%\YSMenu.ini DEL /F %distro%\YSMenu.ini
IF EXIST %distro%\YSMenu_eng.txt DEL /F %distro%\YSMenu_eng.txt
IF EXIST %distro%\TTMenu\skin RMDIR /S /Q %distro%\TTMenu\skin
DEL /F %distro%\TTMenu\*.txt
DEL /F %distro%\TTMenu\*.url

ECHO.
ECHO Done.
ECHO.
PAUSE

3. Double click on the ysmenu2r4ds.cmd and watch the magic.

4. Copy the contents of new r4ds_dir to your MicroSD card.

5. Play
 

Predator04

Well-Known Member
Newcomer
Joined
Oct 17, 2007
Messages
74
Trophies
0
XP
184
Country
United States
rhyguy said:
i get an error saying unsupported dldi name
ya i got that to. until i found out i was using the wrong ysmenu. you want YSMenu0805222222. i was using YSMenu0804200115
thats why i wasn't able to figure this crap out.
anyways thanks revnull i wouldn't have known, also i tried ur script but it keep on crashing r4crypt. not sure why but doesnt matter i got it thanks
 

rhyguy

Well-Known Member
Member
Joined
Jul 21, 2007
Messages
1,375
Trophies
0
Age
29
Location
Melbourne
Website
Visit site
XP
276
Country
is YSMenu0805222222 on his site too?

ifso, i cant seem to find it

pred: make sure you get 7za.exe
install 7zip, then copy the file thats called 7x.exe and rename it (not the 7zg.exe)
 

Predator04

Well-Known Member
Newcomer
Joined
Oct 17, 2007
Messages
74
Trophies
0
XP
184
Country
United States
rhyguy said:
is YSMenu0805222222 on his site too?

ifso, i cant seem to find it

pred: make sure you get 7za.exe
install 7zip, then copy the file thats called 7x.exe and rename it (not the 7zg.exe)
i did install 7za. it doesnt matter anyways.


on his site it looks like this

2008/05/22 22:22????(DSLinker,SAV???)

find that and download it.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    SylverReZ @ SylverReZ: @OctoAori20, Cool. Same here.