isaac420
CC Happy Modding Team
Hello Cc Members,
Because i have not much time anymore,
And people still asking about it..
Make little TUT about making your own modded Eboot.bin..
To keep it easy also for noobs..So im not gona explane how IDA Pro works.
Instad we using a Tool called HxD..
1* Plug your USB in PS3 (Right) slot..
2* Go to Multiman/Filemanager/HDD0/Game/BLES,BLUS,NPEB,NPUB,
(your GTA Region game)/USDIR/
3* Copy Eboot.bin To USB (click on the Eboot.bin,if blue press circle and select copy).
4* Go to your USB hit circle and select past.
5* Now we go to PC part,so take your USB out PS3 and put in PC slot.
(If you use Filezilla or have your game on USB you know wat to do).
6* Open up folder with Eboot Resigner Tool and drag the Eboot.bin in de folder.
7* Click on Resigner and select option 1 When decrypt is done,
You see EBOOT.ELF in the folder.
8* Drag the Eboot.ELF to the tool HXD.
9* Search for the Offsets you want like D5F280 (BLES) or type timebetweenshots.
10* Past add first numer 01 on D5F290 Offset example..
D5F280 74 69 6D 65 62 65 74 77 65 65 6E 73 68 6F 74 73 timebetweenshots
D5F290 01 00 00 00 00 00 00 00 62 61 73 65 00 00 00 00 ........base....
11* Now you got Heli Rapidfire..
12* For Heli No Reload search for Offset 00D5F2D0 (D5F2D4) or type time..
13* past 01 behind time example..(Fived).
00D5F2D0 74 69 6D 65 01 00 00 00 66 61 73 74 74 69 6D 65 time....fastime
14* Hit Save and press in Resigner tool for NON-DRM EBOOT type 2
and enter..Now you have Modded Eboot.bin.
For NPDRM EBOOT type 3
It will ask for contentID Look in the raps folder for your region..For example
EP1017-NPEB00907_00-GTAIVEFLCDIGITAL and hit enter..
When its done you have your modded Eboot.bin.
15* Replace Modded Eboot.bin with normal Eboot.bin in your Game folder..
16* Done PS There can't be found tables/xrafs with does Offsets on this game,
So you cant set a min a default or a max..so thats why you put 01 the set bool on..
Have fun don't Abuse your mods or be a dick,Modding is for fun.
Also you can make this in a RTM tool.
Little example of code,
private void metroToggle3_CheckedChanged(object sender, EventArgs e)
{
if (metroToggle3.Checked)
{
PS3.SetMemory(0xD5F280, new byte[] { 0x01 });
PS3.CCAPI.Notify(CCAPI.NotifyIcon.TROPHY4, "Heli Rapid Fire Active!!");
}
else
{
PS3.SetMemory(0xD5F280, new byte[] { 0x00 });
PS3.CCAPI.Notify(CCAPI.NotifyIcon.TROPHY4, "Heli Rapid FireDisabled!!");
}
}
Here is a download link with tools you need..
http://www.mediafire.com/download/51hvani372a99n0/PS3Tools.zip
If some one can but virusscan will be cool and big thanks.
Credits,
Isaac420
Mirakuru Energy
xBulletxRainz
PS I Have Still open Tut Mirakuru will maybe Finhis it..
TUT are:
How To make A CFW From A OFW,
How To go from 4.80 cex to dex without downgrade,
How to make RTM Tool,
How to make Dynamic PS3 Theme,
How To Make PS3 Coldboot,
How To Edit RPF Or EDAT files,
How To make PS3 Wave,
How To make A Booter,
How To Make Logo CS or 4D Cinema,
How To Make SPRX menu,
Contact Mirakuru.
Because i have not much time anymore,
And people still asking about it..
Make little TUT about making your own modded Eboot.bin..
To keep it easy also for noobs..So im not gona explane how IDA Pro works.
Instad we using a Tool called HxD..
1* Plug your USB in PS3 (Right) slot..
2* Go to Multiman/Filemanager/HDD0/Game/BLES,BLUS,NPEB,NPUB,
(your GTA Region game)/USDIR/
3* Copy Eboot.bin To USB (click on the Eboot.bin,if blue press circle and select copy).
4* Go to your USB hit circle and select past.
5* Now we go to PC part,so take your USB out PS3 and put in PC slot.
(If you use Filezilla or have your game on USB you know wat to do).
6* Open up folder with Eboot Resigner Tool and drag the Eboot.bin in de folder.
7* Click on Resigner and select option 1 When decrypt is done,
You see EBOOT.ELF in the folder.
8* Drag the Eboot.ELF to the tool HXD.
9* Search for the Offsets you want like D5F280 (BLES) or type timebetweenshots.
10* Past add first numer 01 on D5F290 Offset example..
D5F280 74 69 6D 65 62 65 74 77 65 65 6E 73 68 6F 74 73 timebetweenshots
D5F290 01 00 00 00 00 00 00 00 62 61 73 65 00 00 00 00 ........base....
11* Now you got Heli Rapidfire..
12* For Heli No Reload search for Offset 00D5F2D0 (D5F2D4) or type time..
13* past 01 behind time example..(Fived).
00D5F2D0 74 69 6D 65 01 00 00 00 66 61 73 74 74 69 6D 65 time....fastime
14* Hit Save and press in Resigner tool for NON-DRM EBOOT type 2
and enter..Now you have Modded Eboot.bin.
For NPDRM EBOOT type 3
It will ask for contentID Look in the raps folder for your region..For example
EP1017-NPEB00907_00-GTAIVEFLCDIGITAL and hit enter..
When its done you have your modded Eboot.bin.
15* Replace Modded Eboot.bin with normal Eboot.bin in your Game folder..
16* Done PS There can't be found tables/xrafs with does Offsets on this game,
So you cant set a min a default or a max..so thats why you put 01 the set bool on..
Have fun don't Abuse your mods or be a dick,Modding is for fun.
Also you can make this in a RTM tool.
Little example of code,
private void metroToggle3_CheckedChanged(object sender, EventArgs e)
{
if (metroToggle3.Checked)
{
PS3.SetMemory(0xD5F280, new byte[] { 0x01 });
PS3.CCAPI.Notify(CCAPI.NotifyIcon.TROPHY4, "Heli Rapid Fire Active!!");
}
else
{
PS3.SetMemory(0xD5F280, new byte[] { 0x00 });
PS3.CCAPI.Notify(CCAPI.NotifyIcon.TROPHY4, "Heli Rapid FireDisabled!!");
}
}
Here is a download link with tools you need..
http://www.mediafire.com/download/51hvani372a99n0/PS3Tools.zip
If some one can but virusscan will be cool and big thanks.
Credits,
Isaac420
Mirakuru Energy
xBulletxRainz
PS I Have Still open Tut Mirakuru will maybe Finhis it..
TUT are:
How To make A CFW From A OFW,
How To go from 4.80 cex to dex without downgrade,
How to make RTM Tool,
How to make Dynamic PS3 Theme,
How To Make PS3 Coldboot,
How To Edit RPF Or EDAT files,
How To make PS3 Wave,
How To make A Booter,
How To Make Logo CS or 4D Cinema,
How To Make SPRX menu,
Contact Mirakuru.
Last edited: