Hello rival gamer .
Am having issue with my stats on my rtm tool .
Basically it only allows it go to a 100 and I bet u know straight away where am wrong but need a hand on some points.
Any help please thanks
🙂
Hello rival gamer .
Am having issue with my stats on my rtm tool .
Basically it only allows it go to a 100 and I bet u know straight away where am wrong but need a hand on some points.
Any help please thanks
🙂
Hello rival gamer .
Am having issue with my stats on my rtm tool .
Basically it only allows it go to a 100 and I bet u know straight away where am wrong but need a hand on some points.Any help please thanks
🙂
Can you please explain more and show us some of the code you are using?
Yes am using this format =
Byte [ ] kills = Bit converter. GetBytes (Convert.ToInt32 (numeric up down. Text)); PS3.SetMemory (0X26FCB70, kills);
That's the way I do it but I know there's a error somewhere or something I forgot .
Yes am using this format =
Byte [ ] kills = Bit converter. GetBytes (Convert.ToInt32 (numeric up down. Text)); PS3.SetMemory (0X26FCB70, kills);
That's the way I do it but I know there's a error somewhere or something I forgot .
PS3 uses big endian byte order so you must reverse the bytes before setting them, try this:
[code=rich]byte[] kills = BitConverter.GetBytes((int)numericUpDown1.Value);
Array.Reverse(kills);
PS3.SetMemory (0X26FCB70, kills);
Make sure to change numericUpDown1 to your control name.
Am going to test this tomorrow and let u know 🙂
Thanks once again