Ragazzi siccome in questo pc non ho programmi e non ne posso scaricare, chiedevo se mi potete creare un flooder con i tasti f1 f2 f3 f4 f5 f6 che sia più veloce possibile..
Oppure se potete farlo con questo codice:
Grazie in anticipo
Oppure se potete farlo con questo codice:
#include <GUIConstants.au3>
#include <GuiEdit.au3>
#include <Misc.au3>
#include <GuiButton.au3>
#NoTrayIcon
$gui1=GUICreate ("Serial Flooder",460,180)
GUISetState (@SW_SHOW)
GuiSetBkColor(0x4666)
$inp1=GuiCtrlCreateInput("Testo da floodare con F3",10,120,200,20)
$inp2=GuiCtrlCreateInput("Testo da floodare con F2",10,90,200,20)
$inp3=GuiCtrlCreateInput("Testo da floodare con F1",10,60,200,20)
$inp4=GuiCtrlCreateInput("Testo da floodare con F4",245,60,200,20)
$inp5=GuiCtrlCreateInput("Testo da floodare con F5",245,90,200,20)
$inp6=GuiCtrlCreateInput("Testo da floodare con F6",245,120,200,20)
$Label2=GuiCtrlCreateLabel(" Serial",100,10,180,40)
GUICtrlSetFont(-1, 15, 800, 2, "Verdana")
$Label3=GuiCtrlCreateLabel("Flooder",200,10,180,40 )
GUICtrlSetFont(-1, 15, 800, 2, "Verdana")
While 1
$dll=DllOpen("user32.dll")
$inpt1=GUICtrlRead($inp1)
$inpt2=GUICtrlRead($inp2)
$inpt3=GUICtrlRead($inp3)
$inpt4=GUICtrlRead($inp4)
$inpt5=GUICtrlRead($inp5)
$inpt6=GUICtrlRead($inp6)
$F1=70
$F2=71
$F3=72
$F4=73
$F5=74
$F6=75
$F7=76
$F8=77
$gui=GuiGetMsg ()
Switch $gui
Case $GUI_EVENT_CLOSE
GUISwitch ($gui1)
ExitLoop
EndSwitch
If _IsPressed ($F1,$dll) Then
Send ($inpt3)
EndIf
If _IsPressed ($F2,$dll) Then
Send ($inpt2)
EndIf
If _IsPressed ($F3,$dll) Then
Send ($inpt1)
EndIf
If _IsPressed ($F4,$dll) Then
Send ($inpt4)
EndIf
If _IsPressed ($F5,$dll) Then
Send ($inpt5)
EndIf
If _IsPressed ($F6,$dll) Then
Send ($inpt6)
EndIf
WEnd
Grazie in anticipo