Thread: Spammer

Results 1 to 12 of 12
  1. #1
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking

    Spammer

    Do you guyz know how to put a spammer in your hack source? without typing ENTER like they do with free vip for like a day,
    Does it use the same sorta thing as vb like sendkeys?

  2. #2
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive
    bind x "say This Hack was made by Cristyboy"
    now if you press "x" a msg with "This Hack was made by Cristyboy" appears, but i still have to figure out how it works with PTC ... but this is able to do with PTC^^

  3. #3
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    find the chat ptc the 1 when you press enter.
    but how do i constantly keep saying it like theres no timers for c++
    Last edited by wassup40; 08-11-2010 at 08:10 PM.

  4. #4
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    didnt i post it here?:
    keybd_event('A',0,0,0); //for letter typing.
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  5. #5
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by pspiso View Post
    didnt i post it here?:
    keybd_event('A',0,0,0); //for letter typing.
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    That doesnt work in game
    -Rest in peace leechers-

    Your PM box is 100% full.

  6. #6
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by Zoom View Post


    That doesnt work in game
    yeah it does, but not hwith that combination

    keybd_event(VK_RETURN)
    Sleep(100)//important cause th chatbox need few miliseconds to "chat"
    keybd_event(VK_AL_YOUR_LETTERS)
    keybd_event(VK_RETURN)

  7. #7
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    i know it works i have it my own hack :3
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  8. #8
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Never worked for me/, guess I have to change the sleep to 150 or something.
    -Rest in peace leechers-

    Your PM box is 100% full.

  9. #9
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    [php]void Spammer(void){
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    Sleep(1000);//important cause th chatbox need few miliseconds to "chat"
    keybd_event('L',0,0,0); //for letter typing.
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    }[/php]

    Calling it. (Using Gellins base as an example.)
    [php]if( Menu.mOpt[1].nopt > 0 )
    Spammer();[/php]

  10. #10
    IcySeal's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    300
    Reputation
    34
    Thanks
    148
    My Mood
    Amused
    Quote Originally Posted by UnknownCoder View Post
    [php]void Spammer(void){
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    Sleep(1000);//important cause th chatbox need few miliseconds to "chat"
    keybd_event('L',0,0,0); //for letter typing.
    keybd_event(VK_RETURN,0,0,0); //for key press like enter/space.
    }[/php]

    Calling it. (Using Gellins base as an example.)
    [php]if( Menu.mOpt[1].nopt > 0 )
    Spammer();[/php]
    I am fairly sure that keybd_event does not work with combat arms, much in the same way with the mouse as well.

  11. #11
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    I just tested. Worked.

  12. #12
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    ofcourse it will :3 i added it to my hack when i released it it didnt press enter at the end because yeah, it said which hack it was and the creator + site
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

Similar Threads

  1. MSN Spammer
    By Skurdz in forum Spammers Corner
    Replies: 37
    Last Post: 03-17-2009, 01:56 PM
  2. Spammers Beware
    By A7X Oblivian in forum Spammers Corner
    Replies: 24
    Last Post: 12-11-2006, 05:21 PM
  3. WHOOH thread #1000 in the spammers corner
    By ace76543 in forum Spammers Corner
    Replies: 5
    Last Post: 12-11-2006, 05:00 PM
  4. Attn Spammers
    By EleMentX in forum General
    Replies: 14
    Last Post: 06-15-2006, 08:46 AM
  5. Two Biggest Spammers on the forums!
    By Dave84311 in forum General
    Replies: 20
    Last Post: 01-02-2006, 08:39 AM