ItsMods

Full Version: rapid key sender like rapid fire
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

guys i need your helps:

This is a script for rapid fire (send mouse left button key successively)

Code:
f1::Suspend
;Script

~$*LButton::
{
Loop
{
SetMouseDelay 5
MouseClick, Left
Sleep, 10
If (GetKeyState("LButton","P")=0)
{
Break
Return
}
}
}


But i need a script like that so when i push Mouse 5 (my hot key) the key F scented successive just like rapid fire script.


Thank you.
guys really is there is no answer to my question?!
(07-20-2012, 18:36)raminr63 Wrote: [ -> ]guys really is there is no answer to my question?!

I think nobody really understands your question.
(07-20-2012, 19:38)surtek Wrote: [ -> ]
(07-20-2012, 18:36)raminr63 Wrote: [ -> ]guys really is there is no answer to my question?!

I think nobody really understands your question.

he talks about AHK-AutoHotKey scripting
(07-20-2012, 20:00)kokole Wrote: [ -> ]
(07-20-2012, 19:38)surtek Wrote: [ -> ]
(07-20-2012, 18:36)raminr63 Wrote: [ -> ]guys really is there is no answer to my question?!

I think nobody really understands your question.

he talks about AHK-AutoHotKey scripting

Thank you and yes
what do u need help with?
"This is a script for rapid fire (send mouse left button key successively)"
He wants to make a rapid fire trigger.. but for PC.
guys i think i cant explain my means.


i want a rapid key sender script that work with AHK and for example when i press the right button of mouse that script send key "F" rapidly just it.
Code:
Loop{
  If (GetKeyState("LButton","P") = 0)
     Break
    MouseClick, left,,, 1, 0, D
    Sleep, 10
    MouseClick, left,,, 1, 0, U
  }
  Return
Try this Wink