Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive

    [HELP] Spammer with hotkey

    How to make a spammer with hotkey that works in-game.. id like to get the code of WithoutWings Spammer ?

    how to make a hotkey like that ? will be on when key is hold and will be off when you are not holding the key..

    Please help me!!

    Thanks in Advance

  2. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    This question has been asked 4987416589487916546894896065489651896548961 ^4896548918654653156346548949848961986189654189619 84 times now.

    Use the searchfunction.

    /request close

    Wings spammer is using SendKeys and GetAsyncKeyState.



  3. The Following User Says Thank You to Blubb1337 For This Useful Post:

    AceKill3r (02-18-2011)

  4. #3
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    Nope.. i think my post is diff. from others.. cause if this the same with other post i will nevr never post again.. i just want to know.. if you don't want to answer then ok..

    I only know about spammer is :

    Sendkeys.send and this doesn't work in game... unlike WithoutWingz it works

    Quote Originally Posted by Blubb1337 View Post
    This question has been asked 4987416589487916546894896065489651896548961 ^4896548918654653156346548949848961986189654189619 84 times now.

    Use the searchfunction.

    /request close

    Wings spammer is using SendKeys and GetAsyncKeyState.
    i use the GetAsyncKeyState but doesn't work...

    and also the SendKeys.Send

    Please Don't close my thread..

    /request for thread to be open until this become solved

  5. #4
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by blackgaming View Post
    Nope.. i think my post is diff. from others.. cause if this the same with other post i will nevr never post again.. i just want to know.. if you don't want to answer then ok..

    I only know about spammer is :

    Sendkeys.send and this doesn't work in game... unlike WithoutWingz it works



    i use the GetAsyncKeyState but doesn't work...

    and also the SendKeys.Send

    Please Don't close my thread..

    /request for thread to be open until this become solved
    1. Wings spammer IS using Sendkeys.Send.

    [highlight="vb"]Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)
    If (Form1.GetAsyncKeyState(&H75) > 0) Then
    SendKeys.Send("t")
    SendKeys.Send(Me.TextBox.Text)
    SendKeys.Send("{Enter}")
    End If
    End Sub


    [/highlight]

    Code looks weird due to .Net Reflector.

    2. Your GetAsyncKeyState declaration is wrong.

    [highlight="vb"]Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Int32) As Int16[/highlight]

    [highlight="vb"]If GetAsyncKeyState(Keys.X) Then
    'do something
    End If[/highlight]



  6. The Following 2 Users Say Thank You to Blubb1337 For This Useful Post:

    leoisso (02-20-2011),mizzer3 (02-18-2011)

  7. #5
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As EventArgs)
    If (Form1.GetAsyncKeyState(&H75) > 0) Then
    SendKeys.Send("t")
    SendKeys.Send(Me.TextBox.Text)
    SendKeys.Send("{Enter}")
    End If
    End Sub
    Can you explain me or Explain how can i make my own hotkey?????

    Can't Understand your Code for short
    Last edited by blackgaming; 02-18-2011 at 03:16 AM.

  8. #6
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by blackgaming View Post
    Can you explain me or Explain how can i make my own hotkey?????

    Can't Understand your Code for short
    Add the declaration below...

    On your timer's tick...you write the code I also posted below.

    Before attempt at making such programs, you should atleast know the VERY VERY basics....Or watch a tutorial



  9. #7
    AceKill3r's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    181
    Reputation
    22
    Thanks
    39
    My Mood
    Aggressive
    Quote Originally Posted by blackgaming View Post
    Can you explain me or Explain how can i make my own hotkey?????

    Can't Understand your Code for short
    Add a timer: double click the timer & add the code..

    the 2nd part of the code you c+ped put that below Public Class Form1

    pretty self explanatory, IF you knew what visual basic was - no offence

  10. #8
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    Quote Originally Posted by AceKill3r View Post
    Add a timer: double click the timer & add the code..

    the 2nd part of the code you c+ped put that below Public Class Form1

    pretty self explanatory, IF you knew what visual basic was - no offence
    can you reedit your code cause i don't know what hotkey i'll press after i debug..

  11. #9
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by blackgaming View Post
    can you reedit your code cause i don't know what hotkey i'll press after i debug..
    If you aren't willing to learn and just want to C&P then GTFO.



  12. The Following User Says Thank You to Blubb1337 For This Useful Post:

    AceKill3r (02-18-2011)

  13. #10
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    Public Class Form1
    Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Int32) As Int16
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Timer1.Start()
    Timer1.Enabled = True
    End Sub

    Private Sub Timer1_Tick_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    If GetAsyncKeyState(Keys.F8) Then
    SendKeys.Send("t")
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{Enter}")
    End If
    End Sub
    End Class
    I Try this Code but i say to you THIS DOESN'T Work!!

    WW's Spammer if minimize hotkey will still works..

    but this code when minimize this product doesn't work please... HELP!!

  14. #11
    AceKill3r's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    181
    Reputation
    22
    Thanks
    39
    My Mood
    Aggressive
    Quote Originally Posted by blackgaming View Post
    I Try this Code but i say to you THIS DOESN'T Work!!

    WW's Spammer if minimize hotkey will still works..

    but this code when minimize this product doesn't work please... HELP!!
    [YOUTUBE]faKy_vH3grk[/YOUTUBE]

    Watch that.

  15. #12
    blackgaming's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    Not Working.. ehh

  16. #13
    AceKill3r's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    181
    Reputation
    22
    Thanks
    39
    My Mood
    Aggressive
    Your not doing something correct than!

    What is your exact code?

  17. #14
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    OMG! Go youtube ! Do something!

    Already answerd but you cant understand omg! Maybe you dont programm O.O

  18. #15
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    As Kevin said, the simple answer to this question would be to simply take the time to understand how the code is working, then you might understand why it's not working for you. I'm tempted to close this thread on the grounds that this EXACT question has been asked like 5000^21421531513236 times

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

Page 1 of 2 12 LastLast