Advertisement
Guest User

g

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