ExclamationHow Do I Make A Hack Loader ?

Posts 17 of 7 · Page 1 of 1
How Do I Make A Hack Loader ?
Can Any One Teach Me How To MAKE A HACK LOADER ???
I Want To Put My Hack In It Like Button 1 : ACtivate , Button 2 Disconect
thanks !
Google and youtube are ur teachers..no body will help u here
it a simple code with acktivate you extract the sxs.dll out of your resorcces and with Disaktivate you only remove the sxs.dll and the programm will close
take Visual Basic 2010

1. put the hack dll (sxs.dll) in the resources then extract it out of it into the cf folder

Code:
 
      If IO.File.Exists("sxs.dll") = False Then // if file sxs.dll not exist then it extract the sxs.dll from your resources
      Dim Datei As Object = My.Resources.sxs // take it from resources
      IO.File.WriteAllBytes("sxs.dll", Datei) // set the file on the new place
      End If
2. run the cf patcher like that
Code:
 Diagnostics.Process.Start("patcher_cf.exe")
3. set timer to check now, if crossfire is closed that the sxs.dll will be removed
Code:
 If Process.GetProcessesByName("Crossfire").Length > 0 Then
        Else
            Timer.Stop()
            // here delete the sxs.dll file
        End If
( i delte my files over making batch file ,..
i used this function of batch: )
Code:
stream.WriteLine("del ""sxs.dll"" 2>nul")

edit//
you need
Code:
Imports System****
for that whole crap
@Code[VB]

How make a loader if Click on Button Activate move sxs to Selected path , and Desactivate Delete sxs
Quote Originally Posted by Code[VB] View Post
take Visual Basic 2010

1. put the hack dll (sxs.dll) in the resources then extract it out of it into the cf folder

Code:
 
      If IO.File.Exists("sxs.dll") = False Then // if file sxs.dll not exist then it extract the sxs.dll from your resources
      Dim Datei As Object = My.Resources.sxs // take it from resources
      IO.File.WriteAllBytes("sxs.dll", Datei) // set the file on the new place
      End If
2. run the cf patcher like that
Code:
 Diagnostics.Process.Start("patcher_cf.exe")
3. set timer to check now, if crossfire is closed that the sxs.dll will be removed
Code:
 If Process.GetProcessesByName("Crossfire").Length > 0 Then
        Else
            Timer.Stop()
            // here delete the sxs.dll file
        End If
( i delte my files over making batch file ,..
i used this function of batch: )
Code:
stream.WriteLine("del ""sxs.dll"" 2>nul")

edit//
you need
Code:
Imports System****
for that whole crap
'
can u put stuf like i need 2 button or timer and stuf
and with Select Mode ( Raddio Button)
Posts 17 of 7 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?