[HELP] Spammer with hotkey

Posts 115 of 27 · Page 1 of 2
[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
This question has been asked 4987416589487916546894896065489651896548961 ^4896548918654653156346548949848961986189654189619 84 times now.

Use the searchfunction.

/request close

Wings spammer is using SendKeys and GetAsyncKeyState.
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
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]
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
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
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
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..
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.
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!!
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!!


Watch that.
Your not doing something correct than!

What is your exact code?
OMG! Go youtube ! Do something!

Already answerd but you cant understand omg! Maybe you dont programm O.O
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
Posts 115 of 27 · Page 1 of 2
This thread is closed for replies.

Tags for this Thread

None

Need help?