Originally posted by idropkittens
Thanks, But i believe this doesn't work online, Also when i set the camo I lose all my ammo and when you die you lose the camo so kind of pointless! Thanks anyways though
It Does Work online i have only tested with client 0 - just add these offsets 0xF43DEE, 0xF44056, 0xF43F66 :
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (comboBox1.SelectedIndex == 0)
{
byte[] camo = new byte[] { 0x03 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF43DEE, camo);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF44056, camo);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF43F66, camo);
}
else if (comboBox1.SelectedIndex == 1)
{
byte[] camo = new byte[] { 0x07 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF43DEE, camo);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF44056, camo);
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0xF43F66, camo);