Originally posted by 8d
I'm trying to put third person for my tool, the offset is correctly, but i can't start it
here is the 2 offsets i'm trying: 0x0110a292 with byte { 0x99 } or 00 to turn off
or 0x18CCE38 with bytes 01 or 00 to turn off
when i start it, i stay in third person, but in spectator mode... i don't stay in real third person, and when i press triangle, i go back to 1th person
how can i put that ?
PS : and when i put the ac-130 offsets the same thing happens
byte[] PEmptyN = new byte[] { 0x99 };
PS3.SetMemory(0x0110a292, new byte[] { 0x99 });
}
//Call it off
byte[] PEmptyN = new byte[] { 0x10 };
PS3.SetMemory(0x0110a292, new byte[] { 0x10 });
}