Me podrian ayudar para hacer un rapidscope para un juego este ya no unciona pero no se como hacer para arreglarlo

Post a reply


In an effort to prevent automatic submissions, we require that you complete the following challenge.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :| :mrgreen: :geek: :ugeek: :arrow: :angel: :clap: :crazy: :eh: :lolno: :problem: :shh: :shifty: :sick: :silent: :think: :thumbup: :thumbdown: :salute: :wave: :wtf: :yawn: :facepalm: :bravo: :dance: :beard: :morebeard: :xmas: :HeHe: :trollface: :cookie: :rainbow: :monkeysee: :monkeysay: :happybday: :headwall: :offtopic: :superhappy: :terms: :beer:
View more smilies

BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Me podrian ayudar para hacer un rapidscope para un juego este ya no unciona pero no se como hacer para arreglarlo

Me podrian ayudar para hacer un rapidscope para un juego este ya no unciona pero no se como hacer para arreglarlo

Post by djloko » 29 Mar 2018, 10:53

#NoEnv
#SingleInstance, Force
SetBatchLines, -1

Hotkey, ~LButton, no_recoil, Off
Hotkey, ~*LButton, rapid_scope, Off
return

Left::Hotkey, ~LButton, Toggle

Right::Hotkey, ~*LButton, Toggle

F4::ExitApp

HOME::Suspend, Toggle

rapid_scope:
SendInput, {LButton down}
SendInput, {LButton up}
SendInput, {q down}
SendInput, {q up}
SendInput, {q down}
SendInput, {q up}
return

no_recoil:
while (GetKeyState("LButton", "P")) {
SendInput, {LButton DownTemp}
Sleep, 22
DllCall("User32.dll\mouse_event", "UInt", 1, "UInt", 0, "UInt", 1, "UInt", 0, "UPtr", 0)
SendInput {LButton Up}
Sleep 22
}
return

Top