C# PushToConsole
Push To Console C#
Code:
public static void PushToConsole( string szCommand )
{
uint L***ient = (uint)(/*LTC HERE*/);
byte CONoff = (byte)(uint)(L***ient + 0x208);
/* __asm
{
push szCommand;
call CONoff;
add esp, 4;
}
*/
}
Yea i kno it not perfect but i wanted if u guys can help me out a little like puting the Function in a different way
for now
Code:
uint L***ient = (uint)(/*LTC HERE*/);
byte CONoff = (byte)(uint)(L***ient + 0x208);
any one have anything to say That will Help
PushToConsole in VB
Code:
Public Shared Sub PushToConsole(szCommand As String)
Dim L***ient As UInteger = CUInt(LTC IS HERE)
Dim CONoff As Byte = CByte(CUInt(L***ient + &H208))
' __asm
' {
' push szCommand;
' call CONoff;
' add esp, 4;
' }
End Sub
I got all to work but the Last Part

/yea