AutoHotkey Community

It is currently May 27th, 2012, 10:31 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: RECOIL!!!!
PostPosted: October 20th, 2007, 11:29 pm 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
ok i have just finished making my recoil script(updated) it is near 100% customizeable and in my opinion is probably the best on this site the hotkeys and values of what the hotkeys do are customizeable to your tastes (using the settings.ini)
includes
9 preset anti recoil speeds(customizeable)
2 preset loop speeds for autoclicker (customizeable)
customizable buttons
finetuner 0.2 pixel
and other stuff but i cant be botherd to list it, its all in the readme.txt

heres the link
EDIT new link
http://files.filefront.com/Recoil+Compe ... einfo.html


Last edited by mr.miagi on October 21st, 2007, 10:14 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 21st, 2007, 2:43 am 
Offline

Joined: September 23rd, 2007, 4:16 pm
Posts: 140
Hmm, what is being recoiled and why do I want to recoil it?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 21st, 2007, 9:43 am 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
:) its an antirecoil and its for gamers :P


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Recoil ?
PostPosted: June 16th, 2008, 6:35 am 
Does this have something to do with the Game Elements Recoil Controller ?

I've been trying to get the thing to work with Super Mario Fusion, and I think I need to change the keys manually using AutoHotKey, because
the built in key setup does not work for that game.

Is that what this script does ? ... or does it just turn off its feature
because it interferes with something ?

Or does this have to do with some other kind of "Recoil" ? ..

Please explain what this is.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 25th, 2008, 2:35 am 
Offline

Joined: July 20th, 2008, 5:15 am
Posts: 1
Shows up as a virus.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 7th, 2008, 6:07 pm 
Hellow !

It is for BF2 ?

I have a lot of problems with my PC, can you give me the script please ? :D


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 17th, 2008, 9:46 am 
Can I have the scipt hear please ?


Report this post
Top
  
Reply with quote  
 Post subject: virus take care
PostPosted: December 22nd, 2008, 2:56 pm 
Yep some smart guy with those macro antirecoil tools trying to equip you with spyware or even.............


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: December 31st, 2008, 4:18 am 
Offline

Joined: December 31st, 2008, 3:18 am
Posts: 2
DosX wrote:
Shows up as a virus.


LOL.
Somebody is a bit alone (mr.miagi)... why would you put a virus in an antirecoil script man... thats like... bad and sad at the same time *sigh


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: December 31st, 2008, 3:17 pm 
It contains a virus! 100 percent!

Here´s the sourcecode. I´ve got it from a decompiler!
Code:
; <COMPILER: v1.0.47.4>
msgbox recoil compensator loaded, press ctrl+shift+esc to quit
autoc = 5
recoil = 0

IniFile = %A_ScriptDir%\settings.ini
IfNotExist, %IniFile%
{
   MsgBox settings.ini not found. Program will exit
   ExitApp
}
iniread, key0, settings.ini, keys, key0
iniread, key1, settings.ini, keys, key1
iniread, key2, settings.ini, keys, key2
iniread, key3, settings.ini, keys, key3
iniread, key4, settings.ini, keys, key4
iniread, key5, settings.ini, keys, key5
iniread, key6, settings.ini, keys, key6
iniread, key7, settings.ini, keys, key7
iniread, key8, settings.ini, keys, key8
iniread, key9, settings.ini, keys, key9
iniread, rck, settings.ini, keys, rapidclick
iniread, pps, settings.ini, keys, presetpxls
iniread, minusr, settings.ini, keys, minusrecoil
iniread, plusr, settings.ini, keys, plusrecoil
iniread, minusspd, settings.ini, keys, minusspeed
iniread, plusspd, settings.ini, keys, plusspeed
iniread, fintunminus, settings.ini, keys, finetuneminus
iniread, fintunplus, settings.ini, keys, finetuneplus
iniread, px1, settings.ini, pixelmov, px1
iniread, px2, settings.ini, pixelmov, px2
iniread, px3, settings.ini, pixelmov, px3
iniread, px4, settings.ini, pixelmov, px4
iniread, px5, settings.ini, pixelmov, px5
iniread, px6, settings.ini, pixelmov, px6
iniread, px7, settings.ini, pixelmov, px7
iniread, px8, settings.ini, pixelmov, px8
iniread, px9, settings.ini, pixelmov, px9
iniread, spd1, settings.ini, speed, spd1
iniread, spd2, settings.ini, speed, spd2
iniread, finetuneminus, settings.ini, pixelmov, finetune-
iniread, finetuneplus, settings.ini, pixelmov, finetune+
iniread, presetspeed1, settings.ini, keys, presetspeed1
iniread, presetspeed2, settings.ini, keys, presetspeed2
Hotkey,%rck%,keyrckcommand
Hotkey,%pps%,keyppscommand
Hotkey,%minusr%,keyminusrcommand
Hotkey,%plusr%,keyplusrcommand
Hotkey,%minusspd%,keyminusspdcommand
Hotkey,%plusspd%,keyplusspdcommand
Hotkey,%fintunminus%,keyfintunminuscommand
Hotkey,%fintunplus%,keyfintunpluscommand

