Advertisement
Prolimitzz

Untitled

Apr 24th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.04 KB | None | 0 0
  1. ;Subscribe to Gaming With Zahin on YouTube!!!
  2. ;https://www.youtube.com/c/gamingwithzahin
  3. ;Settings
  4. sens:=1.75
  5. zoomsens:=1
  6.  
  7. ;Key binds
  8. key_AK:="F4"
  9. key_M4A1:="F6"
  10. key_M4A4:="F7"
  11. key_Famas:="F8"
  12. key_Galil:="F9"
  13. key_UMP:="F12"
  14. key_AUG:="Home"
  15. key_SG:="End"
  16. key_RCoff:="F11"
  17. key_Terminate:="F10"
  18. key_shoot:="LButton"
  19. key_zoom:="LAlt"
  20.  
  21. ;do not touch this if you don't know what are you doing
  22. modifier:=2.52/sens
  23. Hotkey, *~$Space, Off
  24. Hotkey, *~$MButton, Off
  25. Hotkey, *~$t, Off
  26.  
  27. ;Main program loop, don't break out of it
  28. loop {
  29. sleep 1
  30. ;Menu handling
  31. if GetKeyState(key_AK)
  32. {
  33. SoundPlay, %A_ScriptDir%\1.mp3
  34. ak:=true
  35. m4a1:=false
  36. m4a4:=false
  37. famas:=false
  38. galil:=false
  39. ump:=false
  40. aug:=false
  41. sg:=false
  42. }
  43.  
  44. if GetKeyState(key_M4A1)
  45. {
  46. SoundPlay, %A_ScriptDir%\2.mp3
  47. m4a1:=true
  48. ak:=false
  49. m4a4:=false
  50. famas:=false
  51. galil:=false
  52. ump:=false
  53. aug:=false
  54. sg:=false
  55. }
  56.  
  57. if GetKeyState(key_M4A4)
  58. {
  59. SoundPlay, %A_ScriptDir%\3.mp3
  60. m4a4:=true
  61. ak:=false
  62. m4a1:=false
  63. famas:=false
  64. galil:=false
  65. ump:=false
  66. aug:=false
  67. sg:=false
  68. }
  69.  
  70. if GetKeyState(key_Famas)
  71. {
  72. SoundPlay, %A_ScriptDir%\4.mp3
  73. famas:=true
  74. ak:=false
  75. m4a1:=false
  76. m4a4:=false
  77. galil:=false
  78. ump:=false
  79. aug:=false
  80. sg:=false
  81. }
  82.  
  83. if GetKeyState(key_Galil)
  84. {
  85. SoundPlay, %A_ScriptDir%\5.mp3
  86. galil:=true
  87. ak:=false
  88. m4a1:=false
  89. m4a4:=false
  90. famas:=false
  91. ump:=false
  92. aug:=false
  93. sg:=false
  94. }
  95.  
  96. if GetKeyState(key_Terminate)
  97. {
  98. SoundPlay, %A_ScriptDir%\8.mp3
  99. sleep 2000
  100. ExitApp
  101. }
  102.  
  103. if GetKeyState(key_RCoff)
  104. {
  105. SoundPlay, %A_ScriptDir%\7.mp3
  106. ak:=false
  107. m4a1:=false
  108. m4a4:=false
  109. famas:=false
  110. galil:=false
  111. ump:=false
  112. aug:=false
  113. sg:=false
  114. }
  115.  
  116. if GetKeyState(key_UMP)
  117. {
  118. SoundPlay, %A_ScriptDir%\6.mp3
  119. ump:=true
  120. ak:=false
  121. m4a1:=false
  122. m4a4:=false
  123. famas:=false
  124. galil:=false
  125. aug:=false
  126. sg:=false
  127. }
  128.  
  129. if GetKeyState(key_SG)
  130. {
  131. SoundPlay, %A_ScriptDir%\9.mp3
  132. sg:=true
  133. ump:=false
  134. ak:=false
  135. m4a1:=false
  136. m4a4:=false
  137. famas:=false
  138. galil:=false
  139. aug:=false
  140. }
  141.  
  142. if GetKeyState(key_AUG)
  143. {
  144. SoundPlay, %A_ScriptDir%\10.mp3
  145. aug:=true
  146. ump:=false
  147. ak:=false
  148. m4a1:=false
  149. m4a4:=false
  150. famas:=false
  151. galil:=false
  152. sg:=false
  153. }
  154.  
  155. ;NoRecoil
  156. if GetKeyState(key_shoot)
  157. {
  158. ;AK-47
  159. if ak
  160. {
  161. loop
  162. {
  163. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  164. sleep 50
  165. if !GetKeyState(key_shoot)
  166. {
  167. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  168. break
  169. }
  170. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 7*modifier)
  171. sleep 99
  172. if !GetKeyState(key_shoot)
  173. {
  174. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  175. break
  176. }
  177. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 19*modifier)
  178. sleep 99
  179. if !GetKeyState(key_shoot)
  180. {
  181. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  182. break
  183. }
  184. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 29*modifier)
  185. sleep 99
  186. if !GetKeyState(key_shoot)
  187. {
  188. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  189. break
  190. }
  191. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 31*modifier)
  192. sleep 99
  193. if !GetKeyState(key_shoot)
  194. {
  195. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  196. break
  197. }
  198. DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", 31*modifier)
  199. sleep 99
  200. if !GetKeyState(key_shoot)
  201. {
  202. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  203. break
  204. }
  205. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 28*modifier)
  206. sleep 99
  207. if !GetKeyState(key_shoot)
  208. {
  209. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  210. break
  211. }
  212. DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", 21*modifier)
  213. sleep 99
  214. if !GetKeyState(key_shoot)
  215. {
  216. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  217. break
  218. }
  219. DllCall("mouse_event", "UInt", 0x01, "UInt", -17*modifier, "UInt", 12*modifier)
  220. sleep 99
  221. if !GetKeyState(key_shoot)
  222. {
  223. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  224. break
  225. }
  226. DllCall("mouse_event", "UInt", 0x01, "UInt", -42*modifier, "UInt", -3*modifier)
  227. sleep 99
  228. if !GetKeyState(key_shoot)
  229. {
  230. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  231. break
  232. }
  233. DllCall("mouse_event", "UInt", 0x01, "UInt", -21*modifier, "UInt", 2*modifier)
  234. sleep 99
  235. if !GetKeyState(key_shoot)
  236. {
  237. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  238. break
  239. }
  240. DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 11*modifier)
  241. sleep 99
  242. if !GetKeyState(key_shoot)
  243. {
  244. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  245. break
  246. }
  247. DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier, "UInt", 7*modifier)
  248. sleep 99
  249. if !GetKeyState(key_shoot)
  250. {
  251. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  252. break
  253. }
  254. DllCall("mouse_event", "UInt", 0x01, "UInt", -26*modifier, "UInt", -8*modifier)
  255. sleep 99
  256. if !GetKeyState(key_shoot)
  257. {
  258. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  259. break
  260. }
  261. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 4*modifier)
  262. sleep 99
  263. if !GetKeyState(key_shoot)
  264. {
  265. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  266. break
  267. }
  268. DllCall("mouse_event", "UInt", 0x01, "UInt", 40*modifier, "UInt", 1*modifier)
  269. sleep 99
  270. if !GetKeyState(key_shoot)
  271. {
  272. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  273. break
  274. }
  275. DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier, "UInt", 7*modifier)
  276. sleep 99
  277. if !GetKeyState(key_shoot)
  278. {
  279. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  280. break
  281. }
  282. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 10*modifier)
  283. sleep 99
  284. if !GetKeyState(key_shoot)
  285. {
  286. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  287. break
  288. }
  289. DllCall("mouse_event", "UInt", 0x01, "UInt", 27*modifier, "UInt", 0*modifier)
  290. sleep 99
  291. if !GetKeyState(key_shoot)
  292. {
  293. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  294. break
  295. }
  296. DllCall("mouse_event", "UInt", 0x01, "UInt", 33*modifier, "UInt", -10*modifier)
  297. sleep 99
  298. if !GetKeyState(key_shoot)
  299. {
  300. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  301. break
  302. }
  303. DllCall("mouse_event", "UInt", 0x01, "UInt", -21*modifier, "UInt", -2*modifier)
  304. sleep 99
  305. if !GetKeyState(key_shoot)
  306. {
  307. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  308. break
  309. }
  310. DllCall("mouse_event", "UInt", 0x01, "UInt", 7*modifier, "UInt", 3*modifier)
  311. sleep 99
  312. if !GetKeyState(key_shoot)
  313. {
  314. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  315. break
  316. }
  317. DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier, "UInt", 9*modifier)
  318. sleep 99
  319. if !GetKeyState(key_shoot)
  320. {
  321. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  322. break
  323. }
  324. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier, "UInt", 4*modifier)
  325. sleep 99
  326. if !GetKeyState(key_shoot)
  327. {
  328. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  329. break
  330. }
  331. DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier, "UInt", -3*modifier)
  332. sleep 99
  333. if !GetKeyState(key_shoot)
  334. {
  335. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  336. break
  337. }
  338. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 6*modifier)
  339. sleep 99
  340. if !GetKeyState(key_shoot)
  341. {
  342. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  343. break
  344. }
  345. DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", -1*modifier)
  346. sleep 99
  347. if !GetKeyState(key_shoot)
  348. {
  349. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  350. break
  351. }
  352. DllCall("mouse_event", "UInt", 0x01, "UInt", -33*modifier, "UInt", -4*modifier)
  353. sleep 99
  354. if !GetKeyState(key_shoot)
  355. {
  356. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  357. break
  358. }
  359. DllCall("mouse_event", "UInt", 0x01, "UInt", -45*modifier, "UInt", -21*modifier)
  360. sleep 99
  361. if !GetKeyState(key_shoot)
  362. {
  363. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  364. break
  365. }
  366. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 1*modifier)
  367. if !GetKeyState(key_shoot)
  368. {
  369. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  370. break
  371. }
  372. sleep 80
  373. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  374. sleep 1000
  375. if !GetKeyState(key_shoot)
  376. {
  377. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  378. break
  379. }
  380. }
  381. }
  382. ;M4A1-S
  383. else if m4a1
  384. {
  385. loop
  386. {
  387. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  388. sleep 15
  389. if !GetKeyState(key_shoot)
  390. {
  391. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  392. break
  393. }
  394. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 6*modifier)
  395. sleep 88
  396. if !GetKeyState(key_shoot)
  397. {
  398. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  399. break
  400. }
  401. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 4*modifier)
  402. sleep 88
  403. if !GetKeyState(key_shoot)
  404. {
  405. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  406. break
  407. }
  408. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 14*modifier)
  409. sleep 88
  410. if !GetKeyState(key_shoot)
  411. {
  412. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  413. break
  414. }
  415. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 18*modifier)
  416. sleep 88
  417. if !GetKeyState(key_shoot)
  418. {
  419. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  420. break
  421. }
  422. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 21*modifier)
  423. sleep 88
  424. if !GetKeyState(key_shoot)
  425. {
  426. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  427. break
  428. }
  429. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 24*modifier)
  430. sleep 88
  431. if !GetKeyState(key_shoot)
  432. {
  433. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  434. break
  435. }
  436. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 14*modifier)
  437. sleep 88
  438. if !GetKeyState(key_shoot)
  439. {
  440. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  441. break
  442. }
  443. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 12*modifier)
  444. sleep 88
  445. if !GetKeyState(key_shoot)
  446. {
  447. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  448. break
  449. }
  450. DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier, "UInt", 5*modifier)
  451. sleep 88
  452. if !GetKeyState(key_shoot)
  453. {
  454. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  455. break
  456. }
  457. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 10*modifier)
  458. sleep 88
  459. if !GetKeyState(key_shoot)
  460. {
  461. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  462. break
  463. }
  464. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 5*modifier)
  465. sleep 88
  466. if !GetKeyState(key_shoot)
  467. {
  468. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  469. break
  470. }
  471. DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -3*modifier)
  472. sleep 88
  473. if !GetKeyState(key_shoot)
  474. {
  475. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  476. break
  477. }
  478. DllCall("mouse_event", "UInt", 0x01, "UInt", -19*modifier, "UInt", 0*modifier)
  479. sleep 88
  480. if !GetKeyState(key_shoot)
  481. {
  482. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  483. break
  484. }
  485. DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier, "UInt", -3*modifier)
  486. sleep 88
  487. if !GetKeyState(key_shoot)
  488. {
  489. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  490. break
  491. }
  492. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 3*modifier)
  493. sleep 88
  494. if !GetKeyState(key_shoot)
  495. {
  496. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  497. break
  498. }
  499. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 3*modifier)
  500. sleep 88
  501. if !GetKeyState(key_shoot)
  502. {
  503. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  504. break
  505. }
  506. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 1*modifier)
  507. sleep 88
  508. if !GetKeyState(key_shoot)
  509. {
  510. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  511. break
  512. }
  513. DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -2*modifier)
  514. sleep 88
  515. if !GetKeyState(key_shoot)
  516. {
  517. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  518. break
  519. }
  520. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 2*modifier)
  521. sleep 88
  522. if !GetKeyState(key_shoot)
  523. {
  524. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  525. break
  526. }
  527. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 1*modifier)
  528. sleep 88
  529. if !GetKeyState(key_shoot)
  530. {
  531. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  532. break
  533. }
  534. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  535. sleep 1000
  536. if !GetKeyState(key_shoot)
  537. {
  538. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  539. break
  540. }
  541. }
  542. }
  543. ;M4A4
  544. else if m4a4
  545. {
  546. loop
  547. {
  548. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  549. sleep 15
  550. if !GetKeyState(key_shoot)
  551. {
  552. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  553. break
  554. }
  555. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 7*modifier)
  556. sleep 88
  557. if !GetKeyState(key_shoot)
  558. {
  559. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  560. break
  561. }
  562. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 9*modifier)
  563. sleep 87
  564. if !GetKeyState(key_shoot)
  565. {
  566. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  567. break
  568. }
  569. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 16*modifier)
  570. sleep 87
  571. if !GetKeyState(key_shoot)
  572. {
  573. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  574. break
  575. }
  576. DllCall("mouse_event", "UInt", 0x01, "UInt", 7*modifier, "UInt", 21*modifier)
  577. sleep 87
  578. if !GetKeyState(key_shoot)
  579. {
  580. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  581. break
  582. }
  583. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 23*modifier)
  584. sleep 87
  585. if !GetKeyState(key_shoot)
  586. {
  587. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  588. break
  589. }
  590. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier, "UInt", 27*modifier)
  591. sleep 87
  592. if !GetKeyState(key_shoot)
  593. {
  594. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  595. break
  596. }
  597. DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", 15*modifier)
  598. sleep 88
  599. if !GetKeyState(key_shoot)
  600. {
  601. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  602. break
  603. }
  604. DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 13*modifier)
  605. sleep 88
  606. if !GetKeyState(key_shoot)
  607. {
  608. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  609. break
  610. }
  611. DllCall("mouse_event", "UInt", 0x01, "UInt", 22*modifier, "UInt", 5*modifier)
  612. sleep 88
  613. if !GetKeyState(key_shoot)
  614. {
  615. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  616. break
  617. }
  618. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 11*modifier)
  619. sleep 88
  620. if !GetKeyState(key_shoot)
  621. {
  622. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  623. break
  624. }
  625. DllCall("mouse_event", "UInt", 0x01, "UInt", -18*modifier, "UInt", 6*modifier)
  626. sleep 88
  627. if !GetKeyState(key_shoot)
  628. {
  629. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  630. break
  631. }
  632. DllCall("mouse_event", "UInt", 0x01, "UInt", -30*modifier, "UInt", -4*modifier)
  633. sleep 88
  634. if !GetKeyState(key_shoot)
  635. {
  636. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  637. break
  638. }
  639. DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", 0*modifier)
  640. sleep 88
  641. if !GetKeyState(key_shoot)
  642. {
  643. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  644. break
  645. }
  646. DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -6*modifier)
  647. sleep 88
  648. if !GetKeyState(key_shoot)
  649. {
  650. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  651. break
  652. }
  653. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 4*modifier)
  654. sleep 87
  655. if !GetKeyState(key_shoot)
  656. {
  657. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  658. break
  659. }
  660. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 4*modifier)
  661. sleep 87
  662. if !GetKeyState(key_shoot)
  663. {
  664. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  665. break
  666. }
  667. DllCall("mouse_event", "UInt", 0x01, "UInt", -11*modifier, "UInt", 1*modifier)
  668. sleep 87
  669. if !GetKeyState(key_shoot)
  670. {
  671. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  672. break
  673. }
  674. DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -2*modifier)
  675. sleep 87
  676. if !GetKeyState(key_shoot)
  677. {
  678. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  679. break
  680. }
  681. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 2*modifier)
  682. sleep 88
  683. if !GetKeyState(key_shoot)
  684. {
  685. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  686. break
  687. }
  688. DllCall("mouse_event", "UInt", 0x01, "UInt", 33*modifier, "UInt", -1*modifier)
  689. sleep 88
  690. if !GetKeyState(key_shoot)
  691. {
  692. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  693. break
  694. }
  695. DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 6*modifier)
  696. sleep 88
  697. if !GetKeyState(key_shoot)
  698. {
  699. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  700. break
  701. }
  702. DllCall("mouse_event", "UInt", 0x01, "UInt", 27*modifier, "UInt", 3*modifier)
  703. sleep 88
  704. if !GetKeyState(key_shoot)
  705. {
  706. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  707. break
  708. }
  709. DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 2*modifier)
  710. sleep 88
  711. if !GetKeyState(key_shoot)
  712. {
  713. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  714. break
  715. }
  716. DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 0*modifier)
  717. sleep 88
  718. if !GetKeyState(key_shoot)
  719. {
  720. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  721. break
  722. }
  723. DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 0*modifier)
  724. sleep 87
  725. if !GetKeyState(key_shoot)
  726. {
  727. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  728. break
  729. }
  730. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 5*modifier)
  731. sleep 87
  732. if !GetKeyState(key_shoot)
  733. {
  734. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  735. break
  736. }
  737. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 5*modifier)
  738. sleep 87
  739. if !GetKeyState(key_shoot)
  740. {
  741. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  742. break
  743. }
  744. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 1*modifier)
  745. sleep 87
  746. if !GetKeyState(key_shoot)
  747. {
  748. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  749. break
  750. }
  751. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", -1*modifier)
  752. if !GetKeyState(key_shoot)
  753. {
  754. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  755. break
  756. }
  757. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  758. sleep 1000
  759. if !GetKeyState(key_shoot)
  760. {
  761. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  762. break
  763. }
  764. }
  765. }
  766. ;Famas
  767. else if famas
  768. {
  769. loop
  770. {
  771. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  772. sleep 30
  773. if !GetKeyState(key_shoot)
  774. {
  775. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  776. break
  777. }
  778. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 5*modifier)
  779. sleep 88
  780. if !GetKeyState(key_shoot)
  781. {
  782. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  783. break
  784. }
  785. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 4*modifier)
  786. sleep 88
  787. if !GetKeyState(key_shoot)
  788. {
  789. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  790. break
  791. }
  792. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 10*modifier)
  793. sleep 88
  794. if !GetKeyState(key_shoot)
  795. {
  796. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  797. break
  798. }
  799. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 17*modifier)
  800. sleep 88
  801. if !GetKeyState(key_shoot)
  802. {
  803. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  804. break
  805. }
  806. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 20*modifier)
  807. sleep 88
  808. if !GetKeyState(key_shoot)
  809. {
  810. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  811. break
  812. }
  813. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 18*modifier)
  814. sleep 88
  815. if !GetKeyState(key_shoot)
  816. {
  817. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  818. break
  819. }
  820. DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", 12*modifier)
  821. sleep 88
  822. if !GetKeyState(key_shoot)
  823. {
  824. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  825. break
  826. }
  827. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 12*modifier)
  828. sleep 88
  829. if !GetKeyState(key_shoot)
  830. {
  831. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  832. break
  833. }
  834. DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", 8*modifier)
  835. sleep 88
  836. if !GetKeyState(key_shoot)
  837. {
  838. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  839. break
  840. }
  841. DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier, "UInt", 5*modifier)
  842. sleep 88
  843. if !GetKeyState(key_shoot)
  844. {
  845. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  846. break
  847. }
  848. DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", 2*modifier)
  849. sleep 88
  850. if !GetKeyState(key_shoot)
  851. {
  852. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  853. break
  854. }
  855. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 5*modifier)
  856. sleep 87
  857. if !GetKeyState(key_shoot)
  858. {
  859. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  860. break
  861. }
  862. DllCall("mouse_event", "UInt", 0x01, "UInt", 23*modifier, "UInt", 4*modifier)
  863. sleep 88
  864. if !GetKeyState(key_shoot)
  865. {
  866. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  867. break
  868. }
  869. DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 6*modifier)
  870. sleep 88
  871. if !GetKeyState(key_shoot)
  872. {
  873. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  874. break
  875. }
  876. DllCall("mouse_event", "UInt", 0x01, "UInt", 20*modifier, "UInt", -3*modifier)
  877. sleep 88
  878. if !GetKeyState(key_shoot)
  879. {
  880. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  881. break
  882. }
  883. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 0*modifier)
  884. sleep 88
  885. if !GetKeyState(key_shoot)
  886. {
  887. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  888. break
  889. }
  890. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", 0*modifier)
  891. sleep 88
  892. if !GetKeyState(key_shoot)
  893. {
  894. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  895. break
  896. }
  897. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 5*modifier)
  898. sleep 80
  899. if !GetKeyState(key_shoot)
  900. {
  901. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  902. break
  903. }
  904. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 3*modifier)
  905. sleep 88
  906. if !GetKeyState(key_shoot)
  907. {
  908. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  909. break
  910. }
  911. DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -1*modifier)
  912. sleep 80
  913. if !GetKeyState(key_shoot)
  914. {
  915. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  916. break
  917. }
  918. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 2*modifier)
  919. sleep 84
  920. if !GetKeyState(key_shoot)
  921. {
  922. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  923. break
  924. }
  925. DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 0*modifier)
  926. sleep 80
  927. if !GetKeyState(key_shoot)
  928. {
  929. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  930. break
  931. }
  932. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -7*modifier)
  933. sleep 88
  934. if !GetKeyState(key_shoot)
  935. {
  936. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  937. break
  938. }
  939. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -10*modifier)
  940. sleep 88
  941. if !GetKeyState(key_shoot)
  942. {
  943. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  944. break
  945. }
  946. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  947. sleep 1000
  948. if !GetKeyState(key_shoot)
  949. {
  950. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  951. break
  952. }
  953. }
  954. }
  955. ;Galil
  956. else if galil
  957. {
  958. loop
  959. {
  960. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  961. sleep 10
  962. if !GetKeyState(key_shoot)
  963. {
  964. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  965. break
  966. }
  967. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 4*modifier)
  968. sleep 90
  969. if !GetKeyState(key_shoot)
  970. {
  971. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  972. break
  973. }
  974. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 5*modifier)
  975. sleep 90
  976. if !GetKeyState(key_shoot)
  977. {
  978. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  979. break
  980. }
  981. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 10*modifier)
  982. sleep 90
  983. if !GetKeyState(key_shoot)
  984. {
  985. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  986. break
  987. }
  988. DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 15*modifier)
  989. sleep 90
  990. if !GetKeyState(key_shoot)
  991. {
  992. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  993. break
  994. }
  995. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 21*modifier)
  996. sleep 90
  997. if !GetKeyState(key_shoot)
  998. {
  999. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1000. break
  1001. }
  1002. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 24*modifier)
  1003. sleep 90
  1004. if !GetKeyState(key_shoot)
  1005. {
  1006. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1007. break
  1008. }
  1009. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 16*modifier)
  1010. sleep 90
  1011. if !GetKeyState(key_shoot)
  1012. {
  1013. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1014. break
  1015. }
  1016. DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 10*modifier)
  1017. sleep 90
  1018. if !GetKeyState(key_shoot)
  1019. {
  1020. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1021. break
  1022. }
  1023. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 14*modifier)
  1024. sleep 90
  1025. if !GetKeyState(key_shoot)
  1026. {
  1027. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1028. break
  1029. }
  1030. DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier, "UInt", 8*modifier)
  1031. sleep 90
  1032. if !GetKeyState(key_shoot)
  1033. {
  1034. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1035. break
  1036. }
  1037. DllCall("mouse_event", "UInt", 0x01, "UInt", -30*modifier, "UInt", -3*modifier)
  1038. sleep 90
  1039. if !GetKeyState(key_shoot)
  1040. {
  1041. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1042. break
  1043. }
  1044. DllCall("mouse_event", "UInt", 0x01, "UInt", -29*modifier, "UInt", -13*modifier)
  1045. sleep 90
  1046. if !GetKeyState(key_shoot)
  1047. {
  1048. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1049. break
  1050. }
  1051. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 8*modifier)
  1052. sleep 90
  1053. if !GetKeyState(key_shoot)
  1054. {
  1055. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1056. break
  1057. }
  1058. DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 2*modifier)
  1059. sleep 90
  1060. if !GetKeyState(key_shoot)
  1061. {
  1062. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1063. break
  1064. }
  1065. DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier, "UInt", 1*modifier)
  1066. sleep 90
  1067. if !GetKeyState(key_shoot)
  1068. {
  1069. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1070. break
  1071. }
  1072. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 1*modifier)
  1073. sleep 50
  1074. if !GetKeyState(key_shoot)
  1075. {
  1076. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1077. break
  1078. }
  1079. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 7*modifier)
  1080. sleep 90
  1081. if !GetKeyState(key_shoot)
  1082. {
  1083. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1084. break
  1085. }
  1086. DllCall("mouse_event", "UInt", 0x01, "UInt", 25*modifier, "UInt", 7*modifier)
  1087. sleep 90
  1088. if !GetKeyState(key_shoot)
  1089. {
  1090. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1091. break
  1092. }
  1093. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 4*modifier)
  1094. sleep 90
  1095. if !GetKeyState(key_shoot)
  1096. {
  1097. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1098. break
  1099. }
  1100. DllCall("mouse_event", "UInt", 0x01, "UInt", 25*modifier, "UInt", -3*modifier)
  1101. sleep 90
  1102. if !GetKeyState(key_shoot)
  1103. {
  1104. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1105. break
  1106. }
  1107. DllCall("mouse_event", "UInt", 0x01, "UInt", 31*modifier, "UInt", -9*modifier)
  1108. sleep 90
  1109. if !GetKeyState(key_shoot)
  1110. {
  1111. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1112. break
  1113. }
  1114. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 3*modifier)
  1115. sleep 90
  1116. if !GetKeyState(key_shoot)
  1117. {
  1118. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1119. break
  1120. }
  1121. DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 3*modifier)
  1122. sleep 90
  1123. if !GetKeyState(key_shoot)
  1124. {
  1125. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1126. break
  1127. }
  1128. DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", -1*modifier)
  1129. sleep 90
  1130. if !GetKeyState(key_shoot)
  1131. {
  1132. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1133. break
  1134. }
  1135. DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", -1*modifier)
  1136. sleep 90
  1137. if !GetKeyState(key_shoot)
  1138. {
  1139. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1140. break
  1141. }
  1142. DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", -4*modifier)
  1143. sleep 90
  1144. if !GetKeyState(key_shoot)
  1145. {
  1146. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1147. break
  1148. }
  1149. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 5*modifier)
  1150. sleep 90
  1151. if !GetKeyState(key_shoot)
  1152. {
  1153. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1154. break
  1155. }
  1156. DllCall("mouse_event", "UInt", 0x01, "UInt", -32*modifier, "UInt", -5*modifier)
  1157. sleep 90
  1158. if !GetKeyState(key_shoot)
  1159. {
  1160. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1161. break
  1162. }
  1163. DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", -3*modifier)
  1164. sleep 90
  1165. if !GetKeyState(key_shoot)
  1166. {
  1167. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1168. break
  1169. }
  1170. DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier, "UInt", 5*modifier)
  1171. sleep 90
  1172. if !GetKeyState(key_shoot)
  1173. {
  1174. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1175. break
  1176. }
  1177. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 8*modifier)
  1178. sleep 90
  1179. if !GetKeyState(key_shoot)
  1180. {
  1181. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1182. break
  1183. }
  1184. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", -3*modifier)
  1185. sleep 90
  1186. if !GetKeyState(key_shoot)
  1187. {
  1188. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1189. break
  1190. }
  1191. DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", -14*modifier)
  1192. sleep 90
  1193. if !GetKeyState(key_shoot)
  1194. {
  1195. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1196. break
  1197. }
  1198. DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -1*modifier)
  1199. sleep 90
  1200. if !GetKeyState(key_shoot)
  1201. {
  1202. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1203. break
  1204. }
  1205. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1206. sleep 1000
  1207. if !GetKeyState(key_shoot)
  1208. {
  1209. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1210. break
  1211. }
  1212. }
  1213. }
  1214. ;UMP-45
  1215. else if ump
  1216. {
  1217. loop
  1218. {
  1219. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1220. sleep 15
  1221. if !GetKeyState(key_shoot)
  1222. {
  1223. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1224. break
  1225. }
  1226. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 6*modifier)
  1227. sleep 90
  1228. if !GetKeyState(key_shoot)
  1229. {
  1230. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1231. break
  1232. }
  1233. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 8*modifier)
  1234. sleep 90
  1235. if !GetKeyState(key_shoot)
  1236. {
  1237. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1238. break
  1239. }
  1240. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 18*modifier)
  1241. sleep 90
  1242. if !GetKeyState(key_shoot)
  1243. {
  1244. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1245. break
  1246. }
  1247. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 23*modifier)
  1248. sleep 90
  1249. if !GetKeyState(key_shoot)
  1250. {
  1251. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1252. break
  1253. }
  1254. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 23*modifier)
  1255. sleep 90
  1256. if !GetKeyState(key_shoot)
  1257. {
  1258. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1259. break
  1260. }
  1261. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 26*modifier)
  1262. sleep 90
  1263. if !GetKeyState(key_shoot)
  1264. {
  1265. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1266. break
  1267. }
  1268. DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 17*modifier)
  1269. sleep 90
  1270. if !GetKeyState(key_shoot)
  1271. {
  1272. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1273. break
  1274. }
  1275. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 12*modifier)
  1276. sleep 90
  1277. if !GetKeyState(key_shoot)
  1278. {
  1279. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1280. break
  1281. }
  1282. DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier, "UInt", 13*modifier)
  1283. sleep 90
  1284. if !GetKeyState(key_shoot)
  1285. {
  1286. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1287. break
  1288. }
  1289. DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier, "UInt", 8*modifier)
  1290. sleep 90
  1291. if !GetKeyState(key_shoot)
  1292. {
  1293. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1294. break
  1295. }
  1296. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", 5*modifier)
  1297. sleep 90
  1298. if !GetKeyState(key_shoot)
  1299. {
  1300. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1301. break
  1302. }
  1303. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 3*modifier)
  1304. sleep 90
  1305. if !GetKeyState(key_shoot)
  1306. {
  1307. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1308. break
  1309. }
  1310. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 6*modifier)
  1311. sleep 90
  1312. if !GetKeyState(key_shoot)
  1313. {
  1314. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1315. break
  1316. }
  1317. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 6*modifier)
  1318. sleep 90
  1319. if !GetKeyState(key_shoot)
  1320. {
  1321. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1322. break
  1323. }
  1324. DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier, "UInt", -3*modifier)
  1325. sleep 90
  1326. if !GetKeyState(key_shoot)
  1327. {
  1328. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1329. break
  1330. }
  1331. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", -1*modifier)
  1332. sleep 90
  1333. if !GetKeyState(key_shoot)
  1334. {
  1335. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1336. break
  1337. }
  1338. DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 4*modifier)
  1339. sleep 90
  1340. if !GetKeyState(key_shoot)
  1341. {
  1342. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1343. break
  1344. }
  1345. DllCall("mouse_event", "UInt", 0x01, "UInt", -19*modifier, "UInt", 1*modifier)
  1346. sleep 85
  1347. if !GetKeyState(key_shoot)
  1348. {
  1349. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1350. break
  1351. }
  1352. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", -2*modifier)
  1353. sleep 90
  1354. if !GetKeyState(key_shoot)
  1355. {
  1356. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1357. break
  1358. }
  1359. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -5*modifier)
  1360. sleep 90
  1361. if !GetKeyState(key_shoot)
  1362. {
  1363. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1364. break
  1365. }
  1366. DllCall("mouse_event", "UInt", 0x01, "UInt", 17*modifier, "UInt", -2*modifier)
  1367. sleep 85
  1368. if !GetKeyState(key_shoot)
  1369. {
  1370. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1371. break
  1372. }
  1373. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 3*modifier)
  1374. sleep 90
  1375. if !GetKeyState(key_shoot)
  1376. {
  1377. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1378. break
  1379. }
  1380. DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", -2*modifier)
  1381. sleep 90
  1382. if !GetKeyState(key_shoot)
  1383. {
  1384. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1385. break
  1386. }
  1387. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", -1*modifier)
  1388. sleep 90
  1389. if !GetKeyState(key_shoot)
  1390. {
  1391. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1392. break
  1393. }
  1394. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1395. sleep 1000
  1396. if !GetKeyState(key_shoot)
  1397. {
  1398. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1399. break
  1400. }
  1401. }
  1402. }
  1403. ;AUG
  1404. else if aug
  1405. {
  1406. if GetKeyState(key_zoom)
  1407. {
  1408. ;this is the best scale I could figure out for zoomed in norecoil
  1409. obs:=1.2/zoomsens
  1410. }
  1411. else
  1412. {
  1413. obs:=1
  1414. }
  1415. loop
  1416. {
  1417. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1418. sleep 30
  1419. if !GetKeyState(key_shoot)
  1420. {
  1421. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1422. break
  1423. }
  1424. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier*obs, "UInt", 6*modifier*obs)
  1425. sleep 89
  1426. if !GetKeyState(key_shoot)
  1427. {
  1428. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1429. break
  1430. }
  1431. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier*obs, "UInt", 13*modifier*obs)
  1432. sleep 89
  1433. if !GetKeyState(key_shoot)
  1434. {
  1435. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1436. break
  1437. }
  1438. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 22*modifier*obs)
  1439. sleep 89
  1440. if !GetKeyState(key_shoot)
  1441. {
  1442. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1443. break
  1444. }
  1445. DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier*obs, "UInt", 26*modifier*obs)
  1446. sleep 88
  1447. if !GetKeyState(key_shoot)
  1448. {
  1449. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1450. break
  1451. }
  1452. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier*obs, "UInt", 29*modifier*obs)
  1453. sleep 88
  1454. if !GetKeyState(key_shoot)
  1455. {
  1456. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1457. break
  1458. }
  1459. DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier*obs, "UInt", 30*modifier*obs)
  1460. sleep 80
  1461. if !GetKeyState(key_shoot)
  1462. {
  1463. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1464. break
  1465. }
  1466. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 21*modifier*obs)
  1467. sleep 80
  1468. if !GetKeyState(key_shoot)
  1469. {
  1470. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1471. break
  1472. }
  1473. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 15*modifier*obs)
  1474. sleep 89
  1475. if !GetKeyState(key_shoot)
  1476. {
  1477. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1478. break
  1479. }
  1480. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 13*modifier*obs)
  1481. sleep 88
  1482. if !GetKeyState(key_shoot)
  1483. {
  1484. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1485. break
  1486. }
  1487. DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 11*modifier*obs)
  1488. sleep 89
  1489. if !GetKeyState(key_shoot)
  1490. {
  1491. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1492. break
  1493. }
  1494. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 6*modifier*obs)
  1495. sleep 89
  1496. if !GetKeyState(key_shoot)
  1497. {
  1498. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1499. break
  1500. }
  1501. DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier*obs, "UInt", 0*modifier*obs)
  1502. sleep 88
  1503. if !GetKeyState(key_shoot)
  1504. {
  1505. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1506. break
  1507. }
  1508. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier*obs, "UInt", 6*modifier*obs)
  1509. sleep 89
  1510. if !GetKeyState(key_shoot)
  1511. {
  1512. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1513. break
  1514. }
  1515. DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier*obs, "UInt", 5*modifier*obs)
  1516. sleep 88
  1517. if !GetKeyState(key_shoot)
  1518. {
  1519. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1520. break
  1521. }
  1522. DllCall("mouse_event", "UInt", 0x01, "UInt", -38*modifier*obs, "UInt", -11*modifier*obs)
  1523. sleep 89
  1524. if !GetKeyState(key_shoot)
  1525. {
  1526. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1527. break
  1528. }
  1529. DllCall("mouse_event", "UInt", 0x01, "UInt", -31*modifier*obs, "UInt", -13*modifier*obs)
  1530. sleep 89
  1531. if !GetKeyState(key_shoot)
  1532. {
  1533. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1534. break
  1535. }
  1536. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier*obs, "UInt", 6*modifier*obs)
  1537. sleep 88
  1538. if !GetKeyState(key_shoot)
  1539. {
  1540. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1541. break
  1542. }
  1543. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 5*modifier*obs)
  1544. sleep 89
  1545. if !GetKeyState(key_shoot)
  1546. {
  1547. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1548. break
  1549. }
  1550. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier*obs, "UInt", 0*modifier*obs)
  1551. sleep 88
  1552. if !GetKeyState(key_shoot)
  1553. {
  1554. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1555. break
  1556. }
  1557. DllCall("mouse_event", "UInt", 0x01, "UInt", 24*modifier*obs, "UInt", 1*modifier*obs)
  1558. sleep 89
  1559. if !GetKeyState(key_shoot)
  1560. {
  1561. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1562. break
  1563. }
  1564. DllCall("mouse_event", "UInt", 0x01, "UInt", 32*modifier*obs, "UInt", 3*modifier*obs)
  1565. sleep 88
  1566. if !GetKeyState(key_shoot)
  1567. {
  1568. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1569. break
  1570. }
  1571. DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier*obs, "UInt", 6*modifier*obs)
  1572. sleep 89
  1573. if !GetKeyState(key_shoot)
  1574. {
  1575. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1576. break
  1577. }
  1578. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 1*modifier*obs)
  1579. sleep 88
  1580. if !GetKeyState(key_shoot)
  1581. {
  1582. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1583. break
  1584. }
  1585. DllCall("mouse_event", "UInt", 0x01, "UInt", 17*modifier*obs, "UInt", -3*modifier*obs)
  1586. sleep 89
  1587. if !GetKeyState(key_shoot)
  1588. {
  1589. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1590. break
  1591. }
  1592. DllCall("mouse_event", "UInt", 0x01, "UInt", 29*modifier*obs, "UInt", -11*modifier*obs)
  1593. sleep 95
  1594. if !GetKeyState(key_shoot)
  1595. {
  1596. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1597. break
  1598. }
  1599. DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier*obs, "UInt", 0*modifier*obs)
  1600. sleep 89
  1601. if !GetKeyState(key_shoot)
  1602. {
  1603. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1604. break
  1605. }
  1606. DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 6*modifier*obs)
  1607. sleep 89
  1608. if !GetKeyState(key_shoot)
  1609. {
  1610. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1611. break
  1612. }
  1613. DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 3*modifier*obs)
  1614. sleep 89
  1615. if !GetKeyState(key_shoot)
  1616. {
  1617. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1618. break
  1619. }
  1620. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier*obs, "UInt", 1*modifier*obs)
  1621. sleep 89
  1622. if !GetKeyState(key_shoot)
  1623. {
  1624. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1625. break
  1626. }
  1627. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1628. sleep 1000
  1629. if !GetKeyState(key_shoot)
  1630. {
  1631. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1632. break
  1633. }
  1634. }
  1635. }
  1636. ;SG 553
  1637. else if sg
  1638. {
  1639. if GetKeyState(key_zoom)
  1640. {
  1641. ;this is the best scale I could figure out for zoomed in norecoil
  1642. obs:=1.2/zoomsens
  1643. }
  1644. else
  1645. {
  1646. obs:=1
  1647. }
  1648. loop
  1649. {
  1650. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1651. sleep 30
  1652. if !GetKeyState(key_shoot)
  1653. {
  1654. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1655. break
  1656. }
  1657. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier*obs, "UInt", 9*modifier*obs)
  1658. sleep 89
  1659. if !GetKeyState(key_shoot)
  1660. {
  1661. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1662. break
  1663. }
  1664. DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier*obs, "UInt", 15*modifier*obs)
  1665. sleep 89
  1666. if !GetKeyState(key_shoot)
  1667. {
  1668. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1669. break
  1670. }
  1671. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier*obs, "UInt", 25*modifier*obs)
  1672. sleep 89
  1673. if !GetKeyState(key_shoot)
  1674. {
  1675. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1676. break
  1677. }
  1678. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier*obs, "UInt", 29*modifier*obs)
  1679. sleep 88
  1680. if !GetKeyState(key_shoot)
  1681. {
  1682. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1683. break
  1684. }
  1685. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 31*modifier*obs)
  1686. sleep 88
  1687. if !GetKeyState(key_shoot)
  1688. {
  1689. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1690. break
  1691. }
  1692. DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier*obs, "UInt", 36*modifier*obs)
  1693. sleep 80
  1694. if !GetKeyState(key_shoot)
  1695. {
  1696. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1697. break
  1698. }
  1699. DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier*obs, "UInt", 14*modifier*obs)
  1700. sleep 80
  1701. if !GetKeyState(key_shoot)
  1702. {
  1703. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1704. break
  1705. }
  1706. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 17*modifier*obs)
  1707. sleep 89
  1708. if !GetKeyState(key_shoot)
  1709. {
  1710. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1711. break
  1712. }
  1713. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 12*modifier*obs)
  1714. sleep 88
  1715. if !GetKeyState(key_shoot)
  1716. {
  1717. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1718. break
  1719. }
  1720. DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier*obs, "UInt", 8*modifier*obs)
  1721. sleep 89
  1722. if !GetKeyState(key_shoot)
  1723. {
  1724. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1725. break
  1726. }
  1727. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 5*modifier*obs)
  1728. sleep 89
  1729. if !GetKeyState(key_shoot)
  1730. {
  1731. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1732. break
  1733. }
  1734. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 5*modifier*obs)
  1735. sleep 88
  1736. if !GetKeyState(key_shoot)
  1737. {
  1738. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1739. break
  1740. }
  1741. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 6*modifier*obs)
  1742. sleep 89
  1743. if !GetKeyState(key_shoot)
  1744. {
  1745. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1746. break
  1747. }
  1748. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier*obs, "UInt", 11*modifier*obs)
  1749. sleep 88
  1750. if !GetKeyState(key_shoot)
  1751. {
  1752. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1753. break
  1754. }
  1755. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier*obs, "UInt", -6*modifier*obs)
  1756. sleep 89
  1757. if !GetKeyState(key_shoot)
  1758. {
  1759. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1760. break
  1761. }
  1762. DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier*obs, "UInt", -17*modifier*obs)
  1763. sleep 89
  1764. if !GetKeyState(key_shoot)
  1765. {
  1766. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1767. break
  1768. }
  1769. DllCall("mouse_event", "UInt", 0x01, "UInt", -18*modifier*obs, "UInt", -9*modifier*obs)
  1770. sleep 88
  1771. if !GetKeyState(key_shoot)
  1772. {
  1773. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1774. break
  1775. }
  1776. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", -2*modifier*obs)
  1777. sleep 89
  1778. if !GetKeyState(key_shoot)
  1779. {
  1780. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1781. break
  1782. }
  1783. DllCall("mouse_event", "UInt", 0x01, "UInt", 41*modifier*obs, "UInt", 3*modifier*obs)
  1784. sleep 88
  1785. if !GetKeyState(key_shoot)
  1786. {
  1787. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1788. break
  1789. }
  1790. DllCall("mouse_event", "UInt", 0x01, "UInt", 56*modifier*obs, "UInt", -5*modifier*obs)
  1791. sleep 89
  1792. if !GetKeyState(key_shoot)
  1793. {
  1794. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1795. break
  1796. }
  1797. DllCall("mouse_event", "UInt", 0x01, "UInt", 43*modifier*obs, "UInt", -1*modifier*obs)
  1798. sleep 88
  1799. if !GetKeyState(key_shoot)
  1800. {
  1801. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1802. break
  1803. }
  1804. DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier*obs, "UInt", 9*modifier*obs)
  1805. sleep 89
  1806. if !GetKeyState(key_shoot)
  1807. {
  1808. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1809. break
  1810. }
  1811. DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 9*modifier*obs)
  1812. sleep 88
  1813. if !GetKeyState(key_shoot)
  1814. {
  1815. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1816. break
  1817. }
  1818. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 7*modifier*obs)
  1819. sleep 89
  1820. if !GetKeyState(key_shoot)
  1821. {
  1822. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1823. break
  1824. }
  1825. DllCall("mouse_event", "UInt", 0x01, "UInt", 21*modifier*obs, "UInt", -3*modifier*obs)
  1826. sleep 95
  1827. if !GetKeyState(key_shoot)
  1828. {
  1829. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1830. break
  1831. }
  1832. DllCall("mouse_event", "UInt", 0x01, "UInt", 29*modifier*obs, "UInt", -4*modifier*obs)
  1833. sleep 89
  1834. if !GetKeyState(key_shoot)
  1835. {
  1836. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1837. break
  1838. }
  1839. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier*obs, "UInt", 8*modifier*obs)
  1840. sleep 89
  1841. if !GetKeyState(key_shoot)
  1842. {
  1843. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1844. break
  1845. }
  1846. DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier*obs, "UInt", 5*modifier*obs)
  1847. sleep 89
  1848. if !GetKeyState(key_shoot)
  1849. {
  1850. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1851. break
  1852. }
  1853. DllCall("mouse_event", "UInt", 0x01, "UInt", -38*modifier*obs, "UInt", -5*modifier*obs)
  1854. sleep 89
  1855. if !GetKeyState(key_shoot)
  1856. {
  1857. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1858. break
  1859. }
  1860. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1861. sleep 1000
  1862. if !GetKeyState(key_shoot)
  1863. {
  1864. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1865. break
  1866. }
  1867. }
  1868. }
  1869. }
  1870. }
  1871.  
  1872. ;Bhop
  1873. ~F1::
  1874. Hotkey, *~$Space, Toggle
  1875. SoundPlay, %A_ScriptDir%\12.mp3
  1876. return
  1877. *~$Space::
  1878. sleep 1
  1879. loop
  1880. {
  1881. GetKeyState, SpaceState, Space, P
  1882. if Spacestate = U
  1883. break
  1884. sleep 1
  1885. Send, {Blind}{Space}
  1886. }
  1887. return
  1888.  
  1889. ;Rapid fire
  1890. ~F2::
  1891. Hotkey, *~$MButton, Toggle
  1892. SoundPlay, %A_ScriptDir%\13.mp3
  1893. return
  1894. *~$MButton::
  1895. sleep 10
  1896. loop
  1897. {
  1898. GetKeyState, state, MButton
  1899. if state = U
  1900. break
  1901. Sleep 1
  1902. Send, {Blind}{LButton}
  1903. }
  1904. return
  1905.  
  1906. ;180 Turnaround
  1907. F3::
  1908. Hotkey, *~$t, Toggle
  1909. SoundPlay, %A_ScriptDir%\11.mp3
  1910. return
  1911. *~$t::
  1912. DllCall("mouse_event", "UInt", 0x01, "UInt", 223*modifier, "UInt", 0)
  1913. sleep 1
  1914. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1915. sleep 1
  1916. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1917. sleep 1
  1918. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1919. sleep 1
  1920. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1921. sleep 1
  1922. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1923. sleep 1
  1924. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1925. sleep 1
  1926. DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
  1927. sleep 200
  1928. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement