SolvedI would like some help :D

Posts 1–12 of 12 · Page 1 of 1
I would like some help :D
I am new here and I wanted to know how to write a script of noflash, norecoil and autopistol (becase nobody has this added in in there hacks)
I dont even know what script I need to use. All help is welcome.
that you autoshoot with a pistol ( it becomes like a gun, you just hold leftclick
Quote Originally Posted by theapple0 View Post
that you autoshoot with a pistol ( it becomes like a gun, you just hold leftclick
Ahk or what? Ahk is very, very simple, I don't think anyone needs help with it. Just use your brain...
Quote Originally Posted by theapple0 View Post
that you autoshoot with a pistol ( it becomes like a gun, you just hold leftclick
A pistol is not a gun?
I know how overwatch and everythink work (4 times on vacation)
noflash and norecoil reads the game memory and merccy has one rcs in the csgo hacks forum

the autopistol or rapid fire script (for AHK) (Not My Work)

Code:
F6::Suspend
MButton::
+MButton::
^MButton::
WheelLeft::
WheelRight::

Loop
{
SetMouseDelay 30
Click
If (GetKeyState("MButton","P")=0)
Break
}
and how do you script things like noflash or autopistol or norecoil (exemple)?

- - - Updated - - -

Quote Originally Posted by nbadaro View Post
noflash and norecoil reads the game memory and merccy has one rcs in the csgo hacks forum

the autopistol or rapid fire script (for AHK) (Not My Work)

Code:
F6::Suspend
MButton::
+MButton::
^MButton::
WheelLeft::
WheelRight::

Loop
{
SetMouseDelay 30
Click
If (GetKeyState("MButton","P")=0)
Break
}
doesnt work
Try this one

Code:
#NoEnv
#SingleInstance force
SendMode Input

ScriptActive = 1

FixAmount = 0.00000000000000000001


RecoilFix(amount) 
{ 
DllCall("mouse_event",uint,1,int,x,int,amount,uint ,0,int,0) 
}


IfWinActive, Call of Duty 4
{
~Lbutton::
If ScriptActive = 1
{
RecoilFix(FixAmount)
Loop
{
GetKeyState, state, Lbutton, P
if state=U
break
Sendinput {Click down}
Sleep 35
Sendinput {Click up}
Sleep 35
RecoilFix(FixAmount)
}
}
return


;Pauses AutoHotKey Script.

~F6::
If ScriptActive = 1
{
ScriptActive = 0
SoundBeep, 400, 400
}
else if ScriptActive = 0
{
ScriptActive = 1
SoundBeep, 1000, 100
SoundBeep, 1000, 100
}
return


~NumpadAdd::
++FixAmount
SoundBeep, 700, 100
SoundBeep, 700, 100
clipboard = %FixAmount%
return


~NumpadSub::
--FixAmount
SoundBeep, 700, 100
clipboard = %FixAmount%
return

~NumpadDiv::
FixAmount-=0.1
SoundBeep, 600, 100
clipboard = %FixAmount%
return

~NumpadMult::
FixAmount+=0.1
SoundBeep, 600, 100
SoundBeep, 600, 100
clipboard = %FixAmount%
return
}

;M9 = FixAmount 1
;G3 = FixAmount 0.700000
it works, ty
but how do you script norecoil and noflash, thats not easy right?
Posts 1–12 of 12 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?