Hotkey, %Key0%, key0command, off
Hotkey, %Key1%, key1command, off
Hotkey, %Key2%, key2command, off
Hotkey, %Key3%, key3command, off
Hotkey, %Key4%, key4command, off
Hotkey, %Key5%, key5command, off
Hotkey, %Key6%, key6command, off
Hotkey, %Key7%, key7command, off
Hotkey, %Key8%, key8command, off
Hotkey, %Key9%, key9command, off
Hotkey, %presetspeed1%, keypresetspeed1command, off
Hotkey, %presetspeed2%, keypresetspeed2command, off

return

$^+Esc::
msgbox recoil compensator closed
   ExitApp
return
#SingleInstance ignore
#NoTrayIcon
#InstallMouseHook
MouseEvent(a_xpos, a_ypos)
{
   DllCall("mouse_event", uint,1, int,a_xpos, int,a_ypos, uint,0, int,0 )
}


keyminusrcommand:
recoil--
return


keyplusrcommand:
recoil++
return


keyfintunminuscommand:
recoil-=%finetuneminus%
return


keyfintunpluscommand:
recoil+=%finetuneplus%
return


keyminusspdcommand:
autoc-=5
return


keyplusspdcommand:
autoc+=5
return

keyrckcommand:
  Period := Period = 10 ? "OFF" : 10
   SetTimer slp, %Period%
Return

slp:
loop
{
if (GetKeyState("LButton", "P") = 0)
break
{
MouseClick, left,,, 1, 0, D
Sleep, 15
MouseClick, left,,, 1, 0, U
sleep, %autoc%
MouseEvent(0, recoil)
}
}
return

keyppscommand:
Hotkey,%Key0%,key0command,on
Hotkey,%Key1%,key1command,on
Hotkey,%Key2%,key2command,on
Hotkey,%Key3%,key3command,on
Hotkey,%Key4%,key4command,on
Hotkey,%Key5%,key5command,on
Hotkey,%Key6%,key6command,on
Hotkey,%Key7%,key7command,on
Hotkey,%Key8%,key8command,on
Hotkey,%Key9%,key9command,on
Hotkey,%presetspeed1%,keypresetspeed1command,on
Hotkey,%presetspeed2%,keypresetspeed2command,on
return

key0command:
recoil = 0
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key1command:
recoil = %px1%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key2command:
recoil = %px2%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key3command:
recoil = %px3%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key4command:
recoil = %px4%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key5command:
recoil = %px5%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key6command:
recoil = %px6%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key7command:
recoil = %px7%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key8command:
recoil = %px8%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key9command:
recoil = %px9%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

keypresetspeed1command:
autoc = %spd1%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

keypresetspeed2command:
autoc = %spd2%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return






$~LButton::
loop
{
getkeystate, lbuttonstate, lbutton, p
if lbuttonstate = U
break
MouseEvent(0, recoil)
sleep 20
}
return

^+!Z::
msgbox The Recoil Compensation pixel amount is %recoil% and the RapidClick speed is %autoc%




Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 9th, 2009, 5:15 pm 
could anyone put this into a simple download?


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 25th, 2009, 10:08 am 
Offline

Joined: March 20th, 2009, 8:09 pm
Posts: 11
okay i need some help here

i modified the code and made it simpler. now what i have is one hotkey to turn rapidfire on and antirecoil off(for Pistol),
another hotkey to turn rapidfire off and antirecoil on(for Rifle), plus the toggle.

how would i make a 3rd hotkey to turn off both rapidfire and antirecoil off(for Grenades)?

my modified code looks like this
Code:
; <COMPILER: v1.0.47.4>
autoc = 5
recoil = 0

IniFile = %A_ScriptDir%\settings.ini
IfNotExist, %IniFile%
{
   MsgBox settings.ini not found. Program will exit
   ExitApp
}

