Register for your free account! | Forgot your password?

You last visited: Today at 13:56

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Rapid Fire?

Discussion on Rapid Fire? within the Call of Duty forum part of the Popular Games category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Rapid Fire?

Anyway to rapid fire without getting banned on PC? Don't care about actual cheats, just want a finger saver.
acidphreaked is offline  
Old 11/21/2020, 19:30   #2

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Code:
Ins::Suspend
LButton::
Loop
{
	GetKeyState, lcstate, LControl
	GetKeyState, lsstate, LShift
	
	If lcstate = D
	{
		Send, {Control}
	}
		If lsstate = D
	{
		Send, {Shift}
	}
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
Insert suspends it.
0x41^4 is offline  
Thanks
1 User
Old 11/22/2020, 17:49   #3
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by -0x41^4- View Post
Code:
Ins::Suspend
LButton::
Loop
{
	GetKeyState, lcstate, LControl
	GetKeyState, lsstate, LShift
	
	If lcstate = D
	{
		Send, {Control}
	}
		If lsstate = D
	{
		Send, {Shift}
	}
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
Insert suspends it.
So running AHKs won't lead to bans? I wasn't sure. Haven't played COD on pc before.
acidphreaked is offline  
Old 11/22/2020, 17:52   #4

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
So running AHKs won't lead to bans? I wasn't sure. Haven't played COD on pc before.
Technically it can, as it’s third-party software...
But I have NEVER seen someone get banned for using AHK.
0x41^4 is offline  
Thanks
1 User
Old 11/22/2020, 17:57   #5
 
elite*gold: 0
Join Date: Jan 2007
Posts: 518
Received Thanks: 25
which programm running i have the logitech software^^
cue990 is offline  
Old 11/22/2020, 18:08   #6
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by cue990 View Post
which programm running i have the logitech software^^
AutoHotKey; youtube how to run an autohotkey script

Quote:
Originally Posted by -0x41^4- View Post
Technically it can, as it’s third-party software...
But I have NEVER seen someone get banned for using AHK.
Thanks man. The script keeps getting stuck in click mode. It seems if I hold the mouse for around 2.5-3.0 seconds it will get stuck in fire mode and not stop until I click a 2nd time. I tried slowing the click rate but it still gets stuck often, nearly every 3 fights.

Any ideas? Thanks again mate! Very weird bug but 2.5-3.0 seconds of hold seems to have it. I tested 1, 1.5, 2.0, etc and after 3.0 it seems to stop happening.

Was able to produce this bug in game, in IE and in notepad.
acidphreaked is offline  
Old 11/22/2020, 19:34   #7

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
Thanks man. The script keeps getting stuck in click mode. It seems if I hold the mouse for around 2.5-3.0 seconds it will get stuck in fire mode and not stop until I click a 2nd time. I tried slowing the click rate but it still gets stuck often, nearly every 3 fights.

Any ideas? Thanks again mate! Very weird bug but 2.5-3.0 seconds of hold seems to have it. I tested 1, 1.5, 2.0, etc and after 3.0 it seems to stop happening.

Was able to produce this bug in game, in IE and in notepad.
I tried on two different computers and couldn't replicate the problem you're having.

Do you have anything else running (macro wise) or are you toggling frequently?
0x41^4 is offline  
Old 11/22/2020, 19:58   #8
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by -0x41^4- View Post
Technically it can, as it’s third-party software...
But I have NEVER seen someone get banned for using AHK.
Quote:
Originally Posted by -0x41^4- View Post
I tried on two different computers and couldn't replicate the problem you're having.

Do you have anything else running (macro wise) or are you toggling frequently?
Code:
HotKey, *LButton, Off ;Initially, the Fast Fire part is deactivated
Return ;End of Auto-execute Section https://autohotkey.com/docs/Scripts.htm#auto
/::suspend
*F8::Hotkey, *LButton, % (Toggle := !Toggle) ? "On" : "Off"
*LButton:: ;Fast Fire part
	SetMouseDelay 48
	While GetKeyState("LButton","P")
		Click
Return
This seemed to fix it.
acidphreaked is offline  
Old 11/22/2020, 20:03   #9

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
Code:
HotKey, *LButton, Off ;Initially, the Fast Fire part is deactivated
Return ;End of Auto-execute Section https://autohotkey.com/docs/Scripts.htm#auto
/::suspend
*F8::Hotkey, *LButton, % (Toggle := !Toggle) ? "On" : "Off"
*LButton:: ;Fast Fire part
	SetMouseDelay 48
	While GetKeyState("LButton","P")
		Click
Return
This seemed to fix it.
It's the exact same thing, just a longer delay.
0x41^4 is offline  
Old 11/22/2020, 20:54   #10
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by -0x41^4- View Post
It's the exact same thing, just a longer delay.
Essentially same thing, just worded differently and for some reason even when setting yours to 100 ms delay, I could still get the bug where it would spam on and stay on. Yet with this I can set a delay as low as possible and no auto bug.

Has to be something with the way its worded. So strange. I tried on my laptop and got same results.
acidphreaked is offline  
Old 11/22/2020, 20:57   #11

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
Essentially same thing, just worded differently and for some reason even when setting yours to 100 ms delay, I could still get the bug where it would spam on and stay on. Yet with this I can set a delay as low as possible and no auto bug.

Has to be something with the way its worded. So strange. I tried on my laptop and got same results.
Weird. I had several people try and nobody else had issues. I wonder if it has something to do with your in-game settings or gun that you used.

Been using is since you posted to test and it hasn't bugged once.
0x41^4 is offline  
Old 11/22/2020, 20:59   #12
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by -0x41^4- View Post
Weird. I had several people try and nobody else had issues. I wonder if it has something to do with your in-game settings or gun that you used.

Been using is since you posted to test and it hasn't bugged once.
Even with game closed using chrome as the test. I could click in a certain way that would cause it to go on and stay on. Thought maybe it was the mouse so I switched from a MM710 to a G502 and had same issue. It must be something with rapid activation times or something similar. If I rapid clicked left mouse I could get it to bug almost every 3rd click.

Strange indeed.

Figure I'd post what fixed it for me incase someone ever has the same issue.
acidphreaked is offline  
Old 11/22/2020, 21:05   #13

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
If I rapid clicked left mouse
That's why it's bugging. You can't spam click rapid macros as that is the purpose of the macro. It's resetting the delay too frequently and therefore getting stuck.

Rapid fire macros are designed to be held down, not spammed, that's why it's a rapid fire macro
0x41^4 is offline  
Old 11/22/2020, 21:18   #14
 
elite*gold: 0
Join Date: Sep 2014
Posts: 57
Received Thanks: 13
Quote:
Originally Posted by -0x41^4- View Post
That's why it's bugging. You can't spam click rapid macros as that is the purpose of the macro. It's resetting the delay too frequently and therefore getting stuck.

Rapid fire macros are designed to be held down, not spammed, that's why it's a rapid fire macro
That much I get, but I was running into issues with 2 seconds of fire, break 2 seconds of fire, then it got stuck. Not so much spamming it.
acidphreaked is offline  
Old 11/22/2020, 21:38   #15

 
0x41^4's Avatar
 
elite*gold: 51
Join Date: Jul 2009
Posts: 4,532
Received Thanks: 2,170
Quote:
Originally Posted by acidphreaked View Post
That much I get, but I was running into issues with 2 seconds of fire, break 2 seconds of fire, then it got stuck. Not so much spamming it.
Strange. Nobody else in our Discord had issues with it.

Glad you found something that works, though you might want to add a control and shift block so you don't stop firing if you drop-shot or run.
0x41^4 is offline  
Reply


Similar Threads Similar Threads
NEW RELEASED Free VIP Hack Aimbot + Rapid fire + No Recoil No Spread + Rapid Slash
11/01/2014 - Soldier Front Hacks, Bots, Cheats & Exploits - 9 Replies
VIP Hack By LegendHacker1337 Solutions for Errors : Screenshot : DFI SF CHEAT tarlac 1.10.2013 - YouTube Instruction :
NEW RELEASED Free VIP Hack Aimbot + Rapid fire + No Recoil No Spread + Rapid Slash
01/29/2013 - Soldier Front Hacks, Bots, Cheats & Exploits - 3 Replies
VIP Hack By LegendHacker1337 Solutions for Errors : Screenshot : http://www.youtube.com/watch?v=SkhixoTTfwA Instruction :
NEW RELEASED Free VIP Hack Aimbot + Rapid fire + No Recoil No Spread + Rapid Slash
01/29/2013 - Soldier Front - 1 Replies
VIP Hack By LegendHacker1337 Solutions for Errors : Screenshot : http://www.youtube.com/watch?v=SkhixoTTfwA Instruction :
NEW RELEASED Free VIP Hack Aimbot + Rapid fire + No Recoil No Spread + Rapid Slash
01/29/2013 - Soldier Front Hacks, Bots, Cheats & Exploits - 0 Replies
VIP Hack By LegendHacker1337 Solutions for Errors : Screenshot : http://www.youtube.com/watch?v=SkhixoTTfwA Instruction :



All times are GMT +1. The time now is 13:56.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.