Page 1 of 3 123 LastLast
Results 1 to 15 of 44
  1. #1
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool

    [Tutorial] How to make a CombatArms Cleaner!

    First of all most of the credits go to our rivalry site.

    Required
    * 3 GroupBoxes
    * 10 CheckBoxes
    * 1 Button
    * 2 Labels


    Rename your GroupBoxes to the following:

    1. Extensions
    2. Files
    3. Misc.

    Now put 6 CheckBoxes into Extensions. 2 into Files and 1 into Misc. Here's the long part, rename all the Tools to the following.

    Extensions
    *.txt
    *.jpg
    *.v3d
    *.bin
    *.dmp
    *.dump

    Files
    EndingBanner.exe
    CAV.exe

    Misc.
    1. Introduction

    Other (in no GroupBox)
    1. Check All

    Labels
    1. Status:
    2. Waiting...

    Buttons
    1. Clean

    Double click on Button1 (or Clean) and paste this code in...

    Code:
    Label2.Text = "Cleaned."
            If CheckBox1.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.txt")
            End If
            If CheckBox2.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.jpg")
            End If
            If CheckBox3.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.v3d")
            End If
            If CheckBox4.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.bin")
            End If
            If CheckBox5.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.dmp")
            End If
            If CheckBox6.Checked = True Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.dump")
            End If
            If CheckBox7.Checked = True Then
                On Error Resume Next
                System.IO.File.SetAttributes("C:\Nexon\Combat Arms\EndingBanner.exe", System.IO.FileAttributes.Normal)
                Kill("C:\Nexon\Combat Arms\EndingBanner.exe")
            End If
            If CheckBox8.Checked = True Then
                On Error Resume Next
                System.IO.File.SetAttributes("C:\Nexon\Combat Arms\CAV.exe", System.IO.FileAttributes.Normal)
                Kill("C:\Nexon\Combat Arms\CAV.exe")
            End If
            If CheckBox9.Checked = True Then
                On Error Resume Next
                If Dir("C:\Nexon\Combat Arms\MOVIES") <> "" Then
                    Rename("C:\Nexon\Combat Arms\Game\MOVIES", "C:\Nexon\Combat Arms\Game\CLEANED")
                End If
            End If
    Double click on the Check All label and paste this in...

    Code:
    If CheckBox10.Checked = True Then
                CheckBox1.Checked = True
                CheckBox2.Checked = True
                CheckBox3.Checked = True
                CheckBox4.Checked = True
                CheckBox5.Checked = True
                CheckBox6.Checked = True
                CheckBox7.Checked = True
                CheckBox8.Checked = True
                CheckBox9.Checked = True
            Else
                CheckBox10.Checked = False
                CheckBox1.Checked = False
                CheckBox2.Checked = False
                CheckBox3.Checked = False
                CheckBox4.Checked = False
                CheckBox5.Checked = False
                CheckBox6.Checked = False
                CheckBox7.Checked = False
                CheckBox8.Checked = False
                CheckBox9.Checked = False
            End If
    Now Your all done!


    Now debug/save, and you're all done,
    Enjoy!
    Last edited by Pixie; 12-20-2009 at 12:25 AM.

  2. The Following 16 Users Say Thank You to deathninjak0 For This Useful Post:

    conndrst (12-16-2009),Danfar (11-21-2009),doggyrpg (06-25-2010),FadingOne (08-14-2012),ghost fr3ak (11-22-2009),hgmf8124 (07-28-2010),hopefordope (01-09-2010),Houston (12-13-2009),iWAFFLE (11-19-2009),Jayz34 (01-10-2010),Nitehawk772 Bkup (10-10-2011),nxkun (11-28-2011),Renamon Toast Crunch (06-09-2013),romario313 (12-12-2009),SofaKingH4rd (08-05-2011),Tom (11-19-2009)

  3. #2
    guza44_44's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    433
    Reputation
    16
    Thanks
    310
    nice nice but mine is sooooo much better lmao :}
    [IMG]https://i304.photobucke*****m/albums/nn168/guza44/sig-1.png[/IMG]

  4. #3
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    I am just posting a simple TUT.

  5. #4
    guza44_44's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    433
    Reputation
    16
    Thanks
    310
    yes i know which is very good because these codes are valuable to many different things also i do my code differently then this code right here because im not familiar: (the Dir and the <>)

    Code:
     Dir("C:\Nexon\Combat Arms\EndingBanner.exe") <> ""
    [IMG]https://i304.photobucke*****m/albums/nn168/guza44/sig-1.png[/IMG]

  6. #5
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    you forgot one thing. Ending banner and lots of those other files are read only, so they wont delete like that. You have to set the atribute of the files from read only to normal

    heres a simple way:

    Code:
    System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe", _
        System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\EndingBanner.exe", System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\v3warpds.v3d", System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\v3warpns.v3d", System.IO.FileAttributes.Normal)
    there. ( thats not all the files, but you get the idea )

  7. The Following 5 Users Say Thank You to XGelite For This Useful Post:

    deathninjak0 (11-18-2009),hgmf8124 (07-28-2010),jacobispro (07-31-2010),Renamon Toast Crunch (06-09-2013),why06 (11-18-2009)

  8. #6
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    ok thanks i'll fix it after I eat.

  9. The Following User Says Thank You to deathninjak0 For This Useful Post:

    jacobispro (07-31-2010)

  10. #7
    guza44_44's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    433
    Reputation
    16
    Thanks
    310
    thats kinda why i just move the endingbanner in another location just incase people need it back for any reason..............BTW nice to see u back PixieCorp
    [IMG]https://i304.photobucke*****m/albums/nn168/guza44/sig-1.png[/IMG]

  11. The Following User Says Thank You to guza44_44 For This Useful Post:

    jacobispro (07-31-2010)

  12. #8
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Quote Originally Posted by XGelite View Post
    you forgot one thing. Ending banner and lots of those other files are read only, so they wont delete like that. You have to set the atribute of the files from read only to normal

    heres a simple way:

    Code:
    System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\Ahnrpt.exe", _
        System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\EndingBanner.exe", System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\v3warpds.v3d", System.IO.FileAttributes.Normal)
            System.IO.File.SetAttributes("C:\Nexon\Combat Arms\HShield\v3warpns.v3d", System.IO.FileAttributes.Normal)
    there. ( thats not all the files, but you get the idea )
    K, I just edit it, thanks.

  13. The Following User Says Thank You to deathninjak0 For This Useful Post:

    jacobispro (07-31-2010)

  14. #9
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    Thanks a lot, I will test later when I'm done making a project

  15. The Following User Says Thank You to Pixie For This Useful Post:

    deathninjak0 (11-18-2009)

  16. #10
    tabbyowns's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hacker's Location "Canada"
    Posts
    116
    Reputation
    10
    Thanks
    148
    My Mood
    Relaxed
    Cool Thanks ...
    Respect List
    ME
    Lolz2Much



    To Do List:
    = done
    = Not

    [] Buy VIP hacks
    [] Get banned 20 times in combat arms
    [] Become a noob
    [] Eat my fruits
    [] Get a life


    -----♥♥♥-----
    ----♥♥♥♥♥ ---Put This
    ---♥♥---♥♥---In Your
    ---♥♥---♥♥---Sig If
    ---♥♥---♥♥---You Know
    ----♥♥-♥♥----Someone
    -----♥♥♥-----Who Died Or Is Suffering
    ----♥♥-♥♥----from
    ---♥♥---♥♥---Cancer

    IHelper for MPGH Publicist position
    Put this ^^ On your sig to help us!

    [img]https://www.gay-tes*****m/images/badges/50.gif[/img]
    Am I gay?

  17. #11
    -XpliCitt-'s Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Spokane, Washington
    Posts
    3,230
    Reputation
    63
    Thanks
    2,282
    My Mood
    Tired
    Sorry, but that's not very efficient coding.
    You could replace 90% of the 'if' codes with four lines of coding.

  18. #12
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Quote Originally Posted by -XpliCitt- View Post
    Sorry, but that's not very efficient coding.
    You could replace 90% of the 'if' codes with four lines of coding.
    Sorry man, I'm a noob in vb 08 so yeah...

  19. #13
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Why not just renamed everything that your trying to delete to .bak and have a restore button on the tool just in case something goes awry.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

  20. #14
    †hêêlêmêñ†¹²'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Your moms house.
    Posts
    109
    Reputation
    10
    Thanks
    7
    My Mood
    Cheeky
    Thanks deathninjak0. Now I don't have to look for a cleaner. Haha.

  21. #15
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Quote Originally Posted by †hêêlêmêñ†¹² View Post
    Thanks deathninjak0. Now I don't have to look for a cleaner. Haha.
    np, glad I can help

Page 1 of 3 123 LastLast

Similar Threads

  1. [Tutorial]How to make a CA Cleaner[Leeched]
    By Tell'em in forum Visual Basic Programming
    Replies: 4
    Last Post: 02-15-2011, 03:27 PM
  2. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum Visual Basic Programming
    Replies: 17
    Last Post: 10-15-2007, 09:34 AM
  3. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 22
    Last Post: 09-25-2007, 05:35 AM
  4. [Tutorial] How to make you'r first hack in CE!!!
    By Darky in forum WarRock - International Hacks
    Replies: 3
    Last Post: 07-29-2007, 11:02 AM
  5. {Tutorial} How to make a hack with VB
    By ltkort213 in forum WarRock - International Hacks
    Replies: 31
    Last Post: 06-10-2007, 03:15 PM

Tags for this Thread