PostDouble Pump

Posts 3145 of 92 · Page 3 of 7
You can use it with the new hand cannon
i tied this with desert eagle and it works great
i might still try to reduce the sleeping time
and might try to do one for double tactic
Which slots does the script bind to?
Quote Originally Posted by Hurropreez View Post
Which slots does the script bind to?
On your keyboard; nr 2 and 3.
"Send {2}"
" Send {3} "
I need a little assistance:
I have the script and I have binded the 2 and 3 slots to my mouswheel moving up and down, but every time i move the wheel up or down it just has a delayed shot and stays in the same slot. I'm sure this is just a minor error that I've made in the script and if anyone could help it would be appreciated.
Quote Originally Posted by Hurropreez View Post
I need a little assistance:
I have the script and I have binded the 2 and 3 slots to my mouswheel moving up and down, but every time i move the wheel up or down it just has a delayed shot and stays in the same slot. I'm sure this is just a minor error that I've made in the script and if anyone could help it would be appreciated.
Code:
XButton2::
^XButton2::
+XButton2::
Send {WheelUp}
Sleep 500
MouseClick ,Left,X,Y,3,0
Send {WheelDown}
Sleep 500
MouseClick ,Left,X,Y,3,0
return
something like this?
Quote Originally Posted by Hurropreez View Post
I need a little assistance:
I have the script and I have binded the 2 and 3 slots to my mouswheel moving up and down, but every time i move the wheel up or down it just has a delayed shot and stays in the same slot. I'm sure this is just a minor error that I've made in the script and if anyone could help it would be appreciated.
or maybe something like this
Code:
msoff := 500
WheelDown::x := stuff(msoff,x)
return
WheelUp::x := stuff(msoff,x)
return
stuff(msoff, x) {
	curMS := A_TickCount
	if (x = 2) {
		x = 3
	} else {
		x = 2
	}
	Send {%x%}
	MS := abs(A_TickCount - CurMS - msoff)
	Sleep MS
	MouseClick, Left,X,Y,3,0
	return x
}
Is this still working?
Quote Originally Posted by xywz420 View Post
Is this still working?
Yes i guess why shouldn't it?
how to change the slots to 2 n 3 ?

- - - Updated - - -

Dekui seniuk.
Posts 3145 of 92 · Page 3 of 7

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?