Post: [Release] MW3 In-Game Keyboard 1.24
04-13-2014, 12:01 PM #1
VezahMoDz
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({}); Hello Guys,

Had this for a while now, and i thought i would share it :3


Add this to your Project(you may ned PS3Lib for it!):
     public static String KeyBoard(String Title)
{
RPC.Call(0x026F5BC, 0, Title, "", 20, 0x72DCE8, 0x7239A0);
while (PS3.ReadInt32(0x73145C) != 0)
{
continue;
}
return PS3.ReadString(0x2380E22);
}



Thats it :P just use it like this:
    
iPrintln(client, KeyBoard("Keyboard Test")); // Will print the texted input on-Screen :P


Enjoy guys and have fun with it Enzo
For those who have trouble using it: here's another RPC: You must login or register to view this content. Thx to shark for porting Winky Winky
Thanks to seb5594 for his release on Ghosts :P
Last edited by VezahMoDz ; 04-15-2014 at 11:51 AM.

The following 23 users say thank you to VezahMoDz for this useful post:

Camo-, En3RGyMoDz, FusionIsDaName, ImAzazel, iMoDz-Baptiste, ImPokerz, Jannik007, LaRip8, Mango_Knife, MegaMister, John, Notorious, OLDSCHOOLMODZHD, MysteryAviate, Shark, SnaY, Sticky, UnknownNightmare, Fatality, xHostModer, xSlinkeyy

The following user groaned VezahMoDz for this awful post:

ItsLollo1000
04-13-2014, 12:06 PM #2
Fatality
1337 H4x0r
good i got the same shit only 3 numbers incorrect Choco
04-13-2014, 12:06 PM #3
VezahMoDz
Do a barrel roll!
Originally posted by xFatalityMoDz View Post
good i got the same shit only 3 numbers incorrect Choco


So its not the same huehue stare
04-13-2014, 12:13 PM #4
Mango_Knife
In my man cave
Originally posted by VezahMoDz View Post
Hello Guys,

Had this for a while now, and i thought i would share it :3


Add this to your Project(you may ned PS3Lib for it!):
     public static String KeyBoard(String Title)
{
RPC.Call(0x026F5BC, 0, Title, "", 20, 0x72DCE8, 0x7239A0);
while (PS3.ReadInt32(0x73145C) != 0)
{
continue;
}
return PS3.ReadString(0x2380E22);
}



Thats it :P just use it like this:
    
iPrintln(client, KeyBoard("Keyboard Test")); // Will print the texted input on-Screen :P


Enjoy guys and have fun with it Enzo

Thanks to seb5594 for his release on Ghosts :P


I Knew you will release this, thanks Nico Winky Winky

The following user thanked Mango_Knife for this useful post:

VezahMoDz
04-13-2014, 12:17 PM #5
NoiceChoco
04-13-2014, 12:23 PM #6
Thaaanks :P
04-13-2014, 12:34 PM #7
Camo-
Save Point
y so fegit
thanks consuella

The following user thanked Camo- for this useful post:

FusionIsDaName
04-13-2014, 12:39 PM #8
Sticky
Mary J Wannnnna
Originally posted by VezahMoDz View Post
Hello Guys,

Had this for a while now, and i thought i would share it :3


Add this to your Project(you may ned PS3Lib for it!):
     public static String KeyBoard(String Title)
{
RPC.Call(0x026F5BC, 0, Title, "", 20, 0x72DCE8, 0x7239A0);
while (PS3.ReadInt32(0x73145C) != 0)
{
continue;
}
return PS3.ReadString(0x2380E22);
}



Thats it :P just use it like this:
    
iPrintln(client, KeyBoard("Keyboard Test")); // Will print the texted input on-Screen :P


Enjoy guys and have fun with it Enzo

Thanks to seb5594 for his release on Ghosts :P

Very nice man, this will top my menu off Smile
04-13-2014, 12:40 PM #9
VezahMoDz
Do a barrel roll!
Originally posted by Sticky View Post
Very nice man, this will top my menu off Smile


No Problem McCoy
04-13-2014, 12:46 PM #10
Mango_Knife
In my man cave
You forgot to add the ReadString And ReadInt32 Function:

    
public static string ReadString(uint address)
{
int length = 40;
int num2 = 0;
string source = "";
do
{
byte[] memory = GetMemory(address + ((uint)num2), length);
source = source + Encoding.UTF8.GetString(memory);
num2 += length;
}
while (!source.Contains<char>('\0'Winky Winky);
int index = source.IndexOf('\0'Winky Winky;
string str2 = source.Substring(0, index);
source = string.Empty;
return str2;
}
public static byte[] GetMemory(uint offset, int length)
{
byte[] array = new byte[length];
DEX.GetMemory(offset, array);
return array;
}
public static int ReadInt32(uint address)
{
byte[] memory = GetMemory(address, 4);
Array.Reverse(memory, 0, 4);
return BitConverter.ToInt32(memory, 0);
}

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo