MDGMods
Member
You will need iMCSx PS3Lib v4!
public static String RunKeyBoard(String Title, String PresetText = "", Int32 MaxLength = 20)
{
RPC.Call(0x35AFE0, 0, Title, PresetText, MaxLength, 0, 0xA49110, 0xA51490);
while (PS3.Extension.ReadInt32(0xA6BFC4) != 0)
continue;
return Encoding.ASCII.GetString(PS3.GetMemory(0x2940E22, MaxLength));
}
Example how to use it in a messagebox
MessageBox.Show(RunKeyboard("Enter any text","",20);
It will show a messagebox with your typed text.
public static String RunKeyBoard(String Title, String PresetText = "", Int32 MaxLength = 20)
{
RPC.Call(0x35AFE0, 0, Title, PresetText, MaxLength, 0, 0xA49110, 0xA51490);
while (PS3.Extension.ReadInt32(0xA6BFC4) != 0)
continue;
return Encoding.ASCII.GetString(PS3.GetMemory(0x2940E22, MaxLength));
}
Example how to use it in a messagebox
MessageBox.Show(RunKeyboard("Enter any text","",20);
It will show a messagebox with your typed text.