Results 1 to 14 of 14
  1. #1
    jetse123's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Netherlands
    Posts
    37
    Reputation
    10
    Thanks
    3
    My Mood
    Bored

    Combat Arms Tool

    Hello,
    Here is a ca tool i made in vb
    it isnt that big but i hope its a bit usefull
    Screen:

    Virustotal
    Virscan
    Enjoy it
    Last edited by jetse123; 01-14-2010 at 01:57 AM.

  2. The Following User Says Thank You to jetse123 For This Useful Post:

    BASILHSK7 (01-13-2010)

  3. #2
    Samueldo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Meh
    Posts
    1,023
    Reputation
    29
    Thanks
    348
    My Mood
    Inspired
    Need another scan from VirScan.org and you're done. And most of it is leeched. At least improve it if you're gonna leech.
    Quote Originally Posted by Grim View Post
    glad to be an inspiration
    Minions rule. /endof

    InjectPlz Refresh - download v1.0 now!

  4. The Following User Says Thank You to Samueldo For This Useful Post:

    [MPGH]KING (01-13-2010)

  5. #3
    KING's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    10,795
    Reputation
    837
    Thanks
    3,093
    My Mood
    Angry
    Quote Originally Posted by Samueldo View Post
    Need another scan from VirScan.org and you're done. And most of it is leeched. At least improve it if you're gonna leech.
    Exactly what he said. You need 1 from VirScan.

  6. #4
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    you only need to scan the .rar file you have attached.. scanning the .exe isn't necessary.

    VirSCAN.org - Free Multi-Engine Online Virus Scanner v1.02, Supports 37 AntiVirus Engines!

    if you'd upload your .rar file to that site and post us the link of the results we would be able to test and approve this file
    Want to see my programs?
    \/ CLICK IT BITCHES \/

  7. #5
    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
    ITs all leeched stuff from the VB section
    You didnt even add anything to it

    :\

  8. #6
    Almog's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    10
    My Mood
    Amused
    Wont approve adversing there

  9. #7
    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
    Quote Originally Posted by Almog View Post
    Wont approve adversing there
    there is no advertising u noob.
    Pixiecoding is MPGH's VB Help Website.

    >.<

  10. #8
    jetse123's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Netherlands
    Posts
    37
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Sorry guys for leeching the codes but im not good enough to code it by myself
    btw i just uploaded another virusscan

  11. #9
    Samueldo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Meh
    Posts
    1,023
    Reputation
    29
    Thanks
    348
    My Mood
    Inspired
    Quote Originally Posted by jetse123 View Post
    Sorry guys for leeching the codes but im not good enough to code it by myself
    btw i just uploaded another virusscan
    Then at least figure out how to edit it and improve it or it's no good. Even without coding experience it's easy (as shown by me in the cleaner injector etc on my tool)
    Quote Originally Posted by Grim View Post
    glad to be an inspiration
    Minions rule. /endof

    InjectPlz Refresh - download v1.0 now!

  12. #10
    NuB_GhOsT's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Australia
    Posts
    1,083
    Reputation
    18
    Thanks
    60
    My Mood
    Devilish
    Well you have to keep practising it's not the hardest programming language to learn .. I thought it was easier then HTML which is easy as.

  13. #11
    jetse123's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Netherlands
    Posts
    37
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    i can code for this program but:
    For me its hard to make a code from nothing
    and i know how to edit but the tutorial (gui's?) are mostly nice XD
    But i will think about it to change it
    BTw got tutorial for Crosshair?
    i found one than i got a DOT
    but i whant an kinda +
    Please help :P
    This is code i use:
    Code:
            Dim MiddleX As Integer = (Me.Width / 2) - 4
            Dim MiddleY As Integer = (Me.Height / 2) - 4
            Dim TheKillDot As Graphics = Me.CreateGraphics
            Dim MyPen As Pen = New Pen(Color.Red)
            Dim MyBrush As SolidBrush = New SolidBrush(Color.Red)
            TheKillDot.SmoothingMode = SmoothingMode.HighQuality
            If Activated = True Then
                TheKillDot.FillEllipse(MyBrush, MiddleX, MiddleY, 8, 8)
            ElseIf Activated = False Then
                Me.Refresh()
            End If

  14. #12
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    thanks for fixing your post and sorry it took so long for approval but here it is.

    /approved
    Want to see my programs?
    \/ CLICK IT BITCHES \/

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

    jetse123 (01-14-2010)

  16. #13
    jetse123's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Netherlands
    Posts
    37
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Im sorry for double post but does anyone know how to make a CROSSHAIR?
    i now use: (a dot)
    Code:
            Dim MiddleX As Integer = (Me.Width / 2) - 4
            Dim MiddleY As Integer = (Me.Height / 2) - 4
            Dim TheKillDot As Graphics = Me.CreateGraphics
            Dim MyPen As Pen = New Pen(Color.Red)
            Dim MyBrush As SolidBrush = New SolidBrush(Color.Red)
            TheKillDot.SmoothingMode = SmoothingMode.HighQuality
            If Activated = True Then
                TheKillDot.FillEllipse(MyBrush, MiddleX, MiddleY, 8, 8)
            ElseIf Activated = False Then
                Me.Refresh()
            End If

  17. #14
    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
    Quote Originally Posted by jetse123 View Post
    Im sorry for double post but does anyone know how to make a CROSSHAIR?
    i now use: (a dot)
    Code:
            Dim MiddleX As Integer = (Me.Width / 2) - 4
            Dim MiddleY As Integer = (Me.Height / 2) - 4
            Dim TheKillDot As Graphics = Me.CreateGraphics
            Dim MyPen As Pen = New Pen(Color.Red)
            Dim MyBrush As SolidBrush = New SolidBrush(Color.Red)
            TheKillDot.SmoothingMode = SmoothingMode.HighQuality
            If Activated = True Then
                TheKillDot.FillEllipse(MyBrush, MiddleX, MiddleY, 8, 8)
            ElseIf Activated = False Then
                Me.Refresh()
            End If
    THat wont go over CA.
    You cant make a crosshair in VB without d3d hooking it into the game >.<

    Thats C++ shit

Similar Threads

  1. What Combat Arms Tool do YOU want?
    By Invidus in forum Combat Arms Discussions
    Replies: 13
    Last Post: 06-01-2010, 02:20 AM
  2. Combat Arms Tools Section
    By Uber why? in forum Combat Arms Discussions
    Replies: 3
    Last Post: 02-16-2010, 08:34 PM
  3. [RELEASE] Combat Arms Tool!
    By MasterChaos_2nd in forum Visual Basic Programming
    Replies: 9
    Last Post: 02-08-2010, 11:20 AM
  4. New Combat Arms Tool Released
    By Highlander in forum Visual Basic Programming
    Replies: 13
    Last Post: 01-17-2010, 10:04 AM
  5. [Release] new quick start combat arms tool
    By NexxonKila9 in forum Combat Arms Hacks & Cheats
    Replies: 13
    Last Post: 12-03-2009, 09:06 PM