Results 1 to 1 of 1
  1. #1
    lucasheer715's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    648
    Reputation
    10
    Thanks
    497
    My Mood
    Bored

    vb closeing/starting crossfire

    I just added something to my injector and it is closeing crossfire. If you want it just make a button that says "Close Crossfire" and do this:

    Under Public Class Form1 Write this:

    Code:
    Public Shared Function killAProgram(ByVal procName As String, Optional ByVal all As Boolean = True) As Boolean
            Dim val As Boolean = False
            For Each procInstance As Process In Process.GetProcesses
                If procInstance.ProcessName.ToLower = procName.ToLower Then
                    procInstance.Kill()
                    val = True
                    If Not all Then Exit For
                End If
            Next
            Return val
        End Function
    Now double click ur button and write this:

    Code:
            Dim TargetProcess As Process() = Process.GetProcessesByName("Crossfire")
            If TargetProcess.Length = 0 Then
            Else
                killAProgram("Crossfire")
                ' Dlls.add("Lucasheer715", Hackdlls)
            End If
    To open crossfire use this:

    Code:
            Try
                Shell("patcher_cf")
            Catch ex As Exception
                MsgBox("Unable to open crossfre, please put me in crossfire folder.")
            End Try
    Last edited by lucasheer715; 09-11-2012 at 05:43 PM.

  2. The Following User Says Thank You to lucasheer715 For This Useful Post:

    KerozHany (09-11-2012)

Similar Threads

  1. injected but crossfire closing
    By dddrrr in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 09-01-2010, 11:19 AM
  2. [Discussion] Close the crossfire section!
    By CyberGenius in forum CrossFire Hacks & Cheats
    Replies: 11
    Last Post: 03-10-2010, 10:07 AM
  3. [Help] CrossFire Closing Down After A Few Games
    By DestinSoul in forum CrossFire Hacks & Cheats
    Replies: 14
    Last Post: 01-30-2010, 04:33 AM
  4. [Help] They closed the Crossfire ************
    By adytzu83 in forum CrossFire Hacks & Cheats
    Replies: 20
    Last Post: 10-16-2009, 05:03 PM
  5. the pub hack closes crossfire
    By peanut901 in forum CrossFire Hacks & Cheats
    Replies: 9
    Last Post: 07-18-2009, 08:32 PM