Results 1 to 9 of 9
  1. #1
    Ragehax's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    357
    Reputation
    12
    Thanks
    87
    My Mood
    Inspired

    can someone give the me the starting point of a ca file cleaner?

    i thought it was

    If My.Computer.FileExists("file name") = True Then
    Kill("file name")

    but i get an error... anyone help?

  2. #2
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by ******* View Post
    i thought it was

    If My.Computer.FileExists("file name") = True Then
    Kill("file name")

    but i get an error... anyone help?
    Code:
    Dim BFD as new FolderBrowserDialog
    BFD.ShowDialog()
    Dim CAPath as String = BFD.FolderPath.ToString 'Something like that
    Kill(CAPath & "*.TMP")

  3. #3
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Code:
    Dim OFD as New OpenFileDialog
    OFD.ShowDialog()
    Dim CAFolder as String = OFD.FileName.ToString
    Kill(CAFolder & "*.TMP")

  4. #4
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by ac1d_buRn View Post
    Code:
    Dim OFD as New OpenFileDialog
    OFD.ShowDialog()
    Dim CAFolder as String = OFD.FileName.ToString
    Kill(CAFolder & "*.TMP")
    Thats not guna work. That will prompt for a OpenFILEDialog, not a FOLDER.

  5. #5
    Ian's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    ส้้้้้้้้้้้้้
    Posts
    5,827
    Reputation
    506
    Thanks
    892
    can some1 just give me a tutorial or source code for ca cleaner?

  6. #6
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    just do this ~

    its the easiest way
    Code:
     
     On Error Resume Next  ' or you can do On Error GoTo 1 
    
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe", System.IO.FileAttributes.Normal) 'ahnrpt from read only to normal
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\EndingBanner.exe", System.IO.FileAttributes.Normal) 'changes ending banner from read only to normal
    
            Kill("C:\Nexon\Combat Arms\EndingBanner.exe")
         
            Kill("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe")
    
    1:  MsgBox "Error: " & Err.Description
    Last edited by XGelite; 10-19-2009 at 08:00 AM.

  7. #7
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by XGelite View Post
    just do this ~

    its the easiest way
    Code:
     
     On Error Resume Next  ' or you can do On Error GoTo 1 
    
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe", System.IO.FileAttributes.Normal) 'ahnrpt from read only to normal
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\EndingBanner.exe", System.IO.FileAttributes.Normal) 'changes ending banner from read only to normal
    
            Kill("C:\Nexon\Combat Arms\EndingBanner.exe")
         
            Kill("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe")
    
    1:  MsgBox "Error: " & Err.Description
    Will not work if you have combat arms in another directory
    -Rest in peace leechers-

    Your PM box is 100% full.

  8. #8
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    Quote Originally Posted by hejsan1 View Post
    Will not work if you have combat arms in another directory
    then just change the file paths ( duh! )
    Last edited by XGelite; 10-19-2009 at 12:46 PM.

  9. #9
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by XGelite View Post
    then just change the file paths ( duh! )
    True........

    To kill all textfile use: Kill("*.TXT")
    Last edited by Zoom; 10-19-2009 at 01:19 PM.
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. Can someone give me the 1.0.177 Patch
    By mouse1 in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 01-20-2010, 02:42 PM
  2. Can someone Give me the link To turn a Law into a M32?
    By Sphearow in forum Combat Arms Mods & Rez Modding
    Replies: 2
    Last Post: 01-09-2010, 02:43 AM
  3. [Help] Hey can someone give me almost all the hacks? or at least the topics, plz
    By jorge1980 in forum CrossFire Hacks & Cheats
    Replies: 43
    Last Post: 09-20-2009, 05:46 PM
  4. Can someone give me the cannadianassault.dll hack? (somethign like that)
    By hacksomg123 in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 05-04-2009, 03:58 PM
  5. Replies: 3
    Last Post: 08-11-2008, 02:06 PM

Tags for this Thread