Post: Simple But Effective mw3 1.24 Check RPC func.
05-07-2014, 05:18 PM #1
kiwi_modz
I defeated!
(adsbygoogle = window.adsbygoogle || []).push({}); Since Shark Released His Awesome "You must login or register to view this content." I have and many of you developers out there have most probably frozen enabling RPC whilst attaching multiple times "Testing your tools". As many of us have RPC.enable under our attach buttons.



Credits To Shark as I'm only using his RPC Code as an example

This Function Checks If "RPC.Enable"'s "bytes" have been sent to the games memory and if so, a message box is shown stating that its already enabled, if not the bytes are sent Smile

I Made this simple check RPC func using a idea i got form Anera's kick godmode user method.


Originally posted by another user
public static void Enable()
{
byte[] CheckRPC = new byte[1];
PS3.GetMemory(0x27720C, ref CheckRPC);
if (CheckRPC[0] == 0x80)
{
byte[] bytes = new byte[] {
0x3f, 0x80, 0x10, 5, 0x81, 0x9c, 0, 0x48, 0x2c, 12, 0, 0, 0x41, 130, 0, 120,
0x80, 0x7c, 0, 0, 0x80, 0x9c, 0, 4, 0x80, 0xbc, 0, 8, 0x80, 220, 0, 12,
0x80, 0xfc, 0, 0x10, 0x81, 0x1c, 0, 20, 0x81, 60, 0, 0x18, 0x81, 0x5c, 0, 0x1c,
0x81, 0x7c, 0, 0x20, 0xc0, 60, 0, 0x24, 0xc0, 0x5c, 0, 40, 0xc0, 0x7c, 0, 0x2c,
0xc0, 0x9c, 0, 0x30, 0xc0, 0xbc, 0, 0x34, 0xc0, 220, 0, 0x38, 0xc0, 0xfc, 0, 60,
0xc1, 0x1c, 0, 0x40, 0xc1, 60, 0, 0x44, 0x7d, 0x89, 3, 0xa6, 0x4e, 0x80, 4, 0x21,
0x38, 0x80, 0, 0, 0x90, 0x9c, 0, 0x48, 0x90, 0x7c, 0, 0x4c, 0xd0, 60, 0, 80,
0x48, 0, 0, 20
};
PS3.SetMemory(func_address, new byte[] { 0x41 });
PS3.SetMemory(func_address + 4, bytes);
PS3.SetMemory(func_address, new byte[] { 0x40 });
}
else if (CheckRPC[0] == 0x3F)
{
MessageBox.Show("RPC Is Already Enabled\nWe Don't Want You To Freeze Now Do We Smile", "Your Application");

}
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 9 users say thank you to kiwi_modz for this useful post:

jwm614, Mango_Knife, moxl, Mx444, xProvXKiller, Sticky, Turk_Warrior, User343234, Laser
05-07-2014, 08:11 PM #2
Mango_Knife
In my man cave
Originally posted by kiwi
Since Shark Released His Awesome "You must login or register to view this content." I have and many of you developers out there have most probably frozen enabling RPC whilst attaching multiple times "Testing your tools". As many of us have RPC.enable under our attach buttons.



Credits To Shark as I'm only using his RPC Code as an example

This Function Checks If "RPC.Enable"'s "bytes" have been sent to the games memory and if so, a message box is shown stating that its already enabled, if not the bytes are sent Smile

I Made this simple check RPC func using a idea i got form Anera's kick godmode user method.


Kiwi <3

The following 2 users say thank you to Mango_Knife for this useful post:

kiwi_modz, Turk_Warrior
05-08-2014, 11:06 AM #3
Sticky
Mary J Wannnnna
Originally posted by kiwi
Since Shark Released His Awesome "You must login or register to view this content." I have and many of you developers out there have most probably frozen enabling RPC whilst attaching multiple times "Testing your tools". As many of us have RPC.enable under our attach buttons.



Credits To Shark as I'm only using his RPC Code as an example

This Function Checks If "RPC.Enable"'s "bytes" have been sent to the games memory and if so, a message box is shown stating that its already enabled, if not the bytes are sent Smile

I Made this simple check RPC func using a idea i got form Anera's kick godmode user method.


I just did this for BO2 Happy

The following user thanked Sticky for this useful post:

kiwi_modz
05-08-2014, 11:23 AM #4
kiwi_modz
I defeated!
Originally posted by Sticky View Post
I just did this for BO2 Happy


Yeah I new you wanted this but me and you have been on skype at different times lol. My laptop is dead an I have lost everything new that I was working on Not Happy or Sad
05-08-2014, 01:29 PM #5
GMTPS3
Do a barrel roll!
I use this Function some Month and got only 2 Attach Freezes i dont know why but have fun xD
Put it in Attach Button Smile
    #region ANTIRPCFREEZE
if (PS3.ReadByte(0x027720Cool Man (aka Tustin) == 0x40)
{

}
else
{
RPC.Enable();
}
#endregion


Its for the FPS RPC from Vezah Smile
05-09-2014, 03:57 AM #6
ByteSource
League Champion
Originally posted by kiwi
Since Shark Released His Awesome "You must login or register to view this content." I have and many of you developers out there have most probably frozen enabling RPC whilst attaching multiple times "Testing your tools". As many of us have RPC.enable under our attach buttons.



Credits To Shark as I'm only using his RPC Code as an example

This Function Checks If "RPC.Enable"'s "bytes" have been sent to the games memory and if so, a message box is shown stating that its already enabled, if not the bytes are sent Smile

I Made this simple check RPC func using a idea i got form Anera's kick godmode user method.


do you need a jailbroken playstation for this to work? I bought a Jailbroken USB and i wanted to test meh black whole mod cfg for mw3.

huehue jk but the cfg is no kidding Happy, im thinking about releasing the offsets for a cfg mini infection
05-09-2014, 04:38 AM #7
kiwi_modz
I defeated!
Originally posted by TehK9
do you need a jailbroken playstation for this to work? I bought a Jailbroken USB and i wanted to test meh black whole mod cfg for mw3.

huehue jk but the cfg is no kidding Happy, im thinking about releasing the offsets for a cfg mini infection


Hahahaha yeah man do it Winky Winky
05-10-2014, 09:25 AM #8
Turk_Warrior
League Champion
Originally posted by TehK9
do you need a jailbroken playstation for this to work? I bought a Jailbroken USB and i wanted to test meh black whole mod cfg for mw3.

huehue jk but the cfg is no kidding Happy, im thinking about releasing the offsets for a cfg mini infection



Would Be Cool but remember once released it will be fucking mw2 again lol
05-10-2014, 09:26 AM #9
Turk_Warrior
League Champion
Originally posted by kiwi
Hahahaha yeah man do it Winky Winky


Congrats Kiwi you got your bronze badge Smile

Nice to see you back homie :P
05-13-2014, 07:35 AM #10
seb5594
Proud Former Admin
lol no offense but what ppl discover one year after the rpc got released lmao.everyone who can think abit would do that No

The following user thanked seb5594 for this useful post:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo