Page 1 of 4 123 ... LastLast
Results 1 to 15 of 47
  1. #1
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused

    CA Program Ideas

    Ok guys so i'm out of ideas about what to code for CA. You guys have any ideas?
    Spam posts will be deleted.

  2. #2
    Jarppi's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    مص مقيت والدتي دي
    Posts
    6,088
    Reputation
    173
    Thanks
    1,503
    My Mood
    Worried
    -an improoved rez tool
    -texture remover
    -afk bot
    -windowed
    -kdr calculator (non web-based)
    -color trigger bot with 250-0-0 as color value, unchangeable with head mod
    -spammer
    -snipe magnifition (liek the wps one)
    -Cleaner
    -DLL Injector
    -Memory Editor
    -Mini Chams
    -Nexon Passport Generator
    *all the in one, sexy themed and theme color choice (purple)


    and ill post more later on...
    Last edited by Jarppi; 04-28-2010 at 09:02 PM.

  3. #3
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by purple View Post
    -an improoved rez tool
    -texture remover
    -afk bot
    -windowed
    -kdr calculator (non web-based)
    -color trigger bot with 250-0-0 as color value, unchangeable with head mod
    -spammer
    -snipe magnifition (liek the wps one)
    and ill post more later on...
    Well ive made a texture remover, and AFK bot is patched . Windowed mode, ill see if i can code that. Not sure if i can tho , KDR calculator, seems doable. Trigger Bot, maybe ill try it. Spammer - patched unless i find a way around sendkeys Snipe magnification, ill try and find stuff about it.

  4. #4
    Jarppi's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    مص مقيت والدتي دي
    Posts
    6,088
    Reputation
    173
    Thanks
    1,503
    My Mood
    Worried
    i edited, added more! what about rez tool?

  5. #5
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by purple View Post
    i edited, added more!
    I see haha
    -DLL Injector
    -Memory Editor
    -Mini Chams
    -Nexon Passport Generator
    *all the in one, sexy themed and theme color choice (purple)
    Dll Injector, i have one out, guess i could update it. Memory Editor, ermm yah that will be difficult haha. Mini-Chams, i think i could do that. Nexon passport generator. I can probably make that
    BTW Purple what do u mean by a rez tool?

  6. #6
    Jarppi's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    مص مقيت والدتي دي
    Posts
    6,088
    Reputation
    173
    Thanks
    1,503
    My Mood
    Worried
    Quote Originally Posted by bombsaway707 View Post
    I see haha
    -DLL Injector
    -Memory Editor
    -Mini Chams
    -Nexon Passport Generator
    *all the in one, sexy themed and theme color choice (purple)
    Dll Injector, i have one out, guess i could update it. Memory Editor, ermm yah that will be difficult haha. Mini-Chams, i think i could do that. Nexon passport generator. I can probably make that
    BTW Purple what do u mean by a rez tool?
    like, wps released a mod-o-matic, like an, injector, xtractor, converter, dtx viewer and when you choose a .dtx or ltb, it auto-find the folder, and much more, you rock, you'll do more

    your my 100th thx, WOO HOO, PARTY!!!!!

  7. #7
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by purple View Post


    like, wps released a mod-o-matic, like an, injector, xtractor, converter, dtx viewer and when you choose a .dtx or ltb, it auto-find the folder, and much more, you rock, you'll do more
    Hmm i can do the mod o matic and injecter not sure what the others are haha im not really a mod guy :/

  8. #8
    privatebomley's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    1 Microsoft Way, Redmond, WA‎
    Posts
    317
    Reputation
    10
    Thanks
    100
    My Mood
    Cool
    An autoclicker?

    (Mine)
    Code:
    Public Class Autoclicker
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
        Private Declare Sub mouse_event Lib "user32" (ByVal dwflags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, ByVal dwExtraInfo As Long)
            Private Const mouseclickup = 4
            Private Const mouseclickdown = 2
            Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Timer1.Interval = TextBox1.Text
            Timer1.Start()
            End Sub
    
            Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
                Timer1.Stop()
            End Sub
    
            Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
                mouse_event(mouseclickdown, 0, 0, 0, 0)
                mouse_event(mouseclickup, 0, 0, 0, 0)
            End Sub
    
            Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
                Me.Close()
            End Sub
            Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
            End Sub
    
            Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
                Timer2.Enabled = True
                Timer2.Interval = 1
                Dim Alt As Boolean
                Dim Z As Boolean
                Alt = GetAsyncKeyState(Keys.Menu)
                Z = GetAsyncKeyState(Keys.Z)
                If Alt And Z = True Then
                    Call Button1_Click(Button1, e)
                End If
                Dim X As Boolean
                Alt = GetAsyncKeyState(Keys.Menu)
                X = GetAsyncKeyState(Keys.X)
                If Alt And X = True Then
                    Call Button2_Click(Button2, e)
                End If
        End Sub
        Private Overloads Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
            Dim isKey As Boolean = Char.IsDigit(e.KeyChar)
            Dim isDecimal As Boolean = e.KeyChar.ToString = "."
            If Not isKey And Not isDecimal Then
                e.Handled = True
            End If
        End Sub
    End Class
    Oh yeah, can you improve on it somehow? VB code analysis says it's messy.

    Warning 1 CA1060 : Microsoft.Design : Because it is a P/Invoke method, 'Autoclicker.GetAsyncKeyState(Long)' should be defined in a class named NativeMethods, SafeNativeMethods, or UnsafeNativeMethods. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 2 Multitool

    Warning 6 CA1060 : Microsoft.Design : Because it is a P/Invoke method, 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' should be defined in a class named NativeMethods, SafeNativeMethods, or UnsafeNativeMethods. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 13 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'cbuttons' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 14 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'cbuttons' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 15 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dwExtraInfo' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 7 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dwflags' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 8 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dwflags' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 9 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dx' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 10 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dx' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 11 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dy' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 12 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'dy' of P/Invoke 'Autoclicker.mouse_event(Long, Long, Long, Long, Long)' will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 3 Multitool

    Warning 2 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'vkey' of P/Invoke 'Autoclicker.GetAsyncKeyState(Long)' will be 8 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 2 Multitool

    Warning 3 CA1901 : Microsoft.Portability : As it is declared in your code, parameter 'vkey' of P/Invoke 'Autoclicker.GetAsyncKeyState(Long)' will be 8 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 4 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Long'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 2 Multitool

    Warning 4 CA1901 : Microsoft.Portability : As it is declared in your code, the return type of P/Invoke 'Autoclicker.GetAsyncKeyState(Long)' will be 4 bytes wide on 32-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 2 bytes wide on 32-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Integer'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 2 Multitool

    Warning 5 CA1901 : Microsoft.Portability : As it is declared in your code, the return type of P/Invoke 'Autoclicker.GetAsyncKeyState(Long)' will be 4 bytes wide on 64-bit platforms. This is not correct, as the actual native declaration of this API indicates it should be 2 bytes wide on 64-bit platforms. Consult the MSDN Platform SDK documentation for help determining what data type should be used instead of 'Integer'. C:\Users\spy\documents\visual studio 2010\Projects\Multitool\Multitool\Autoclicker.vb 2 Multitool
    Last edited by privatebomley; 04-28-2010 at 09:48 PM.
    Descartes: "I think, therefore I am."

  9. #9
    AnonTyler's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    533
    Reputation
    0
    Thanks
    23
    My Mood
    Blah
    If you need an autoclicker just use garyshood, back from the ol' runescape days.

    I'll upload if you want.

  10. #10
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    GAY GAY GAY GAY AND GAY!

    VB can't do RezInject.. that was coded in C#.. an AutoClicker is too easy, nametags = R:150, B:0, G:0, HEX: 0x960000...

    something like my snipers delight would be good to see tho.. somebody posted one made in VB but it failed, couldn't move the window or even see half of it.

    Mod'O'Matic is also too easy, just a file mover for .rez/dtx/ltb.. i need to update that and make it more efficient. File Duplicator might be a little bit of a challenge for you in VB tho.

    KDR Calculator would be WAY too easy.. kills divided by deaths.. the math for calculating a desired KDR would be the difficult part.. i got my old script somewhere for it.. i can give you the math if you want to set up a nice GUI with some other options on it.

    Windowed mode is only available for .dll hacks.. it has to be programmed directly into the running of the game, you already know about GMOption being patched.

    shox asked me about a 360 bot.. which sounds like an awesome idea, but i haven't been able to do it properly. if you mark a variable as the starting position for recording, and one for the stopping position, if stop > start they moved the mouse to the right, if start > stop they moved the mouse left.. however when you complete a 360 to the exact mark your start and stop positions are the same. so you have to record each X coord the mouse crosses over, and do subtraction for > or < to see how far in pixels the mouse was moved, and even if you successfully complete all that bullshit, you still have MOUSE SENSITIVITY TO CALCULATE!!!!!!!!

    an idea for you to do thats original however.. NO FUCKING CLUE!! i've made 3 threads like this before and the 360 bot is the only thing i came across that seemed doable and unique.
    Want to see my programs?
    \/ CLICK IT BITCHES \/

  11. #11
    CRUSTY's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    ._.
    Posts
    8,015
    Reputation
    161
    Thanks
    497
    My Mood
    Pensive
    How about a recoil reducer that moves the mouse down 5-10 pixels every set amount of time when you hold down the mouse button?

  12. #12
    Jarppi's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    مص مقيت والدتي دي
    Posts
    6,088
    Reputation
    173
    Thanks
    1,503
    My Mood
    Worried
    Quote Originally Posted by WarPathSin View Post
    GAY GAY GAY GAY AND GAY!

    VB can't do RezInject.. that was coded in C#.. an AutoClicker is too easy, nametags = R:150, B:0, G:0, HEX: 0x960000...

    something like my snipers delight would be good to see tho.. somebody posted one made in VB but it failed, couldn't move the window or even see half of it.

    Mod'O'Matic is also too easy, just a file mover for .rez/dtx/ltb.. i need to update that and make it more efficient. File Duplicator might be a little bit of a challenge for you in VB tho.

    KDR Calculator would be WAY too easy.. kills divided by deaths.. the math for calculating a desired KDR would be the difficult part.. i got my old script somewhere for it.. i can give you the math if you want to set up a nice GUI with some other options on it.

    Windowed mode is only available for .dll hacks.. it has to be programmed directly into the running of the game, you already know about GMOption being patched.

    shox asked me about a 360 bot.. which sounds like an awesome idea, but i haven't been able to do it properly. if you mark a variable as the starting position for recording, and one for the stopping position, if stop > start they moved the mouse to the right, if start > stop they moved the mouse left.. however when you complete a 360 to the exact mark your start and stop positions are the same. so you have to record each X coord the mouse crosses over, and do subtraction for > or < to see how far in pixels the mouse was moved, and even if you successfully complete all that bullshit, you still have MOUSE SENSITIVITY TO CALCULATE!!!!!!!!

    an idea for you to do thats original however.. NO FUCKING CLUE!! i've made 3 threads like this before and the 360 bot is the only thing i came across that seemed doable and unique.
    whats your point of flamming me??

  13. #13
    Synchromanica's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    The internet.
    Posts
    5,126
    Reputation
    152
    Thanks
    615
    My Mood
    Grumpy
    An auto clicker that denies Invites...

  14. #14
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    Quote Originally Posted by purple View Post


    whats your point of flamming me??
    i wasn't flaming.. you didnt think i meant you were gay did you? i was just releasing my frustration in having the same problems as bombs.. i ran out of ideas a long time ago LMAO
    Want to see my programs?
    \/ CLICK IT BITCHES \/

  15. #15
    CRUSTY's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    ._.
    Posts
    8,015
    Reputation
    161
    Thanks
    497
    My Mood
    Pensive
    Quote Originally Posted by Dreamer View Post
    An auto clicker that denies Invites...
    Turn off invitations?

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [Request] Program Ideas?
    By thatnewguy in forum Visual Basic Programming
    Replies: 13
    Last Post: 10-24-2011, 12:48 PM
  2. [Discussion] Program ideas?
    By D e a t h h a u n t S in forum Visual Basic Programming
    Replies: 15
    Last Post: 06-19-2011, 01:02 PM
  3. [Idea][Discussion] Programming Challenges.
    By Jason in forum Coders Lounge
    Replies: 67
    Last Post: 02-13-2011, 09:57 PM
  4. Program Ideas?
    By Web-Designer in forum General
    Replies: 15
    Last Post: 01-02-2011, 02:41 AM
  5. Program Idea
    By CainFool in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 13
    Last Post: 11-13-2010, 07:49 AM