Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Rcaking!'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    10

    Smile [Release] AvA Tool

    Hi, i Made This simple tool wen i had a few min to spare.
    Ver:1.0.0.0
    Will Update soon.
    Remove:

    *Intro Video
    *Splash Screen

    Screen Shot:
    [IMG]https://i936.photobucke*****m/albums/ad202/rcaking1/Untitled-27.png[/IMG]
    Virus Scan:
    HERE

  2. The Following 2 Users Say Thank You to Rcaking! For This Useful Post:

    sleimann123 (12-20-2009),ZekeRamos (12-02-2009)

  3. #2
    nikakmal96's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    malaysia
    Posts
    8
    Reputation
    10
    Thanks
    4
    My Mood
    Amazed
    erm thx.... i'm the first who post.. gime something.. hehe just joking

  4. #3
    metalfrost's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    in my 64 jackin the bitches and slappen the hoes
    Posts
    377
    Reputation
    14
    Thanks
    39
    My Mood
    Buzzed
    so its a cleaner kinda?
    METAL ALL DAY EVERYDAY!!

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


  5. #4
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    Quote Originally Posted by metalfrost View Post
    so its a cleaner kinda?
    Yep. Deletes intro vid and splash screen and thats it


  6. #5
    Rcaking!'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    10
    the people who made AvA were good to block removing, gun sounds, Textures, Music, ect this is the best i can do as of now im working on something big tonight for it i think everyone will like it....


    It dont "Delete" Them it renames Them to ExVideo and ExSplash.
    Last edited by Rcaking!; 12-02-2009 at 05:34 AM.

  7. #6
    G0ld_User's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    11
    My Mood
    Drunk
    I try it and works , thanks.

  8. #7
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    is this ur first programm=?
    if yes, then great work.,

  9. #8
    bueeno's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Rio Grande do Sul
    Posts
    729
    Reputation
    17
    Thanks
    377
    Quote Originally Posted by Rcaking! View Post
    the people who made AvA were good to block removing, gun sounds, Textures, Music, ect this is the best i can do as of now im working on something big tonight for it i think everyone will like it....


    It dont "Delete" Them it renames Them to ExVideo and ExSplash.
    How about try some NewHack stuff.
    This works, but chams would be nice too :x

  10. The Following User Says Thank You to bueeno For This Useful Post:

    Ren103 (12-02-2009)

  11. #9
    MrEncrypted's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    201
    Reputation
    10
    Thanks
    28
    My Mood
    Amused
    Not bad, Good job.

  12. #10
    Rcaking!'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    10
    You see it is hard to do much because ijji made this game very good, it tests all files before entering a game to see if thay match the hosts files, but i might be able to change the file but keep the name... i am going to test that right now... if it works i will have a new tool uploaded soon.... or someone can make one there self, its not hard its just trial and error.

    ** IF anyone wonts to help ill give you the code but its simple, you can it out.

    Here Code:
    Code:
    Option Explicit On
    Imports System.IO
    Public Class Form1
        Private Declare Sub Sleep Lib "Kernel32" (ByVal dwMilliseconds As Long)
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            System.Threading.Thread.Sleep(35)
            Dim Location1 As String
            Dim Location2 As String
            Location1 = FolderDialog.SelectedPath + "\ENGLISH\AVA\avagame\Video"
            Location2 = FolderDialog.SelectedPath + "\ENGLISH\AVA\avagame\Splash"
            If CheckBox1.Checked = True Then
                On Error Resume Next
                My.Computer.FileSystem.RenameDirectory((Location1), "ExVideo")
            End If
            On Error Resume Next
            If CheckBox2.Checked = True Then
                My.Computer.FileSystem.RenameDirectory((Location2), "ExSplash")
            End If
           
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Folder.Text = FolderDialog.SelectedPath
        End Sub
    
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
    
        End Sub
    
    
        Private Sub FolderDialog_HelpRequest(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FolderDialog.HelpRequest
    
        End Sub
    
        Private Sub Folder_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Folder.Click
            FolderDialog.ShowDialog()
            Folder.Text = FolderDialog.SelectedPath
        End Sub
    
        Private Sub Folder_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Folder.TextChanged
    
        End Sub
    
        Private Sub CheckBox2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox2.CheckedChanged
    
        End Sub
    
        Private Sub GroupBox1_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GroupBox1.Enter
    
        End Sub
        
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Me.Close()
        End Sub
    End Class
    Last edited by Rcaking!; 12-02-2009 at 02:41 PM.

  13. #11
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    i would never public my source..

  14. #12
    Rcaking!'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    10
    ya, but its so simple y not?...

  15. #13
    Ren103's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    Home
    Posts
    1,039
    Reputation
    15
    Thanks
    86
    Quote Originally Posted by bueeno View Post
    How about try some NewHack stuff.
    This works, but chams would be nice too :x
    Lmfao. Who doesn't. Let's wait, pal. *Pats your shoulder*
    XD

  16. #14
    hellspy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    does it make ava start up faster?

  17. #15
    zivstarosta's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Romania
    Posts
    1
    Reputation
    10
    Thanks
    0
    what does it do?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Beta Release] Ava Hacks
    By thexviet in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 108
    Last Post: 02-25-2010, 08:32 PM
  2. Release Hacker Tools?
    By bug_NOT_ME in forum Combat Arms Discussions
    Replies: 10
    Last Post: 09-23-2009, 09:29 PM
  3. [RELEASE]Glitch Tool - Hack
    By bug_NOT_ME in forum Combat Arms Hacks & Cheats
    Replies: 66
    Last Post: 08-28-2009, 12:26 PM
  4. [Release] GST TOOL NEW !
    By hoélozabimaru in forum WarRock - International Hacks
    Replies: 39
    Last Post: 09-02-2007, 08:25 PM
  5. [Release] Launch Tool
    By NeoLeeT in forum WarRock - International Hacks
    Replies: 16
    Last Post: 05-06-2007, 03:44 PM