Hey,
I've just finished my little tool that allow you lagg free gaming in the multiplayer of Call of Duty Black Ops. This is another method then editing the config file. But what it exactly does, I wont tell you /. OK lets get started:
How to use:
Simply start Black Ops press ALT+ESC to go out of the game and start my fixer. After that you can go back and play as much as you wantwithout getting banned!
Screenshot:
My Black Ops is not running
Virusscans:
VirusTotal - Free Online Virus, Malware and URL Scanner
Black Ops MP Laggfixer.zip - Jottis Malwarescanner
For the bad guys:
Leave a comment if you like thisCode:'Credits jaBBa 'Here we go Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click For Each Process As Process In Process.GetProcessesByName("BlackOpsMP") Dim p As Process() = Process.GetProcessesByName("BlackOpsMP") If Not p.Length = 0 Then 'If there then continue Process.PriorityClass = ProcessPriorityClass.High Else MessageBox.Show("Black Ops is not running. Please start it and run again!", "Error") 'Else give error End If Next For Each Process As Process In Process.GetProcessesByName("Steam") 'same Dim p As Process() = Process.GetProcessesByName("Steam") If Not p.Length = 0 Then Process.PriorityClass = ProcessPriorityClass.BelowNormal MessageBox.Show("Enjoy your lagg free game now!", "Success") 'if everything went right, youll get this message Else MessageBox.Show("Steam is not running. Please start it and run again!", "Error") End If Next End Sub Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Dim p As Process() = Process.GetProcessesByName("BlackOpsMP") If Not p.Length = 0 Then Label1.Text = "Black Ops is detected!" 'Changes the label text if Black Ops is detected. Label1.ForeColor = Color.Green Button1.Enabled = True Else Label1.Text = "Black Ops is not detected!" 'Changes the label text if Black Ops is not detected. Label1.ForeColor = Color.Red Button1.Enabled = False End If End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1.Start() Button1.Enabled = False 'Not clickable End Sub End Class 'should be easy as pie. any questions just ask :D