Post: MW3 RTM Tool Help
06-27-2013, 11:47 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hello, I was looking to see if anybody can help me out with my MW3 RTM Tool. I need help with the stats.

Iv'e tryed this code for the kills and deaths but i do not know how to write it

if (numericUpDown3.Value == 0)
{
byte[] Kills = new byte[] { 0x00 }; //I dont know if its 0x00......
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}
else
{
byte[] Kills = BitConverter.GetBytes(Convert.ToInt32(numericUpDown3.Value.ToString()));
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}


If anyone can help fix the problem please reply with the solution Thanks.
(adsbygoogle = window.adsbygoogle || []).push({});

The following user thanked InGameModz for this useful post:

MW2TopTenWORLD
06-27-2013, 11:57 PM #2
Default Avatar
DeNo
Guest
Wrong Section pal, unfortunately i cant help you :P
06-28-2013, 12:50 AM #3
Originally posted by InGameModz View Post
Hello, I was looking to see if anybody can help me out with my MW3 RTM Tool. I need help with the stats.

Iv'e tryed this code for the kills and deaths but i do not know how to write it

if (numericUpDown3.Value == 0)
{
byte[] Kills = new byte[] { 0x00 }; //I dont know if its 0x00......
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}
else
{
byte[] Kills = BitConverter.GetBytes(Convert.ToInt32(numericUpDown3.Value.ToString()));
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}


If anyone can help fix the problem please reply with the solution Thanks.


Hey!
Try this
    
if (numericUpDown3.Value == 0)
{
byte[] Kills = new byte[] { 0x00 }; //I dont know if its 0x00......
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}
else
{
byte[] Kills = BitConverter.GetBytes(Convert.ToInt32(numericUpDown3.Value));
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, 0x1C1C4B1, Kills);
}


Because Kills it´s an Int32 .... if it doesnt work try Convert.ToDouble(numericUpDown3.Value));
but I doubt Convert.ToDouble will work....

but still keep looking for help because that might not work ;(

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo