Sυper
Member
Hay Guy,
Super here today going to show you how to code your own black ops 3 non-host tool. A lot of you may know how to code but this is just a friendly help.
1) Create an new project in Visual studio (any version , 2010, 2013, 2015)
2) Name the Project whatever you want to call it
For example, Super Black Ops III Non-Host Tool
3) After creating an new project you will get an window forum like this!
4) Drag out 2 button and rename them to Connect and attach. also drag out one radioButton1 and rename to CCAPI. will look like this!
5) Declare the connect and attach button. Code provide below
Super here today going to show you how to code your own black ops 3 non-host tool. A lot of you may know how to code but this is just a friendly help.
1) Create an new project in Visual studio (any version , 2010, 2013, 2015)
2) Name the Project whatever you want to call it
For example, Super Black Ops III Non-Host Tool



5) Declare the connect and attach button. Code provide below
Code:
Declare PS3API
This goes under Class forum1
PS3API PS3 = new PS3API();
// Connect button
if (PS3.ConnectTarget())
{
MessageBox.Show("PS3 CONNECT");
}
else
{
MessageBox.Show("PS3 Fail to CONNECT");
}
// Attach Button
if (PS3.AttachProcess())
{
MessageBox.Show("Attach Success");
}
else
{
MessageBox.Show("Attach Fail");
}
// CCAPI (radiobutton1)
PS3.ChangeAPI(SelectAPI.ControlConsole);
6) Now make 3 or 4 check box so we can start coding non host mod.
something like this

7) Now Lets double click each checkbox so we can start coding.
i will do the first one and you guys can do the rest. same method but different offset & bytes
Code:
// UAV CODE
if (checkBox1.Checked == true)
{
byte[] UAV = new byte[] { 0x60, 0x00, 0x00, 0x00 };
PS3.SetMemory(0xC7808, UAV);
// ON
}
else
{
byte[] UAV = new byte[] { 0x60, 0x00, 0x00, 0x00 };
PS3.SetMemory(0xC7824, UAV);
// OFF
}
Do this for the rest but make sure you change the Offset & Bytes! Also for next checkbox chnage to CheclBox2 so on and so forth.
8) Do this all and you are done

Hope this help out you guys

You may get Non-Host Offset Here
http://consolecrunch.com/threads/1-03-adresse-offset-structures-for-all-update.18620/
Last edited: