Jump to content

GTASA Crasher (REQ)


Guest Capri_42

Recommended Posts

Hey theres a program out there called GTA Crasher or GTASA cracher or something. ive been searching for it but i cant find it anywhare. what it does is that when you click on it, a little window pops up that says "press F5(or something) to crash gta" and i need something like this because sometimes when i pause GTASA (not mta thank god) the screen will go all black and i cant alt tab or alt f4 or alt ctrl delete it so i have to restart my entire computer. this gets to be quite the little poop when you just finished a long mission and freezes before ur able to save.

if u can find this i will love you or something

thanks!

Link to comment
  • 4 months later...
  • 3 weeks later...

Michael why are posting so much nonsense in old/solved topics?! And in this case it seems like you haven't even read the first post as you have obviously no clue what this topic is about and why the topic starter is requesting a gta crasher...

Anyway to stay on topic: I've heard of this tool too and i know that it is included in the gta mod GTA Snow Andreas but i can't find it atm

Link to comment
  • 6 months later...
  • 4 weeks later...
  • 9 months later...

Write your own application in Visual Basic...

Heres a example.

Public Function KillByName(ByVal Name As String) As Boolean
       On Error GoTo KillByName_Error
 
       Dim WMI, Process, Processes
       Dim Counter As Integer, RetVal As Integer
       Dim Found As Boolean
 
       WMI = GetObject("winmgmts://.")
 
       If (Err.Number <> 0) Then
           KillByName = False
           Exit Function
       End If
 
       Processes = WMI.execquery("Select * from win32_process")
 
       If (Processes.Count = 0) Then
           KillByName = False
           Exit Function
       End If
 
       For Each Process In Processes
           If (UCase(Process.Name) = UCase(Name)) Then
               Process.Terminate(Process.ProcessID)
               Found = True
           End If
       Next
 
       KillByName = Found
 
       Exit Function
 
KillByName_Error:
       KillByName = False
 
   End Function

Example...

Private Sub YourKill_ButtonEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLaunch.Click
       Dim myProcesses() As Process
       Dim instance As Process
       myProcesses = Process.GetProcessesByName("gtasa")
       For Each instance In myProcesses
           KillByName("gtasa.exe")
       Next
   End Sub

Link to comment

Download "Crazy Trainer 151+" it has a built in GTA SA process killer. Just press "CTRL + ALT + F5" or just write your own...

Quote from Jason_Gregory:
Private Sub
YourKill_ButtonEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLaunch.Click   
Dim myProcesses() As Process       
Dim instance As Process       
              myProcesses = Process.GetProcessesByName("gtasa")
For Each instance In myProcesses
               KillByName("gtasa.exe")       
Next
End Sub

Link to comment
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...