Post: Help with Eboot Builder C#?
12-03-2014, 08:46 PM #1
Boliberrys
^^ Sexy ^^
(adsbygoogle = window.adsbygoogle || []).push({}); Hello guys, i wanted to start making an Eboot Builder for BO2 1.19 (I wont release it because theres one already, i just want to make it, so i can learn for the future), but i need some help xD

Im kinda noob at this haha

I only have this: You must login or register to view this content.

IDK How to code it, for example:

When i put "ELF." (No brackets), there is no option similar to: Write, or SetMemory, etc...

How can i put an offset to it?

For example NO RECOIL = Offset :E9E54 -- ON: 0x60, 0x00, 0x00, 0x00 ---- OFF: 0x48 0x50 0x6E 0xF5

(Thanks ITz_JeWeLs for offsets)

How can i code No Recoil in an Eboot?

Thanks!

Sorry for my bad english. Its not my main language. If someone didnt understand a part, please tell me, so i can try to explain it xD

If someone wants to help me, please comment or add me on Skype: Martokiper
(adsbygoogle = window.adsbygoogle || []).push({});
12-03-2014, 10:00 PM #2
Cyb3r
NextGenUpdate Elite
I never made one myself but you can search NGU for open source EBOOT builders such Tustin's builder for ghosts and others, here's a link to find more: You must login or register to view this content.

Hope it helps.

The following user thanked Cyb3r for this useful post:

Boliberrys
12-09-2014, 04:38 PM #3
iTпDM
Vault dweller
Just need to Filestream

Example For UAV With CheckBox

    
if (UAV.Checked)
{
BinaryWriter EX = new BinaryWriter(File.OpenWrite(ofd.FileName)); //<-- Open File
int myShort = 0x01; //<-- This Byte for UAV
byte[] buffer = BitConverter.GetBytes(myShort);
Array.Reverse(buffer);
EX.BaseStream.Position = 0x136364; //<-- Offsets
EX.Write(buffer);
EX.Close();
}



This code for Write Byte in your Elf File

The following user thanked iTпDM for this useful post:

Boliberrys

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo