You are viewing our Forum Archives. To view or take place in current topics click here.
RGH XRPC Tool Help
Posted:

RGH XRPC Tool HelpPosted:

Airs
  • Powerhouse
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
alright, I have an address and I want to set it to a game to make myself have unlimited amount of jumps but when I change it, it goes right back to what it was normally rather than sticking to what i changed it to, any help? code works but doesn't stick

code:

XRPC.SetMemory(0xC31DAE53, new byte[] { 0xFF ,0xFF });
#2. Posted:
Snow
  • Resident Elite
Status: Offline
Joined: Jun 24, 20176Year Member
Posts: 247
Reputation Power: 39
Status: Offline
Joined: Jun 24, 20176Year Member
Posts: 247
Reputation Power: 39
more than likely that is a dynamic offset. what game are you talking about?


Last edited by Snow ; edited 1 time in total
#3. Posted:
Airs
  • Powerhouse
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
Snow wrote more than likely it's a dynamic offset. what game are you talking about?


battleblock theater
#4. Posted:
AptArctic
  • Christmas!
Status: Offline
Joined: Jul 31, 20185Year Member
Posts: 73
Reputation Power: 5
Status: Offline
Joined: Jul 31, 20185Year Member
Posts: 73
Reputation Power: 5
try adding a timer to your program. as long as the offset is the same, and doesn't change. you cna use a timer and enable and disable it. Place your write in the timer functions and have a check box call to your timer.

if(checkbox1.checked == true)
{
timer1.start();
}
else if(checkbox1.checked == false)
{
timer1.stop
}

//timer function
try
{
XRPC.SetMemory(0xC31DAE53, new byte[] { 0xFF ,0xFF });

}
catch
{
MessageBox.Show("Error, your console couldn't connect!");
}
#5. Posted:
Airs
  • Christmas!
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
AptArctic wrote try adding a timer to your program. as long as the offset is the same, and doesn't change. you cna use a timer and enable and disable it. Place your write in the timer functions and have a check box call to your timer.

if(checkbox1.checked == true)
{
timer1.start();
}
else if(checkbox1.checked == false)
{
timer1.stop
}

//timer function
try
{
XRPC.SetMemory(0xC31DAE53, new byte[] { 0xFF ,0xFF });

}
catch
{
MessageBox.Show("Error, your console couldn't connect!");
}


fixed, your code wasnt very helpful but the timer was
#6. Posted:
Airs
  • Christmas!
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
Status: Offline
Joined: Aug 26, 20149Year Member
Posts: 436
Reputation Power: 25
address keeps changing when I join a new lobby in the game, any help
#7. Posted:
AptArctic
  • Christmas!
Status: Offline
Joined: Jul 31, 20185Year Member
Posts: 73
Reputation Power: 5
Status: Offline
Joined: Jul 31, 20185Year Member
Posts: 73
Reputation Power: 5
You'll have to figure out how to track dynamic offsets. Sometimes they have a pattern based in map locations and others do it to prevent cheating
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.