Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    [S]tAr[S]tRuC[k]'s Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    With Dave of course.
    Posts
    204
    Reputation
    10
    Thanks
    19
    My Mood
    Worried

    Auto typer with farming.

    I just thought of something.What if we made an auto clicker with auto typer.There is usually a button you press to activate the typer right?So say it's f11 as the hotkey.And you w+s to type.So press f11 and it would keep pressing w+s in cf and you could pick up gun's and not even be playing..The auto clicker would let it shoot.What do you guy's think?

  2. #2
    Derail's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    Hm,let me see.....
    Posts
    5,262
    Reputation
    360
    Thanks
    1,125
    My Mood
    Sleepy
    kinda weird how u explain it,how bout some plain english ^^

  3. #3
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    thats English?

  4. #4
    kvll's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    hello
    Posts
    3,835
    Reputation
    104
    Thanks
    365
    My Mood
    Amazed
    that's a fail
    DONATOR! PL0X?

  5. #5
    Streetplayer's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    1,662
    Reputation
    10
    Thanks
    316
    My Mood
    Psychedelic
    HaHa
    nobody understand wat you say

    I HELPED YOU...PRESS THANKS





  6. #6
    Lycanth's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    New York City
    Posts
    3,501
    Reputation
    37
    Thanks
    267
    My Mood
    Breezy
    Anyway i think every1 know what he is talking about, quite good idea

  7. #7
    MvRouC12's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Stalking Choobs
    Posts
    1,690
    Reputation
    13
    Thanks
    246
    My Mood
    Amused
    I think i understand what he is saying.

    I think he is saying -

    What if we made a auto clicker / typer

    So that if you press f11 it will do both auto click and type?

    If understand you right that wouldn't be hard...

    Here is the code if ya wanna try to make one.

    Put this under Private Class __________

    Example: Private Class Form1

    Code:
        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
    Timer1

    Code:
    Dim hotkey1 as boolean
    hotkey1 = GetAsyncKeyState(Keys.F11)
    if hotkey1 = true then
    timer2.start()
    end if
    dim hotkey2 as boolean
    hotkey2 = GetAsyncKeyState(Keys.F12)
    if hotkey2 = true then
    timer2.stop()
    end if
    Timer2

    Code:
    timer2.enabled = true
    timer2.interval = 150
    sendkeys.send(mouseclickdown)
    sendkeys.send(mouseclickup)
    sendkeys.send("{enter}")
    sendkeys.send("this is your spam text")
    sendkeys.send("{enter}")
    sendkeys.send("wwwwwwwwwwwwwwwwsssssssssssssssssssssss")

    This code basically just makes you click then spams then walks forward the backwards.

    Simple.
    Last edited by MvRouC12; 04-25-2010 at 01:52 PM.

    [IMG]https://i986.photobucke*****m/albums/ae345/TripleSixPf/Okami-MvRouC12.jpg[/IMG]
    Quote Originally Posted by m_t_h View Post


    By stop playing AVA untill brasilian server comes.

    Do you guys really need to ruin EVERY game?
    [IMG]https://i175.photobucke*****m/albums/w148/Guitarman1157/dontforget.gif[/IMG]

  8. #8
    flashkid33's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    look behind you!
    Posts
    203
    Reputation
    10
    Thanks
    17
    My Mood
    Cold
    if im the only one that understand i will tell you: He want someone to do a Aotu clicker that press w+s all time, and that pretty good idea accualy, would be very usefull ;p , i cant but someone maybe can
    YabberNaab* The best clan ever! Click Here!

    [img]https://www.danasof*****m/sig/121732.jpg[/img]


  9. #9
    HolySinX's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Localhost
    Posts
    307
    Reputation
    13
    Thanks
    146
    My Mood
    Fine
    Quote Originally Posted by SSK.Darken View Post
    I think i understand what he is saying.

    I think he is saying -

    What if we made a auto clicker / typer

    So that if you press f11 it will do both auto click and type?

    If understand you right that wouldn't be hard...

    Here is the code if ya wanna try to make one.

    Put this under Private Class __________

    Example: Private Class Form1

    Code:
        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
    Timer1

    Code:
    Dim hotkey1 as boolean
    hotkey1 = GetAsyncKeyState(Keys.F11)
    if hotkey1 = true then
    timer2.start()
    end if
    dim hotkey2 as boolean
    hotkey2 = GetAsyncKeyState(Keys.F12)
    if hotkey2 = true then
    timer2.stop()
    end if
    Timer2

    Code:
    timer2.enabled = true
    timer2.interval = 150
    sendkeys.send(mouseclickdown)
    sendkeys.send(mouseclickup)
    sendkeys.send("{enter}")
    sendkeys.send("this is your spam text")
    sendkeys.send("{enter}")
    sendkeys.send("wwwwwwwwwwwwwwwwsssssssssssssssssssssss")

    This code basically just makes you click then spams then walks forward the backwards.

    Simple.
    You're pro, lmao. Even adding code snippets to a post. Ever thought of switching to C#?

  10. #10
    HowHate's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Under the rock
    Posts
    1,342
    Reputation
    11
    Thanks
    234
    My Mood
    Angelic
    What Language?
    enjoy please


  11. #11
    woodz's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    i dunno, i can't remember
    Posts
    230
    Reputation
    11
    Thanks
    93
    My Mood
    Sleepy
    tried it, need something for x-trap and stuff
    epic dubstep mix



    Quote Originally Posted by Woods View Post
    woodz, u should be my junior

  12. #12
    MvRouC12's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Stalking Choobs
    Posts
    1,690
    Reputation
    13
    Thanks
    246
    My Mood
    Amused
    Quote Originally Posted by HolySinX View Post


    You're pro, lmao. Even adding code snippets to a post. Ever thought of switching to C#?
    Ive thought about it... i was actually looking at the layout of C# the other day...

    I taught myself Vb so why not teach myself C#. lol...

    [IMG]https://i986.photobucke*****m/albums/ae345/TripleSixPf/Okami-MvRouC12.jpg[/IMG]
    Quote Originally Posted by m_t_h View Post


    By stop playing AVA untill brasilian server comes.

    Do you guys really need to ruin EVERY game?
    [IMG]https://i175.photobucke*****m/albums/w148/Guitarman1157/dontforget.gif[/IMG]

  13. #13
    blacksaber's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    FL
    Posts
    1,685
    Reputation
    12
    Thanks
    356
    My Mood
    Dead
    Wrong section, keep in mind the CF Hacks section is for Hack/file releases ONLY. Moved to CF General.
    Thanks for the sig Ryan

    Gifts:
    Frostythesnowman
    EPK

  14. #14
    vibrat0r's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy
    Quote Originally Posted by SSK.Darken View Post
    I think i understand what he is saying.

    I think he is saying -

    What if we made a auto clicker / typer

    So that if you press f11 it will do both auto click and type?

    If understand you right that wouldn't be hard...

    Here is the code if ya wanna try to make one.

    Put this under Private Class __________

    Example: Private Class Form1

    Code:
        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
    Timer1

    Code:
    Dim hotkey1 as boolean
    hotkey1 = GetAsyncKeyState(Keys.F11)
    if hotkey1 = true then
    timer2.start()
    end if
    dim hotkey2 as boolean
    hotkey2 = GetAsyncKeyState(Keys.F12)
    if hotkey2 = true then
    timer2.stop()
    end if
    Timer2

    Code:
    timer2.enabled = true
    timer2.interval = 150
    sendkeys.send(mouseclickdown)
    sendkeys.send(mouseclickup)
    sendkeys.send("{enter}")
    sendkeys.send("this is your spam text")
    sendkeys.send("{enter}")
    sendkeys.send("wwwwwwwwwwwwwwwwsssssssssssssssssssssss")

    This code basically just makes you click then spams then walks forward the backwards.

    Simple.
    umms yu need buttns or no buttons and can yu add a code to make it go off by another hotkey?

  15. #15
    I got ants in my butt, and I needs to strut.
    Premium Seller
    Former Staff
    Premium Member
    Trusted
    Wyo's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Guadalajara
    Posts
    24,113
    Reputation
    4354
    Thanks
    4,203
    My Mood
    Lurking
    , idk dude

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] All-In-One Auto Typer, Spammer, Macro (Lobby & In Game) WITH HOTKEYS
    By dadirty in forum Combat Arms Discussions
    Replies: 15
    Last Post: 09-11-2009, 03:21 AM
  2. [TUT] How to make an auto typer
    By SkyReborn in forum Visual Basic Programming
    Replies: 5
    Last Post: 09-06-2009, 11:26 PM
  3. [RELEASE] Donh's Spammer V3 (auto-typer, Spambot) *WITH ANTIMUTE*
    By donh in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-11-2009, 11:27 AM
  4. [RELEASE] Donh's Spammer V2 (Spambot, Auto-typer) WITH HOTKEY!!
    By donh in forum WarRock - International Hacks
    Replies: 27
    Last Post: 06-11-2009, 08:28 AM
  5. Donh's Spammer (spambot, auto-typer)
    By donh in forum WarRock - International Hacks
    Replies: 22
    Last Post: 06-08-2009, 11:33 AM