Went into their dll and tampered with it a bit
// Token: 0x06000003 RID: 3 RVA: 0x000020AC File Offset: 0x000002AC
private void SMTP(string pipe, string input)
{
if (ExploitAPI.NamedPipeExist(pipe))
{
try
{
using (NamedPipeClientStream namedPipeClientStream = new NamedPipeClientStream(".", pipe, PipeDirection.Out))
{
namedPipeClientStream.Connect();
using (StreamWriter streamWriter = new StreamWriter(namedPipeClientStream))
{
streamWriter.Write(input);
streamWriter.Dispose();
}
namedPipeClientStream.Dispose();
}
return;
}
catch (IOException)
{
MessageBox.Show("Error occured sending message to the game!", "Connection Failed!", MessageBoxButtons.OK, MessageBoxIcon.Hand);
return;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString());
return;
}
}
Cancel
Post