iniread, rck, settings.ini, keys, rapidclick
iniread, rckon, settings.ini, keys, rapidclickon
iniread, rckoff, settings.ini, keys, rapidclickoff
Hotkey,%rck%,keyrckcommand
Hotkey,%rckon%,keyrckoncommand
Hotkey,%rckoff%,keyrckoffcommand
return

$^+Esc::
   ExitApp
return
#SingleInstance ignore
#InstallMouseHook
#InstallKeybdHook
MouseEvent(a_xpos, a_ypos)
{
   DllCall("mouse_event", uint,1, int,a_xpos, int,a_ypos, uint,0, int,0 )
}


keyrckcommand:
  Period := Period = 10 ? "OFF" : 10
   SetTimer slp, %Period%
Return

keyrckoncommand:
  Period := Period = 10
   SetTimer slp, %Period%
Return

keyrckoffcommand:
  Period := 10 ? "OFF" : 10
   SetTimer slp, %Period%
Return

slp:
loop
{
if (GetKeyState("LButton", "P") = 0)
break
{
MouseClick, left,,, 1, 0, D
Sleep, 15
MouseClick, left,,, 1, 0, U
sleep, %autoc%
}
}
return


$~LButton::
sleep 35
loop
{
getkeystate, lbuttonstate, lbutton, p
if lbuttonstate = U
break
MouseEvent(0, recoil)
sleep 20
}
return



thanks if anyone can help me out on this


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 28th, 2009, 4:01 am 
Offline

Joined: March 20th, 2009, 8:09 pm
Posts: 11
come on someone help me, i know there has got to be a way to do it. just have a look please?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 28th, 2009, 9:08 am 
Offline

Joined: February 11th, 2009, 2:23 pm
Posts: 142
Location: India
LazyCountry wrote:
come on someone help me, i know there has got to be a way to do it. just have a look please?


post your question hereand you'll sure get the answer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 1st, 2009, 9:37 pm 
Offline

Joined: December 9th, 2006, 6:38 pm
Posts: 42
ok this is just getting pathetic i have not been on this site for about a year now but to come back to this and find you accusing me of putting a virus in a anti recoil script... i don't even know how to get a virus lol let alone putting one in a petty script lol
the only reason i released it as a exe(compiled by ahk) is because i didn't want to be giving out the source code away but lucky for you i couldn't honestly care now so i will post it here for all of you to see and no there no viruses lol :lol:

Code:
msgbox recoil compensator loaded, press ctrl+shift+esc to quit
autoc = 5
recoil = 0

IniFile = %A_ScriptDir%\settings.ini
IfNotExist, %IniFile%
{
   MsgBox settings.ini not found. Program will exit
   ExitApp
}
iniread, key0, settings.ini, keys, key0
iniread, key1, settings.ini, keys, key1
iniread, key2, settings.ini, keys, key2
iniread, key3, settings.ini, keys, key3
iniread, key4, settings.ini, keys, key4
iniread, key5, settings.ini, keys, key5
iniread, key6, settings.ini, keys, key6
iniread, key7, settings.ini, keys, key7
iniread, key8, settings.ini, keys, key8
iniread, key9, settings.ini, keys, key9
iniread, rck, settings.ini, keys, rapidclick
iniread, pps, settings.ini, keys, presetpxls
iniread, minusr, settings.ini, keys, minusrecoil
iniread, plusr, settings.ini, keys, plusrecoil
iniread, minusspd, settings.ini, keys, minusspeed
iniread, plusspd, settings.ini, keys, plusspeed
iniread, fintunminus, settings.ini, keys, finetuneminus
iniread, fintunplus, settings.ini, keys, finetuneplus
iniread, px1, settings.ini, pixelmov, px1
iniread, px2, settings.ini, pixelmov, px2
iniread, px3, settings.ini, pixelmov, px3
iniread, px4, settings.ini, pixelmov, px4
iniread, px5, settings.ini, pixelmov, px5
iniread, px6, settings.ini, pixelmov, px6
iniread, px7, settings.ini, pixelmov, px7
iniread, px8, settings.ini, pixelmov, px8
iniread, px9, settings.ini, pixelmov, px9
iniread, spd1, settings.ini, speed, spd1
iniread, spd2, settings.ini, speed, spd2
iniread, finetuneminus, settings.ini, pixelmov, finetune-
iniread, finetuneplus, settings.ini, pixelmov, finetune+
iniread, presetspeed1, settings.ini, keys, presetspeed1
iniread, presetspeed2, settings.ini, keys, presetspeed2
Hotkey,%rck%,keyrckcommand
Hotkey,%pps%,keyppscommand
Hotkey,%minusr%,keyminusrcommand
Hotkey,%plusr%,keyplusrcommand
Hotkey,%minusspd%,keyminusspdcommand
Hotkey,%plusspd%,keyplusspdcommand
Hotkey,%fintunminus%,keyfintunminuscommand
Hotkey,%fintunplus%,keyfintunpluscommand

