Post: RTM Visual Basic Help!
06-16-2016, 11:02 PM #1
Repto
Save Point
(adsbygoogle = window.adsbygoogle || []).push({}); Hello, i'm making a rtm tool for a game in Visual C# Every time i try to enter the code below on my visual basic button it doesn't work.

Here is the net cheat offset
> 0 102630FC 00000384


Code :*

byte[]cash = BitConverter.GetBytes(Convert.ToInt32(numericUpDown2.Text));
PS3.SetMemory(0x102630FC, cash);


PS . The netcheat code works when i make it constant and change it within netcheat. I just cannot get my button to write it to the PS3.



There isnt a space between the down part in the real code
(adsbygoogle = window.adsbygoogle || []).push({});
06-17-2016, 03:02 AM #2
Dro
i<3myPs3
Originally posted by Repto View Post
Hello, i'm making a rtm tool for a game in Visual C# Every time i try to enter the code below on my visual basic button it doesn't work.

Here is the net cheat offset
> 0 102630FC 00000384


Code :*

byte[]cash = BitConverter.GetBytes(Convert.ToInt32(numericUpDown2.Text));
PS3.SetMemory(0x102630FC, cash);


PS . The netcheat code works when i make it constant and change it within netcheat. I just cannot get my button to write it to the PS3.



There isnt a space between the down part in the real code




Try this in the button:


if (numericUpDown2.Value == 0)
{
byte[] Cash = new byte[2];
PS3.SetMemory(0x102630FC , new byte[] { 0x00 });
}
else
{
PS3.SetMemory(0x102630FC , BitConverter.GetBytes(Convert.ToInt32(this.numericUpDown2.Value.ToString())));
}//set cash
06-17-2016, 03:19 AM #3
Repto
Save Point
Is this part right? 2(this.numeric UpDown2.Value.ToString())));

Just wondering it says this.
06-17-2016, 04:35 AM #4
Repto
Save Point
Originally posted by Dro View Post
Try this in the button:


if (numericUpDown2.Value == 0)
{
byte[] Cash = new byte[2];
PS3.SetMemory(0x102630FC , new byte[] { 0x00 });
}
else
{
PS3.SetMemory(0x102630FC , BitConverter.GetBytes(Convert.ToInt32(this.numericUpDown2.Value.ToString())));
}//set cash



Btw, this still didn't work it didn't change my cash at all.
06-17-2016, 05:13 AM #5
Dro
i<3myPs3
Originally posted by Repto View Post
Is this part right? 2(this.numeric UpDown2.Value.ToString())));

Just wondering it says this.


Minus the space..


Originally posted by Repto View Post
Btw, this still didn't work it didn't change my cash at all.


I didn't realize you say visual basic.. it may be a little different..that code should work with c#...
06-17-2016, 05:54 AM #6
Repto
Save Point
Nah i it's in C# messed up on title
06-17-2016, 06:22 AM #7
Repto
Save Point
Originally posted by Dro View Post
Minus the space..




I didn't realize you say visual basic.. it may be a little different..that code should work with c#...





Okay The Offset is 102630FC and the Actual amount of money code is 00000384 < Which is 900$

How do i make a button in C# change the Cash.

Link to screenshot You must login or register to view this content.
06-17-2016, 07:22 AM #8
Dro
i<3myPs3
Originally posted by Repto View Post
Okay The Offset is 102630FC and the Actual amount of money code is 00000384 < Which is 900$

How do i make a button in C# change the Cash.

Link to screenshot You must login or register to view this content.



You could make a max money button...

add this into the button

{
PS3.SetMemory(0x102630FC, new byte[] { 0x0f, 0xff, 0xff, 0xff });//max cash
}
06-17-2016, 01:42 PM #9
Repto
Save Point
Originally posted by Dro View Post
You could make a max money button...

add this into the button

{
PS3.SetMemory(0x102630FC, new byte[] { 0x0f, 0xff, 0xff, 0xff });//max cash
}


Cool, it worked Smile Not sure why the other one wasn't working

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo