|
- --///////////////////////////////////////////////////////////////////
- -- settings
- --///////////////////////////////////////////////////////////////////
-
-
- --///////////////////////////////////////////////////////////////////
- OnOffKey = "numlock" -- Key to toggle the script on and off
- --///////////////////////////////////////////////////////////////////
-
- --///////////////////////////////////////////////////////////////////
- RecoilAmount = 6
- --///////////////////////////////////////////////////////////////////
-
-
-
- --///////////////////////////////////////////////////////////////////
- -- dont touch blow without experience
- --///////////////////////////////////////////////////////////////////
-
-
-
- EnablePrimaryMouseButtonEvents(true);
- function Initialkey(Key)
- if (Key == 3) then
- Listener = 1
- else
- Listener = 3
- end
- while (IsMouseButtonPressed(Key)) do
- if IsMouseButtonPressed(Listener) then
- Sleep(120)
- repeat
- MoveMouseRelative(0, RecoilAmount)
- Sleep(math.random(8, 12))
- until not IsMouseButtonPressed(1)
- else
- Sleep(5)
- end
- end
- end
-
- function OnEvent(event, arg)
- if IsKeyLockOn(OnOffKey) then
- repeat
- if IsMouseButtonPressed(3) then
- Initialkey(3)
- elseif IsMouseButtonPressed(1) then
- Initialkey(1)
- else
- Sleep(20)
- end
- until not IsKeyLockOn(OnOffKey)
- end
- end
复制代码
|
黑米论坛免责声明
黑米论坛所有内容均来自网络分享,仅供会员进行学习研究用,本网站仅提供存储服务,所有资源请勿用于商业行为!转载文章请注明来源,版权归属于原作者!如若本站内容侵犯了原著者的合法权益请联系站长,我们将及时处理。
|