kidz axe wrote:I have already reaed Tipo's post, But i dont understand where the .c file is, please answer.
Just download this, open up eLoader.c in your favorite code editor (like notepad++);
Replace
With
Code: Select all
// Shortcuts
while (1)
{
sceCtrlReadBufferPositive(&pad, 1);
if(pad.Buttons & PSP_CTRL_CROSS)
{
run_eboot("ms0:/hbl/shortcuts/cross/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_CIRCLE)
{
run_eboot("ms0:/hbl/shortcuts/circle/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_TRIANGLE)
{
run_eboot("ms0:/hbl/shortcuts/triangle/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_SQUARE)
{
run_eboot("ms0:/hbl/shortcuts/square/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_LTRIGGER)
{
run_eboot("ms0:/hbl/shortcuts/left-trigger/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_RTRIGGER)
{
run_eboot("ms0:/hbl/shortcuts/right-trigger/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_START)
{
run_eboot("ms0:/hbl/shortcuts/start/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_SELECT)
{
run_eboot("ms0:/hbl/shortcuts/select/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_UP)
{
run_eboot("ms0:/hbl/shortcuts/up/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_RIGHT)
{
run_eboot("ms0:/hbl/shortcuts/right/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_DOWN)
{
run_eboot("ms0:/hbl/shortcuts/down/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_LEFT)
{
run_eboot("ms0:/hbl/shortcuts/left/EBOOT.PBP", 1);
break;
}
if(pad.Buttons & PSP_CTRL_HOME)
{
run_eboot(g->menupath, 1);
break;
}
else
{
run_eboot("ms0:/hbl/shortcuts/default/EBOOT.PBP", 1);
break;
}
}
}
Compile it, make a 'shortcuts' folder in your HBL directory and make the following folders within that folder: default, circle, cross, square, left, right, up, down, left-trigger, right-trigger, start and select. Place your homebrews in the corresponding folder and then you're good to go! Although it only works with homebrews atm, so I don't recommend you to use it right now. I'll try to upload a better binary version of HBL that includes this modification in a couple of days.