Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused

    Thumbs up Muti-Tool, Tool Codes [Mega-Thread] + Mini-Chams & Croshair

    Tapper- /yea

    --On
    Code:
    (Disconnect) = Shell("NET STOP DHCP")
    --Off
    Code:
    (Connect) = Shell("NET START DHCP")
    ----------------------------------------------------------------------------
    KDR Calculator- /yea

    Code:
    Function FKDR(ByVal Kills As String, ByVal Deaths As String, ByVal KDR As String)
            Dim Result As Double
            If KDR = 0 Then
                Result = Kills / Deaths
            Else
                Result = KDR * Kills - Deaths
            End If
            If KDR < 1 Then
                Return Format(Result, "0.00")
            Else
                Return Format(Result, "0")
            End If
        End Function
    ------------------------------------------------------------------
    CBL Checker /yea (My Way)

    Put This code in (Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click)
    Code is
    Code:
       'by ultahackers
            PictureBox1.Hide()
            Dim Strings As String
            Dim wc As New WebClient
    
            Strings = wc.DownloadString("https://thecaconline.net/cbl/player/" + TextBox1.Text + ".html")
            wc.Dispose()
            If Strings.Contains("https://thecaconline.net/cbl/images/dirty.png") Then
                'PLAYER IS CBL DIRTY
                PictureBox1.Show()
                Return
            Else
                'PLAYER IS CBL CLEAN
                PictureBox2.Show()
                PictureBox1.Hide()
    
    
                Return
            End If
    
        End Sub
    Then Make-- The Following
    https://img195.imageshack.us/img195/4589/83666436.png
    And add 2 PictureBox .... or jut do labels
    -------------------------------------------------------------
    Injector /yea
    Add the Following
    * Two Textboxes
    * One Listbox
    * Three Buttons
    * One NumericUpDown
    Code Is
    Code:
    Public Class Form1
    
        Private TargetProcessHandle As Integer
        Private pfnStartAddr As Integer
        Private pszLibFileRemote As String
        Private TargetBufferSize As Integer
    
        Public Const PROCESS_VM_READ = &H10
        Public Const TH32CS_SNAPPROCESS = &H2
        Public Const MEM_COMMIT = 4096
        Public Const PAGE_READWRITE = 4
        Public Const PROCESS_CREATE_THREAD = (&H2)
        Public Const PROCESS_VM_OPERATION = (&H8)
        Public Const PROCESS_VM_WRITE = (&H20)
    
        Public Declare Function ReadProcessMemory Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpBaseAddress As Integer, _
        ByVal lpBuffer As String, _
        ByVal nSize As Integer, _
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( _
        ByVal lpLibFileName As String) As Integer
    
        Public Declare Function VirtualAllocEx Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpAddress As Integer, _
        ByVal dwSize As Integer, _
        ByVal flAllocationType As Integer, _
        ByVal flProtect As Integer) As Integer
    
        Public Declare Function WriteProcessMemory Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpBaseAddress As Integer, _
        ByVal lpBuffer As String, _
        ByVal nSize As Integer, _
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function GetProcAddress Lib "kernel32" ( _
        ByVal hModule As Integer, ByVal lpProcName As String) As Integer
    
        Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" ( _
        ByVal lpModuleName As String) As Integer
    
        Public Declare Function CreateRemoteThread Lib "kernel32" ( _
        ByVal hProcess As Integer, _
        ByVal lpThreadAttributes As Integer, _
        ByVal dwStackSize As Integer, _
        ByVal lpStartAddress As Integer, _
        ByVal lpParameter As Integer, _
        ByVal dwCreationFlags As Integer, _
        ByRef lpThreadId As Integer) As Integer
    
        Public Declare Function OpenProcess Lib "kernel32" ( _
        ByVal dwDesiredAccess As Integer, _
        ByVal bInheritHandle As Integer, _
        ByVal dwProcessId As Integer) As Integer
    
        Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
        ByVal lpClassName As String, _
        ByVal lpWindowName As String) As Integer
    
        Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" ( _
        ByVal hObject As Integer) As Integer
    
    
        Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
    
        Private Sub Injectionlistbox()
            MsgBox("This injector codes were produce by Topblast of ******")
        End Sub
        Private Sub Inject()
            On Error GoTo 1 ' If an error occurs it will close else it will not close you will hear a BEEP r a sound
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
            pszLibFileRemote = ListBox1.SelectedItem
            pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
            TargetBufferSize = 1 + Len(pszLibFileRemote)
            Dim Rtn As Integer
            Dim LoadLibParamAdr As Integer
            LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
            Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
            CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
            CloseHandle(TargetProcessHandle)
            Call Injectionlistbox()
    1:      Me.Close()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If IO.File.Exists(ListBox1.SelectedItem) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName("HSUpdate")
                If TargetProcess.Length = 0 Then
                    Me.TextBox2.Text = ("Waiting for " + TextBox1.Text)
                Else
                    Timer1.Stop()
                    Me.TextBox2.Text = "Done..."
                    Call Inject()
                    Me.Close()
                End If
            Else
                Me.TextBox2.Text = ("Selected a DLL")
            End If
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer1.Start()
            Timer1.Interval = NumericUpDown1.Value
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim OpenFileDialog1 As OpenFileDialog
    
            OpenFileDialog1.InitialDirectory = "Desktop"
            OpenFileDialog1.Filter = "DLL files (*.DLL)|*.dll|All files (*.*)|*.*"
            OpenFileDialog1.FilterIndex = 1
            OpenFileDialog1.RestoreDirectory = True
    
            If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                Try
                    ListBox1.Items.Add(OpenFileDialog1.FileName)
                    ListBox1.Select()
                Catch Ex As Exception
                    MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
                End Try
            End If
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            ListBox1.Items.Remove(ListBox1.SelectedItem)
        End Sub
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
            ListBox1.Items.Clear()
        End Sub
    End Class
    -------------------------------------------------------------------------
    How Make Crosshair /yea
    (May need to edit overlay. for it to work in game)
    "THIS WILL TAKE LONG TIME TO CODE THIS.. PM OR ADD ME ON MSN"
    In Forum2.vb do this ok
    --Find and change ShowInTaskbar to FALSE
    --Find and change Opacity to 65% (or other)
    --Find and change StartPosition to CenterScreen
    --Find Size and change to 1, 50 (it will automatically change to another number)
    -- Find and change MinimumSize to 1, 50
    --Find and change MaximumSize to 1, 50
    --Find and change FormBorderStyle to None
    --Find and change BackColor to RED
    --Click on New Form on the toolbar (not toolbox)
    --Do Number 11, 12, 13, 17 and 18.
    --Find and change Size to 50 , 1 (do it for MinimumSize, MaximumSize too)

    Go back to Form1.vb
    --Double Click on your Show Crosshair button and your Hide Crosshair button.
    Then........... some few codes below will help you allot
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

    End Sub
    End Class

    25. Put in this (Form2.Show and Form3.Show under the first section and Form2.Hide and Form3.Hide under the 2nd section):
    Public Class Form1
    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Form2.Show()
    Form3.Show()
    End Sub
    Code:
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Form2.Hide()
    Form3.Hide()
    End Sub
    End Class
    Big Code is that will help...
    Code:
    Public Class Form5
    
        Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
            If CheckBox1.Checked Then
                Crosshair2.Show()
                corrshair.show()
            Else
                corrshair.close()
                Crosshair2.Close()
    
            End If
        End Sub
    
        
    
        Private Sub CheckBox2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox2.CheckedChanged
            If CheckBox2.Checked Then
                corrshair.Close()
                Crosshair2.Close()
            End If
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If Button1.Enabled = True Then MsgBox("Check boxe Crosshair on to activate and Check boxe Crossshair Off to DeActivate")
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            If Button1.Enabled = True Then MsgBox("This may not work for others, Sorry but wait for updates.")
        End Sub
    For msn help on.. stevebill@exo.com
    -----------------------------------------------
    Cleaner for C.A /yea
    Required
    * 3 GroupBoxes
    * 10 CheckBoxes
    * 1 Button
    * 2 Labels
    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
    Other Code iz
    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
    --------------------------------------------------------------------
    Mini-Chams /yea
    ---Create 2 buttons.
    ----Name first one, "Mini chams"
    --.Name second one, "Revert"
    ---Click On Mini Chams Button.
    ----.Delete every code in it, i mean every single code in it.

    6.Add the following code:
    Code:
    Option Explicit On
    Imports System.IO
    Public Class Texture_Remover
        Dim FL As String
        Dim ML As String
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    
            FL = ("C:\*****\CA\Game\")
            ML = ("C:\Program Files\")
            On Error Resume Next
            File.Move(FL + "CHARS_T_FACE.rez", ML + "CHARS_T_FACE.rez")
            File.Move(FL + "CHARS_T_BODY.rez", ML + "CHARS_T_BODY.rez")
            File.Move(FL + "CHARS_T_HAND.rez", ML + "CHARS_T_HAND.rez")
            File.Move(FL + "CHARS_T_HEAD.rez", ML + "CHARS_T_HEAD.rez")
        End Sub
    -------After that, click on button2.
    ---Delete everything for this one also.
    ----Add the following code"
    Code:
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            On Error Resume Next
            File.Move(ML + "CHARS_T_FACE.rez", FL + "CHARS_T_FACE.rez")
            File.Move(ML + "CHARS_T_BODY.rez", FL + "CHARS_T_BODY.rez")
            File.Move(ML + "CHARS_T_HAND.rez", FL + "CHARS_T_HAND.rez")
            File.Move(ML + "CHARS_T_HEAD.rez", FL + "CHARS_T_HEAD.rez")
        End Sub
    
    End Class
    -----------------------------------------------------------
    Make Login/Password /yea
    1) Make 1 Button
    2) Make 2 TextBox
    3) Rename Button1 to Login
    4) For 1st Text-box type" Type in your username"
    For 2 Text-box Type" Type in your Password"
    5) Dont have to make this( make a second button and rename it to help)

    Double click on Button1/login put the following code
    Code:
    If TextBox1.Text = "Type in your user name" And TextBox2.Text = " Type in your password " Then
                Form2.Show()
            Else
                MsgBox("Invalid Login")
    6)Now make a new forum, name it forum2.
    Click on the forum 2 and edit it............

    7) For the help Button.
    Double click on the button2 and type in this code.
    Code:
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            If Button4.Enabled = True Then MsgBox("Type in wat you want ok.")
    -------------------------------------------------------------
    Add hot-key to ur forum..... /yea
    Code:
     Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
    Form1_KeyDown:
            If e.KeyCode = Keys.F7 Then
                Button5.PerformClick()
    
            End If
        End Sub
    -------------------------------------------------------------------------
    Say Version of your tool /yea
    Code:
     Label11.Text = My.Application.Info.Version.ToString
    --------------------------------------------------------------
    Say User Name of pc /yea
    Code:
            Label5.Text = My.Computer.Name
    Use any label....
    -----------------------------------------------------------------------
    Time of Day /yea
    Code:
    Label2.Text = TimeOfDay
    --------------------------------------------------------------------------
    MP3 Player /yea
    Code:
       Open(button1): OpenFileDialog1.ShowDialog() AxWindowsMediaPlayer1.URL= OpenFileDialog1.FileName
    Filter code for openfiledialog1:
    MP3|*.mp3
    ------------------------------------------------------------------------
    Change Theme/ Back ground Color...../yea
    1) Add a combo-box.... then edit it and add Dark Blue
    2) Double click combo-box and add this code....
    Code:
     If ComboBox2.SelectedItem = ("Dark Blue") Then
                Me.BackColor = Color.DarkBlue
                Me.ForeColor = Color.DarkBlue
    
            End If
    ----------------------------------------------------------------------
    Advanced Coding on the progress bar /yea
    -------- add a label and name it label3... or change codes..
    1) Do normal coding for progress bar.. then add this code on timer
    Code:
    ProgressBar1.Increment(1)
            If ProgressBar1.Value = 2 Then
                Label3.Text = "Checking Code part 1/3 "
            Else
                If ProgressBar1.Value = 34 Then
                    Label3.Text = "Checking code 2/3"
                Else
                    If ProgressBar1.Value = 78 Then
                        Label3.Text = " checking code 3/3"
                    Else
                        If ProgressBar1.Value = 100 Then
                            Button2.Enabled = True
                            ProgressBar1.Value = 0
                            Timer1.Stop()
                        End If
                                End If
                            End If
                        End If
            
    
        End Sub
    --------------------------------------------------------------------------
    Cleaner /yea
    Required
    * 3 GroupBoxes
    * 10 CheckBoxes
    * 1 Button
    * 2 Labels
    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
    ........other code
    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
    -------------------------------------------------------------------------
    IF USE ANY OF CODES.... PLZ GIVE CREDITS TO.....
    -Ultahackers (Main Coder, Updates, Editor.......)
    -jamshaid (Big Helper, mini-chams helper)
    -CA********** (Revert help on mini-chams... other)"he's name block dew to mpgh rules
    -Realm Duelist (Editor on the codes)
    -iLikeWaterHa (Big coder)
    -VB™(????????)
    -hahahaz (Used he idea...? aka coding)
    -Boomdocks (Coder Helper on cleaner)
    -deathninjako (Codes on cleaner)
    (if think you helped or coded some codes ... sorry just tell to update the credits)
    --MSN for Extra Help : stevebill@exo.com
    Dont say it.. Just click it "THANKS BUTTON"/yea
    "took me 37-49 min to post this stuff.. had to look deep into codes"
    Last edited by ultahackers; 11-07-2010 at 01:44 PM.

  2. The Following 5 Users Say Thank You to ultahackers For This Useful Post:

    alex94 (11-08-2010),confict (11-09-2010),deadskulz (11-08-2010),EuroMaster2 (11-09-2010),X_X (11-12-2010)

  3. #2
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Nice Tut..
    Should helps Lot Of people hopefully..

  4. #3
    -InFinity's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Dominican Republic.
    Posts
    1,198
    Reputation
    -49
    Thanks
    63
    My Mood
    Chatty
    But i don't know how to use.

    Whatch my 1k funeral at the general section.





    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpghm.gif[/IMG]
    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpgha.gif[/IMG]


    Use My Free VIP Hacks!

    Here Are My Free VIP Hacks.

  5. #4
    BSOD's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    181
    Reputation
    31
    Thanks
    35
    Jamshaid is my brother IRL.

  6. #5
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused
    Quote Originally Posted by BSOD View Post
    Jamshaid is my brother IRL.
    Rolf.. He's good at vb... never talked to him for long /off topic..
    -
    /bak to topic.. ?

  7. #6
    BSOD's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    181
    Reputation
    31
    Thanks
    35
    He's not good at VB. He's pro.

  8. #7
    Velocity's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Usa
    Posts
    4,375
    Reputation
    106
    Thanks
    773
    thnx for all these codes.

  9. #8
    EuroMaster2's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Blah
    HOLY FUCKIGN SHITS! This will help me
    /thanks

  10. #9
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    does that crosshair trick work? can you show some proof it works?

  11. #10
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Woo, now we get 50 similar multitools lol
    good job anyway tho

  12. #11
    Julma Henri's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,528
    Reputation
    205
    Thanks
    775
    My Mood
    In Love
    Why there is Cleaner 2 times ?
    Help me get donator.



    Want to become part of Editor Force? Click the tag below and apply now !

  13. #12
    chengxiong1's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Thanks for tut

  14. #13
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused
    No Probb PEOPLE.... i will update the codes with new stuff..

  15. #14
    User1's Avatar
    Join Date
    Jul 2009
    Gender
    female
    Location
    Above the influence
    Posts
    4,065
    Reputation
    61
    Thanks
    4,294,967,295
    My Mood
    Crappy
    I doubt crosshair will work as DX9 > GDI/GDI+
    Any donations would help


    Quote Originally Posted by Bombsaway707

    HOLY SHIT ITS USER1
    Quote Originally Posted by Blood

    HOLY SHIT ITS USER1
    Quote Originally Posted by Alby-kun


    HOLY SHIT ITS USER1
    Quote Originally Posted by Ali

    HOLY SHIT ITS USER1
    Quote Originally Posted by CodeDemon
    HOLY SHIT ITS USER1
    Quote Originally Posted by Jussofresh View Post
    HOLY SHIT ITS USER1!
    [21:13] CoderNever: HOLY SHIT ITS USER1!

  16. #15
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused
    Quote Originally Posted by User1 View Post
    I doubt crosshair will work as DX9 > GDI/GDI+
    Yep... it will not work if just use my plain code.. you need to add other shit..

Page 1 of 2 12 LastLast

Similar Threads

  1. Mega Thread: Firewalls, Antivirus and Other security tools
    By Pandemic in forum Combat Arms Tutorials
    Replies: 28
    Last Post: 12-08-2010, 07:21 PM
  2. [Help]A questions for a muti tool.
    By ~Shadow in forum Visual Basic Programming
    Replies: 12
    Last Post: 07-24-2010, 03:11 AM
  3. [Preview] J8y's Super Muti Tool
    By ~J8y~ in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-01-2010, 07:10 PM
  4. Upcoming Weapon Comparison Mega Thread!
    By Justin in forum Combat Arms Discussions
    Replies: 8
    Last Post: 09-07-2009, 03:35 AM
  5. Mega Thread
    By Empire_ in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-09-2008, 04:23 PM