Notifications
Clear all

C# bo2 stats error

Page 1 / 3

Posts: 0
Topic starter
(@oxzys modz)
New RivalGamer
Joined: 8 years ago

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

🙂

Reply
Name of the Video Game, and any other Tags
14 Replies
Cyb3r
Posts: 1598
(@cyb3r)
Noble RivalGamer
Joined: 9 years ago

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?

Reply
Posts: 0
Topic starter
(@oxzys modz)
New RivalGamer
Joined: 8 years ago

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 .

Reply
Cyb3r
Posts: 1598
(@cyb3r)
Noble RivalGamer
Joined: 9 years ago

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.

Reply
Posts: 0
Topic starter
(@oxzys modz)
New RivalGamer
Joined: 8 years ago

Am going to test this tomorrow and let u know 🙂
Thanks once again

Reply
Page 1 / 3