public static void Start() { while (true) { Thread.Sleep(50); if (!Properties.Settings.Default.doorspammer) { continue; } if (!LocalPlayer.InGame) { continue; } if (LocalPlayer.Health <= 0) { continue; } while ((DllImport.GetAsyncKeyState(Properties.Hotkey.Default.doorspammerKey) & 0x8000) != 0) { ClientCMD.Exec("+use"); // I did not add this to LocalPlayer to avoid delay. But i dont try, maybe this will not happen lol Thread.Sleep(15); ClientCMD.Exec("-use"); Thread.Sleep(15); } } }
public static void StealName(int id) { ConVar nick = new ConVar("name"); nick.ClearCallbacks(); ClientCMD.Exec("name \" " + new Entity(id).Name2 + " \""); }
public static void InstantChange() { ConVar nick = new ConVar("name"); nick.ClearCallbacks(); ClientCMD.Exec("name \"\n\xAD\xAD\xAD\""); }
public static void ChangeName(string name) { ConVar nick = new ConVar("name"); nick.ClearCallbacks(); ClientCMD.Exec("name \"" + name + "\""); }
public static void Start() { while (Properties.Settings.Default.weaponspammer) { Thread.Sleep(10); if (!LocalPlayer.InGame) { continue; } if (LocalPlayer.Health <= 0) { continue; } if (Structs.SpamWeaponList.Contains(LocalPlayer.ActiveWeapon)) { if (LocalPlayer.ActiveWeapon == 64 || LocalPlayer.ActiveWeapon == 262208) { Memory.Write <int>(Memory.Client + signatures.dwForceAttack, 5); Thread.Sleep(100); Memory.Write <int>(Memory.Client + signatures.dwForceAttack, 4); Thread.Sleep(100); } else { ClientCMD.Exec("+attack2"); Thread.Sleep(10); ClientCMD.Exec("-attack2"); } } } ClientCMD.Exec("-attack2"); }
public static void ChatCleaner() { while (Properties.Settings.Default.chatcleaner) { Thread.Sleep(100); ClientCMD.Exec("say \"﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽\""); } }
public static void Start() { while (true) { Thread.Sleep(10); if (!Properties.Settings.Default.perfectnade) { continue; } if (!LocalPlayer.InGame) { continue; } if (LocalPlayer.Health <= 0) { continue; } if (LocalPlayer.ViewAngle.x != -89) { continue; } if (LocalPlayer.ActiveWeapon != 44) { continue; } if (LocalPlayer.Speed != 0) { continue; } if ((DllImport.GetAsyncKeyState(0x02) & 0x8000) != 0) { Thread.Sleep(800); if (!((DllImport.GetAsyncKeyState(0x02) & 0x8000) != 0)) { continue; } ClientCMD.Exec("+attack"); Thread.Sleep(80); ClientCMD.Exec("-attack2"); Thread.Sleep(1); ClientCMD.Exec("-attack"); } } }
public static void ChatCleaner() { while (Properties.Settings.Default.chatcleaner) { Thread.Sleep(100); //sagirilover.ml - best minecraft hvh hacks ClientCMD.Exec("say \"﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽﷽ ﷽﷽\""); Thread.Sleep(100); ClientCMD.Exec("say \"https://discord.gg/y7BysE\""); Thread.Sleep(100); ClientCMD.Exec("say \"sagirilover.ml - best minecraft hvh hacks\""); Thread.Sleep(100); ClientCMD.Exec("say \"https://vk.com/14bratik88 - best loli btw\""); Thread.Sleep(100); ClientCMD.Exec("say \"https://vk.com/minecrafthvh - best minecraft hvh hacks\""); Thread.Sleep(100); ClientCMD.Exec("say \"14sagirilover88#6557 - best loli btw\""); } }
public static void MoveRight() { ClientCMD.Exec("-moveleft"); Thread.Sleep(1); ClientCMD.Exec("+moveright"); }
public static void MoveClearX() { ClientCMD.Exec("-forward"); }
public static void MoveForward() { ClientCMD.Exec("+forward"); }
public static void VoteKick(int id) { //ConVar vote = new ConVar("vote"); //vote.ClearCallbacks(); ClientCMD.Exec("callvote kick " + id); }