Hotkey, %Key0%, key0command, off
Hotkey, %Key1%, key1command, off
Hotkey, %Key2%, key2command, off
Hotkey, %Key3%, key3command, off
Hotkey, %Key4%, key4command, off
Hotkey, %Key5%, key5command, off
Hotkey, %Key6%, key6command, off
Hotkey, %Key7%, key7command, off
Hotkey, %Key8%, key8command, off
Hotkey, %Key9%, key9command, off
Hotkey, %presetspeed1%, keypresetspeed1command, off
Hotkey, %presetspeed2%, keypresetspeed2command, off

return

$^+Esc::
msgbox recoil compensator closed
   ExitApp
return
#SingleInstance ignore
#NoTrayIcon
#InstallMouseHook
MouseEvent(a_xpos, a_ypos)
{
   DllCall("mouse_event", uint,1, int,a_xpos, int,a_ypos, uint,0, int,0 )
}

;;;;minus one of variable
keyminusrcommand:
recoil--
return

;;;;plus one to variable
keyplusrcommand:
recoil++
return

;;;;minus one of variable
keyfintunminuscommand:
recoil-=%finetuneminus%
return

;;;;plus one to variable
keyfintunpluscommand:
recoil+=%finetuneplus%
return

;;;;minus one of variable
keyminusspdcommand:
autoc-=5
return

;;;;plus one to variable
keyplusspdcommand:
autoc+=5
return

keyrckcommand:
  Period := Period = 5 ? "OFF" : 5
   SetTimer slp, %Period%
Return

slp:
loop
{
if (GetKeyState("LButton", "P") = 0)
break
{
MouseClick, left,,, 1, 0, D
Sleep, 15
MouseClick, left,,, 1, 0, U
sleep, %autoc%
MouseEvent(0, recoil)
}
}
return

keyppscommand:
Hotkey,%Key0%,key0command,on
Hotkey,%Key1%,key1command,on
Hotkey,%Key2%,key2command,on
Hotkey,%Key3%,key3command,on
Hotkey,%Key4%,key4command,on
Hotkey,%Key5%,key5command,on
Hotkey,%Key6%,key6command,on
Hotkey,%Key7%,key7command,on
Hotkey,%Key8%,key8command,on
Hotkey,%Key9%,key9command,on
Hotkey,%presetspeed1%,keypresetspeed1command,on
Hotkey,%presetspeed2%,keypresetspeed2command,on
return

key0command:
recoil = 0
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key1command:
recoil = %px1%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key2command:
recoil = %px2%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key3command:
recoil = %px3%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key4command:
recoil = %px4%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key5command:
recoil = %px5%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key6command:
recoil = %px6%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key7command:
recoil = %px7%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key8command:
recoil = %px8%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

key9command:
recoil = %px9%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

keypresetspeed1command:
autoc = %spd1%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return

keypresetspeed2command:
autoc = %spd2%
Hotkey,%Key0%,key0command,off
Hotkey,%Key1%,key1command,off
Hotkey,%Key2%,key2command,off
Hotkey,%Key3%,key3command,off
Hotkey,%Key4%,key4command,off
Hotkey,%Key5%,key5command,off
Hotkey,%Key6%,key6command,off
Hotkey,%Key7%,key7command,off
Hotkey,%Key8%,key8command,off
Hotkey,%Key9%,key9command,off
Hotkey,%presetspeed1%,keypresetspeed1command,off
Hotkey,%presetspeed2%,keypresetspeed2command,off
return




;;;;recoil pixle-movement compensator

$~LButton::
loop
{
getkeystate, lbuttonstate, lbutton, p
if lbuttonstate = U
break
MouseEvent(0, recoil)
sleep 20
}
return

^+!Z::
msgbox The Recoil Compensation pixel amount is %recoil% and the RapidClick speed is %autoc%



Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google [Bot], specter333 and 12 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group