Post: C# Keyboard in Game 1.05
11-13-2014, 06:13 PM #1
iTпDM
Vault dweller
(adsbygoogle = window.adsbygoogle || []).push({});
Hello Everyone!

today i updated Keyboard in game 1.05

some people talk with me about keyboard 1.05


    
uint kb_Result = 0x03080E22;
uint kb_cb = 0x988F98;
uint keyboardPrompt = 0x49D980;
uint kb_active = 0x0099E42C;



string runKeyboard(string title = "Your title", string presetText = "text here", int maxLength = 20)
{


RPC.Call(keyboardPrompt, new object[] { 0, title, presetText, maxLength, 0, 0, kb_cb });
System.Threading.Thread.Sleep(10);

while (PS3.Extension.ReadInt32(kb_active) == 0) { }
return PS3.Extension.ReadString(kb_Result);
}



Example to Change Name :

    
byte[] bytes = Encoding.ASCII.GetBytes(runKeyboard("Your Title Here", "", 50));
Array.Resize<byte>(ref bytes, bytes.Length + 1);
PS3.SetMemory(0x2892C60, bytes);



Credits:

Me - to Update it
seb5594 - Make Functions
Last edited by iTпDM ; 12-18-2014 at 11:33 AM.

The following 6 users say thank you to iTпDM for this useful post:

One, Boliberrys, Fire-999, LBK, zRayz-

The following user groaned iTпDM for this awful post:

Swiss
11-13-2014, 06:24 PM #2
Boliberrys
^^ Sexy ^^
Originally posted by TnDM View Post
Hello Everyone!

today i updated Keyboard in game 1.03

some people talk with me about keyboard 1.03


    
uint kb_Result = 0x03080E22;
uint kb_cb = 0x988F98;
uint keyboardPrompt = 0x493EA8;
uint kb_active = 0x0099E42C;



string runKeyboard(string title = "Your title", string presetText = "text here", int maxLength = 20)
{


RPC.Call(keyboardPrompt, new object[] { 0, title, presetText, maxLength, 0, 0, kb_cb });
System.Threading.Thread.Sleep(10);

while (PS3.Extension.ReadInt32(kb_active) == 0) { }
return PS3.Extension.ReadString(kb_Result);
}



Example to Change Name :

    
byte[] bytes = Encoding.ASCII.GetBytes(runKeyboard("Your Title Here", "", 50));
Array.Resize<byte>(ref bytes, bytes.Length + 1);
PS3.SetMemory(0x2892C60, bytes);



Credits:

Me - to Update it
seb5594 - to First released Keyboard


Nice release! I will definitely use it.
Can u make an example on how to use it for "Cbuf_AddText" please? I never used a keyboard, but i want to try something new to me Winky Winky
11-13-2014, 06:30 PM #3
Originally posted by Boliberrys View Post
Nice release! I will definitely use it.
Can u make an example on how to use it for "Cbuf_AddText" please? I never used a keyboard, but i want to try something new to me Winky Winky


public void Cbuf_AddText(string CMD)
{
RPC.Call(0x38777C, 0, Command);
}

The following user thanked bymelasuda for this useful post:

Boliberrys
11-13-2014, 06:31 PM #4
iTпDM
Vault dweller
Originally posted by Boliberrys View Post
Nice release! I will definitely use it.
Can u make an example on how to use it for "Cbuf_AddText" please? I never used a keyboard, but i want to try something new to me Winky Winky



Example to XP Mods < its using Cbuf_AddText :

    
cbuf_AddText(0, "set scr_" + GameMode + "_score_kill " + runkeyboard("Your Title Here", "", 50));

The following 2 users say thank you to iTпDM for this useful post:

Boliberrys,
11-13-2014, 07:05 PM #5
xReaperv3
Bounty hunter
Maybe someone need this in C++
    
opd_s keyBoardPrompt = { 0x493EA8, TOC };
void(*CallKeyBoard)(int z, char* Title, char* Preset, int Lenght, int z1, int z2, int Addr) = (void(*)(int, char*, char*, int, int, int, int))&keyBoardPrompt;

char* runKeyBoard(char* Title = "Your Title", char* PresetText = "Preset Text here", int maxLenght = 20)
{
CallKeyBoard(0, Title, PresetText, maxLenght, 0, 0, 0x988F9Cool Man (aka Tustin);
sleep(10);
while (PS3::ReadInt(0x0099E42C, 1) == 0) {}
return PS3::ReadString(0x03080E22);
}
11-14-2014, 10:05 PM #6
iTпDM
Vault dweller
Originally posted by xReaperv3 View Post
Maybe someone need this in C++
    
opd_s keyBoardPrompt = { 0x493EA8, TOC };
void(*CallKeyBoard)(int z, char* Title, char* Preset, int Lenght, int z1, int z2, int Addr) = (void(*)(int, char*, char*, int, int, int, int))&keyBoardPrompt;

char* runKeyBoard(char* Title = "Your Title", char* PresetText = "Preset Text here", int maxLenght = 20)
{
CallKeyBoard(0, Title, PresetText, maxLenght, 0, 0, 0x988F9Cool Man (aka Tustin);
sleep(10);
while (PS3::ReadInt(0x0099E42C, 1) == 0) {}
return PS3::ReadString(0x03080E22);
}


Maybe like u :p
11-15-2014, 01:43 PM #7
Thanks bro Smile
12-17-2014, 04:40 PM #8
iTпDM
Vault dweller
Updated!

The following user thanked iTпDM for this useful post:

LBK
12-17-2014, 05:01 PM #9
LBK
Little One
Originally posted by TnDM View Post
Updated!


How to update adresse : kb_active , kb_cb , kb_result ,

Me , Just found KbPromptAdresse On IDA , But not found other adresse ^^

Its possible you send your skype for me ?



Thanks For Update Winky Winky
12-17-2014, 09:51 PM #10
Swiss
Do a barrel roll!
lol just changed the title ''1.04 to 1.05'' Facepalm
Last edited by Swiss ; 12-18-2014 at 12:40 AM.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo