master
sagirilover 5 years ago
parent bae43ed8d1
commit cea260e2cb
  1. 2
      AnimeSoftware/AnimeForm.Designer.cs
  2. 12
      AnimeSoftware/AnimeForm.resx
  3. 4
      AnimeSoftware/Checks.cs
  4. 24
      AnimeSoftware/Hacks/NameStealer.cs

@ -272,7 +272,7 @@
// autostrafeCheckBox
//
this.autostrafeCheckBox.AutoSize = true;
this.autostrafeCheckBox.Location = new System.Drawing.Point(335, 100);
this.autostrafeCheckBox.Location = new System.Drawing.Point(351, 100);
this.autostrafeCheckBox.Name = "autostrafeCheckBox";
this.autostrafeCheckBox.Size = new System.Drawing.Size(76, 17);
this.autostrafeCheckBox.TabIndex = 26;

@ -129,6 +129,18 @@
<metadata name="glowColumn.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="idColumn.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="nameColumn.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="aliveColumn.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="glowColumn.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="nickBoxContextMenuStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>

@ -40,7 +40,7 @@ namespace AnimeSoftware
public static void CheckVersion()
{
string url = "https://raw.githubusercontent.com/sagirilover/AnimeSoftware/master/version"; // only for fix critical bugs
string url = "https://raw.githubusercontent.com/sagirilover/AnimeSoftware/master/version"; // check for updates
using (WebClient client = new WebClient())
{
string s = client.DownloadString(url);
@ -54,7 +54,7 @@ namespace AnimeSoftware
}
}
public static string version = "v2.60";
public static string version = "v2.70";
}
}

@ -63,30 +63,6 @@ namespace AnimeSoftware.Hacks
}
}
public static void ChangeName() // pasted from real gamer. another method to change
{
string name = "\n\xAD\xAD\xAD";
byte len = (byte)name.Length;
byte[] a = { 0x6, (byte)(0x8 + len), 0xA, (byte)(0x6 + len), 0xA, (byte)(0x4 + len), 0x12, len }; // prepend needed bytes
byte[] b = Encoding.ASCII.GetBytes(name);
byte[] c = { 0x18, 0x6 }; // add suffix
var final = new byte[a.Length + b.Length + c.Length]; // combine that shit boyo
// combine em like a real gamer
a.CopyTo(final, 0);
b.CopyTo(final, a.Length);
c.CopyTo(final, a.Length + b.Length);
int clientState = Memory.Read<int>(Memory.Engine + signatures.dwClientState);
int netChan = Memory.Read<int>(clientState + 0x9C);
int voiceStream = Memory.Read<int>(netChan + 0x78); // voicestream is the biggest nigga stream
uint tmp = 0;
int curbit = final.Length * 8;
Memory.WriteProcessMemory(Memory.pHandle, (IntPtr)voiceStream, final, (IntPtr)final.Length, ref tmp); // write bytes to voicestream data
Memory.WriteProcessMemory(Memory.pHandle, (IntPtr)netChan + 0x84, BitConverter.GetBytes(curbit), (IntPtr)4, ref tmp); // write curbit for voicestream
}
}

Loading…
Cancel
Save