查看: 1417|回复: 1

[辅助工具] 绝地求生完美无后座宏代码

[复制链接]
发表于 2017-10-20 09:48 | 显示全部楼层 |阅读模式
官方团队 2017-10-20 09:48 1417 1 显示全部楼层
以下代码为外网搬运,根据原贴内容,代码是原贴作者朋友开发的,楼主未测试,有喜好的可以自行测试。

无后座宏代码

此为原贴内容,意思就是讲代码复制进记事本,然后保存成“你的名字”.ahk
All you have to do is copy the above code put inside a notepad and save it as "Your name here" .ahk
这边是触发宏的快捷键,都是枪名,没啥好说的。
The macro is activated by the keyboard keys:

UMP:="F1"
UZI:="F2"
AKM:="F3"
M416:="F4"
Scar:="F5"
M16a4:="F6"
Groza:="F7"
M249:="home"
Vector:="F9"
SKS/MINI-14/M14:="F10"
Tommygun:="F11"
Glock:="ins"
Turn off:="capslock"
Terminate:="Del"

以下为代码
  1. sens:=3.0
  2. zoomsens:=0.9


  3. key_ump:="F1"
  4. key_uzi:="F2"
  5. key_akm:="F3"
  6. key_m416:="F4"
  7. key_scar:="F5"
  8. key_m16a4:="F6"
  9. key_groza:="F7"
  10. key_m249:="home"
  11. key_vector:="F9"
  12. key_skspubg:="F10"
  13. key_Tgun:="F11"
  14. key_glock:="ins"
  15. key_RCoff:="capslock"
  16. key_Terminate:="Del"
  17. key_shoot:="LButton"
  18. key_zoom:="RButtont"


  19. modifier:=2.52/sens




  20. loop {
  21. sleep 1

  22. if GetKeyState(key_ump)
  23. {
  24. ump:=true
  25. m416:=false
  26. uzi:=false
  27. akm:=false
  28. scar:=false
  29. m16a4:=false
  30. groza:=false
  31. glock:=false
  32. m249:=false
  33. vector:=false
  34. skspubg:=false
  35. Tgun:=false

  36. }
  37. if GetKeyState(key_glock)
  38. {
  39. glock:=true
  40. ump:=false
  41. m416:=false
  42. uzi:=false
  43. akm:=false
  44. scar:=false
  45. m16a4:=false
  46. groza:=false
  47. m249:=false
  48. vector:=false
  49. skspubg:=false
  50. Tgun:=false

  51. }
  52. if GetKeyState(key_m16a4)
  53. {
  54. m16a4:=true
  55. m416:=false
  56. uzi:=false
  57. akm:=false
  58. scar:=false
  59. ump:=false
  60. groza:=false
  61. glock:=false
  62. m249:=false
  63. vector:=false
  64. skspubg:=false
  65. Tgun:=false

  66. }
  67. if GetKeyState(key_scar)
  68. {
  69. scar:=true
  70. m416:=false
  71. uzi:=false
  72. akm:=false
  73. ump:=false
  74. m16a4:=false
  75. groza:=false
  76. glock:=false
  77. m249:=false
  78. vector:=false
  79. skspubg:=false
  80. Tgun:=false

  81. }
  82. if GetKeyState(key_m416)
  83. {
  84. m416:=true
  85. ump:=false
  86. uzi:=false
  87. akm:=false
  88. scar:=false
  89. m16a4:=false
  90. groza:=false
  91. glock:=false
  92. m249:=false
  93. vector:=false
  94. skspubg:=false
  95. Tgun:=false

  96. }

  97. if GetKeyState(key_akm)
  98. {
  99. akm:=true
  100. m416:=false
  101. uzi:=false
  102. ump:=false
  103. scar:=false
  104. m16a4:=false
  105. groza:=false
  106. glock:=false
  107. m249:=false
  108. vector:=false
  109. skspubg:=false
  110. Tgun:=false

  111. }


  112. if GetKeyState(key_uzi)
  113. {
  114. uzi:=true
  115. m416:=false
  116. akm:=false
  117. scar:=false
  118. ump:=false
  119. m16a4:=false
  120. groza:=false
  121. glock:=false
  122. m249:=false
  123. vector:=false
  124. skspubg:=false
  125. Tgun:=false

  126. }
  127. if GetKeyState(key_groza)
  128. {
  129. groza:=true
  130. uzi:=false
  131. m416:=false
  132. akm:=false
  133. scar:=false
  134. ump:=false
  135. m16a4:=false
  136. glock:=false
  137. m249:=false
  138. vector:=false
  139. skspubg:=false
  140. Tgun:=false

  141. }
  142. if GetKeyState(key_m249)
  143. {
  144. m249:=true
  145. groza:=false
  146. uzi:=false
  147. m416:=false
  148. akm:=false
  149. scar:=false
  150. ump:=false
  151. m16a4:=false
  152. glock:=false
  153. vector:=false
  154. skspubg:=false
  155. Tgun:=false

  156. }
  157. if GetKeyState(key_vector)
  158. {
  159. vector:=true
  160. m249:=false
  161. groza:=false
  162. uzi:=false
  163. m416:=false
  164. akm:=false
  165. scar:=false
  166. ump:=false
  167. m16a4:=false
  168. glock:=false
  169. skspubg:=false
  170. mk14pubg:=false
  171. Tgun:=false

  172. }
  173. if GetKeyState(key_skspubg)
  174. {
  175. vector:=false
  176. m249:=false
  177. groza:=false
  178. uzi:=false
  179. m416:=false
  180. akm:=false
  181. scar:=false
  182. ump:=false
  183. m16a4:=false
  184. glock:=false
  185. skspubg:=true
  186. Tgun:=false
  187. }

  188. if GetKeyState(key_Tgun)
  189. {
  190. Tgun:=true
  191. vector:=false
  192. m249:=false
  193. groza:=false
  194. uzi:=false
  195. m416:=false
  196. akm:=false
  197. scar:=false
  198. ump:=false
  199. m16a4:=false
  200. glock:=false
  201. skspubg:=false
  202. }


  203. if GetKeyState(key_Terminate)
  204. {
  205. sleep 2000
  206. ExitApp
  207. }

  208. if GetKeyState(key_RCoff)
  209. {
  210. akm:=false
  211. uzi:=false
  212. scar:=false
  213. ump:=false
  214. m416:=false
  215. m16a4:=false
  216. groza:=false
  217. glock:=false
  218. m249:=false
  219. vector:=false
  220. skspubg:=false
  221. Tgun:=false

  222. }

  223. if GetKeyState(key_shoot)
  224. {

  225. if ump
  226. {
  227. loop
  228. {
  229. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  230. sleep 92
  231. if !GetKeyState(key_shoot)
  232. {
  233. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  234. break
  235. }
  236. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  237. sleep 92
  238. if !GetKeyState(key_shoot)
  239. {
  240. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  241. break
  242. }
  243. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  244. sleep 92
  245. if !GetKeyState(key_shoot)
  246. {
  247. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  248. break
  249. }
  250. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  251. sleep 92
  252. if !GetKeyState(key_shoot)
  253. {
  254. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  255. break
  256. }
  257. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 22*modifier)
  258. sleep 92
  259. if !GetKeyState(key_shoot)
  260. {
  261. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  262. break
  263. }
  264. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 20*modifier)
  265. sleep 92
  266. if !GetKeyState(key_shoot)
  267. {
  268. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  269. break
  270. }
  271. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 23*modifier)
  272. sleep 92
  273. if !GetKeyState(key_shoot)
  274. {
  275. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  276. break
  277. }
  278. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  279. sleep 92
  280. if !GetKeyState(key_shoot)
  281. {
  282. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  283. break
  284. }
  285. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  286. sleep 92
  287. if !GetKeyState(key_shoot)
  288. {
  289. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  290. break
  291. }
  292. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  293. sleep 92
  294. if !GetKeyState(key_shoot)
  295. {
  296. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  297. break
  298. }
  299. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  300. sleep 92
  301. if !GetKeyState(key_shoot)
  302. {
  303. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  304. break
  305. }
  306. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  307. sleep 92
  308. if !GetKeyState(key_shoot)
  309. {
  310. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  311. break
  312. }
  313. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  314. sleep 92
  315. if !GetKeyState(key_shoot)
  316. {
  317. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  318. break
  319. }
  320. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  321. sleep 92
  322. if !GetKeyState(key_shoot)
  323. {
  324. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  325. break
  326. }
  327. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  328. sleep 92
  329. if !GetKeyState(key_shoot)
  330. {
  331. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  332. break
  333. }
  334. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  335. sleep 92
  336. if !GetKeyState(key_shoot)
  337. {
  338. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  339. break
  340. }
  341. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  342. sleep 92
  343. if !GetKeyState(key_shoot)
  344. {
  345. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  346. break
  347. }
  348. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  349. sleep 92
  350. if !GetKeyState(key_shoot)
  351. {
  352. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  353. break
  354. }
  355. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  356. sleep 92
  357. if !GetKeyState(key_shoot)
  358. {
  359. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  360. break
  361. }
  362. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  363. sleep 92
  364. if !GetKeyState(key_shoot)
  365. {
  366. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  367. break
  368. }
  369. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 35*modifier)
  370. sleep 92
  371. if !GetKeyState(key_shoot)
  372. {
  373. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  374. break
  375. }
  376. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  377. sleep 92
  378. if !GetKeyState(key_shoot)
  379. {
  380. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  381. break
  382. }
  383. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)
  384. sleep 92
  385. if !GetKeyState(key_shoot)
  386. {
  387. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  388. break
  389. }
  390. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 28*modifier)

  391. sleep 92
  392. if !GetKeyState(key_shoot)
  393. {
  394. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  395. break
  396. }
  397. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 28*modifier)
  398. if !GetKeyState(key_shoot)
  399. {
  400. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  401. break
  402. }
  403. sleep 92
  404. if !GetKeyState(key_shoot)
  405. {
  406. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  407. break
  408. }
  409. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 28*modifier)
  410. if !GetKeyState(key_shoot)
  411. {
  412. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  413. break
  414. }
  415. sleep 92
  416. if !GetKeyState(key_shoot)
  417. {
  418. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  419. break
  420. }
  421. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 28*modifier)
  422. if !GetKeyState(key_shoot)
  423. {
  424. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  425. break
  426. }
  427. sleep 92
  428. if !GetKeyState(key_shoot)
  429. {
  430. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  431. break
  432. }
  433. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 28*modifier)
  434. if !GetKeyState(key_shoot)
  435. {
  436. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  437. break
  438. }
  439. sleep 92
  440. if !GetKeyState(key_shoot)
  441. {
  442. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  443. break
  444. }
  445. DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 28*modifier)
  446. if !GetKeyState(key_shoot)
  447. {
  448. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  449. break
  450. }
  451. sleep 92
  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", -14*modifier, "UInt", 28*modifier)
  458. if !GetKeyState(key_shoot)
  459. {
  460. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  461. break
  462. }
  463. sleep 92
  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", -14*modifier, "UInt", 28*modifier)
  470. if !GetKeyState(key_shoot)
  471. {
  472. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  473. break
  474. }
  475. sleep 92
  476. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  477. sleep 1000
  478. if !GetKeyState(key_shoot)
  479. {
  480. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  481. break
  482. }
  483. }
  484. }

  485. else if AKM
  486. {
  487. loop
  488. {
  489. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  490. sleep 15
  491. if !GetKeyState(key_shoot)
  492. {
  493. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  494. break
  495. }
  496. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  497. sleep 100
  498. if !GetKeyState(key_shoot)
  499. {
  500. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  501. break
  502. }
  503. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  504. sleep 100
  505. if !GetKeyState(key_shoot)
  506. {
  507. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  508. break
  509. }
  510. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  511. sleep 100
  512. if !GetKeyState(key_shoot)
  513. {
  514. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  515. break
  516. }
  517. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 30*modifier)
  518. sleep 100
  519. if !GetKeyState(key_shoot)
  520. {
  521. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  522. break
  523. }
  524. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier, "UInt", 35*modifier)
  525. sleep 100
  526. if !GetKeyState(key_shoot)
  527. {
  528. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  529. break
  530. }
  531. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 35*modifier)
  532. sleep 100
  533. if !GetKeyState(key_shoot)
  534. {
  535. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  536. break
  537. }
  538. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 35*modifier)
  539. sleep 100
  540. if !GetKeyState(key_shoot)
  541. {
  542. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  543. break
  544. }
  545. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 37*modifier)
  546. sleep 100
  547. if !GetKeyState(key_shoot)
  548. {
  549. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  550. break
  551. }
  552. DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 32*modifier)
  553. sleep 100
  554. if !GetKeyState(key_shoot)
  555. {
  556. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  557. break
  558. }
  559. DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 32*modifier)
  560. sleep 100
  561. if !GetKeyState(key_shoot)
  562. {
  563. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  564. break
  565. }
  566. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 32*modifier)
  567. sleep 100
  568. if !GetKeyState(key_shoot)
  569. {
  570. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  571. break
  572. }
  573. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 42*modifier)
  574. sleep 100
  575. if !GetKeyState(key_shoot)
  576. {
  577. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  578. break
  579. }
  580. DllCall("mouse_event", "UInt", 0x01, "UInt", 7*modifier, "UInt", 42*modifier)
  581. sleep 100
  582. if !GetKeyState(key_shoot)
  583. {
  584. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  585. break
  586. }
  587. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 42*modifier)
  588. sleep 100
  589. if !GetKeyState(key_shoot)
  590. {
  591. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  592. break
  593. }
  594. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 42*modifier)
  595. sleep 100
  596. if !GetKeyState(key_shoot)
  597. {
  598. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  599. break
  600. }
  601. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier, "UInt", 42*modifier)
  602. sleep 100
  603. if !GetKeyState(key_shoot)
  604. {
  605. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  606. break
  607. }
  608. DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 42*modifier)
  609. sleep 100
  610. if !GetKeyState(key_shoot)
  611. {
  612. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  613. break
  614. }
  615. DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier, "UInt", 42*modifier)
  616. sleep 100
  617. if !GetKeyState(key_shoot)
  618. {
  619. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  620. break
  621. }
  622. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 42*modifier)
  623. sleep 100
  624. if !GetKeyState(key_shoot)
  625. {
  626. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  627. break
  628. }
  629. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 42*modifier)
  630. sleep 100
  631. if !GetKeyState(key_shoot)
  632. {
  633. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  634. break
  635. }
  636. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 42*modifier)
  637. sleep 100
  638. if !GetKeyState(key_shoot)
  639. {
  640. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  641. break
  642. }
  643. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 42*modifier)
  644. sleep 100
  645. if !GetKeyState(key_shoot)
  646. {
  647. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  648. break
  649. }
  650. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 42*modifier)
  651. sleep 100
  652. if !GetKeyState(key_shoot)
  653. {
  654. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  655. break
  656. }
  657. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 42*modifier)
  658. sleep 100
  659. if !GetKeyState(key_shoot)
  660. {
  661. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  662. break
  663. }
  664. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 42*modifier)
  665. sleep 100
  666. if !GetKeyState(key_shoot)
  667. {
  668. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  669. break
  670. }
  671. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 42*modifier)
  672. sleep 100
  673. if !GetKeyState(key_shoot)
  674. {
  675. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  676. break
  677. }
  678. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 42*modifier)
  679. sleep 100
  680. if !GetKeyState(key_shoot)
  681. {
  682. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  683. break
  684. }
  685. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 42*modifier)
  686. sleep 100
  687. if !GetKeyState(key_shoot)
  688. {
  689. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  690. break
  691. }
  692. DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 42*modifier)
  693. sleep 100
  694. if !GetKeyState(key_shoot)
  695. {
  696. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  697. break
  698. }
  699. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 42*modifier)
  700. sleep 100
  701. if !GetKeyState(key_shoot)
  702. {
  703. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  704. break
  705. }
  706. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 42*modifier)
  707. sleep 100
  708. if !GetKeyState(key_shoot)
  709. {
  710. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  711. break
  712. }
  713. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 42*modifier)
  714. sleep 100
  715. if !GetKeyState(key_shoot)
  716. {
  717. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  718. break
  719. }
  720. DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 42*modifier)
  721. sleep 100
  722. if !GetKeyState(key_shoot)
  723. {
  724. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  725. break
  726. }
  727. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 42*modifier)
  728. sleep 100
  729. if !GetKeyState(key_shoot)
  730. {
  731. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  732. break
  733. }
  734. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 42*modifier)
  735. sleep 100
  736. if !GetKeyState(key_shoot)
  737. {
  738. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  739. break
  740. }
  741. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 42*modifier)
  742. sleep 100
  743. if !GetKeyState(key_shoot)
  744. {
  745. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  746. break
  747. }
  748. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 2*modifier)
  749. sleep 100
  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", 0x01, "UInt", 0*modifier, "UInt", 6*modifier)
  756. sleep 100






  757. if !GetKeyState(key_shoot)
  758. {
  759. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  760. break
  761. }
  762. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  763. sleep 1000
  764. if !GetKeyState(key_shoot)
  765. {
  766. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  767. break
  768. }
  769. }
  770. }

  771. else if uzi
  772. {
  773. loop
  774. {
  775. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  776. sleep 15
  777. if !GetKeyState(key_shoot)
  778. {
  779. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  780. break
  781. }
  782. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  783. sleep 48
  784. if !GetKeyState(key_shoot)
  785. {
  786. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  787. break
  788. }
  789. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  790. sleep 48
  791. if !GetKeyState(key_shoot)
  792. {
  793. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  794. break
  795. }
  796. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  797. sleep 48
  798. if !GetKeyState(key_shoot)
  799. {
  800. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  801. break
  802. }
  803. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  804. sleep 48
  805. if !GetKeyState(key_shoot)
  806. {
  807. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  808. break
  809. }
  810. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  811. sleep 48
  812. if !GetKeyState(key_shoot)
  813. {
  814. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  815. break
  816. }
  817. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  818. sleep 48
  819. if !GetKeyState(key_shoot)
  820. {
  821. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  822. break
  823. }
  824. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  825. sleep 48
  826. if !GetKeyState(key_shoot)
  827. {
  828. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  829. break
  830. }
  831. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  832. sleep 48
  833. if !GetKeyState(key_shoot)
  834. {
  835. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  836. break
  837. }
  838. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  839. sleep 48
  840. if !GetKeyState(key_shoot)
  841. {
  842. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  843. break
  844. }
  845. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  846. sleep 48
  847. if !GetKeyState(key_shoot)
  848. {
  849. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  850. break
  851. }
  852. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  853. sleep 48
  854. if !GetKeyState(key_shoot)
  855. {
  856. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  857. break
  858. }
  859. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  860. sleep 48
  861. if !GetKeyState(key_shoot)
  862. {
  863. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  864. break
  865. }
  866. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  867. sleep 48
  868. if !GetKeyState(key_shoot)
  869. {
  870. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  871. break
  872. }
  873. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  874. sleep 48
  875. if !GetKeyState(key_shoot)
  876. {
  877. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  878. break
  879. }
  880. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 10*modifier)
  881. sleep 48
  882. if !GetKeyState(key_shoot)
  883. {
  884. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  885. break
  886. }
  887. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 14*modifier)
  888. sleep 48
  889. if !GetKeyState(key_shoot)
  890. {
  891. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  892. break
  893. }
  894. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 20*modifier)
  895. sleep 48
  896. if !GetKeyState(key_shoot)
  897. {
  898. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  899. break
  900. }
  901. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 20*modifier)
  902. sleep 48
  903. if !GetKeyState(key_shoot)
  904. {
  905. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  906. break
  907. }
  908. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 20*modifier)
  909. sleep 48
  910. if !GetKeyState(key_shoot)
  911. {
  912. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  913. break
  914. }
  915. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 23*modifier)
  916. sleep 48
  917. if !GetKeyState(key_shoot)
  918. {
  919. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  920. break
  921. }
  922. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 27*modifier)
  923. sleep 48
  924. if !GetKeyState(key_shoot)
  925. {
  926. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  927. break
  928. }
  929. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 27*modifier)
  930. sleep 48
  931. if !GetKeyState(key_shoot)
  932. {
  933. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  934. break
  935. }
  936. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 27*modifier)
  937. sleep 48
  938. if !GetKeyState(key_shoot)
  939. {
  940. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  941. break
  942. }
  943. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 27*modifier)
  944. sleep 48
  945. if !GetKeyState(key_shoot)
  946. {
  947. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  948. break
  949. }
  950. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 27*modifier)
  951. sleep 48S
  952. if !GetKeyState(key_shoot)
  953. {
  954. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  955. break
  956. }
  957. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  958. sleep 1000
  959. if !GetKeyState(key_shoot)
  960. {
  961. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  962. break
  963. }
  964. }
  965. }

  966. else if m416
  967. {
  968. loop
  969. {
  970. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  971. sleep 30
  972. if !GetKeyState(key_shoot)
  973. {
  974. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  975. break
  976. }
  977. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 26*modifier)
  978. sleep 72
  979. if !GetKeyState(key_shoot)
  980. {
  981. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  982. break
  983. }
  984. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 26*modifier)
  985. sleep 72
  986. if !GetKeyState(key_shoot)
  987. {
  988. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  989. break
  990. }
  991. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  992. sleep 72
  993. if !GetKeyState(key_shoot)
  994. {
  995. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  996. break
  997. }
  998. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 27*modifier)
  999. sleep 72
  1000. if !GetKeyState(key_shoot)
  1001. {
  1002. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1003. break
  1004. }
  1005. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 26*modifier)
  1006. sleep 72
  1007. if !GetKeyState(key_shoot)
  1008. {
  1009. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1010. break
  1011. }
  1012. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 28*modifier)
  1013. sleep 72
  1014. if !GetKeyState(key_shoot)
  1015. {
  1016. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1017. break
  1018. }
  1019. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 30*modifier)
  1020. sleep 72
  1021. if !GetKeyState(key_shoot)
  1022. {
  1023. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1024. break
  1025. }
  1026. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 33*modifier)
  1027. sleep 72
  1028. if !GetKeyState(key_shoot)
  1029. {
  1030. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1031. break
  1032. }
  1033. DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 33*modifier)
  1034. sleep 72
  1035. if !GetKeyState(key_shoot)
  1036. {
  1037. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1038. break
  1039. }
  1040. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 33*modifier)
  1041. sleep 72
  1042. if !GetKeyState(key_shoot)
  1043. {
  1044. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1045. break
  1046. }
  1047. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 33*modifier)
  1048. sleep 72
  1049. if !GetKeyState(key_shoot)
  1050. {
  1051. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1052. break
  1053. }
  1054. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 33*modifier)
  1055. sleep 72
  1056. if !GetKeyState(key_shoot)
  1057. {
  1058. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1059. break
  1060. }
  1061. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1062. sleep 72
  1063. if !GetKeyState(key_shoot)
  1064. {
  1065. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1066. break
  1067. }
  1068. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1069. sleep 72
  1070. if !GetKeyState(key_shoot)
  1071. {
  1072. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1073. break
  1074. }
  1075. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1076. sleep 72
  1077. if !GetKeyState(key_shoot)
  1078. {
  1079. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1080. break
  1081. }
  1082. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1083. sleep 72
  1084. if !GetKeyState(key_shoot)
  1085. {
  1086. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1087. break
  1088. }
  1089. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1090. sleep 72
  1091. if !GetKeyState(key_shoot)
  1092. {
  1093. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1094. break
  1095. }
  1096. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1097. sleep 72
  1098. if !GetKeyState(key_shoot)
  1099. {
  1100. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1101. break
  1102. }
  1103. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1104. sleep 72
  1105. if !GetKeyState(key_shoot)
  1106. {
  1107. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1108. break
  1109. }
  1110. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1111. sleep 72
  1112. if !GetKeyState(key_shoot)
  1113. {
  1114. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1115. break
  1116. }
  1117. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1118. sleep 72
  1119. if !GetKeyState(key_shoot)
  1120. {
  1121. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1122. break
  1123. }
  1124. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1125. sleep 72
  1126. if !GetKeyState(key_shoot)
  1127. {
  1128. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1129. break
  1130. }
  1131. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1132. sleep 72
  1133. if !GetKeyState(key_shoot)
  1134. {
  1135. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1136. break
  1137. }
  1138. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1139. sleep 72
  1140. if !GetKeyState(key_shoot)
  1141. {
  1142. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1143. break
  1144. }
  1145. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1146. sleep 72
  1147. if !GetKeyState(key_shoot)
  1148. {
  1149. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1150. break
  1151. }
  1152. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1153. sleep 72
  1154. if !GetKeyState(key_shoot)
  1155. {
  1156. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1157. break
  1158. }
  1159. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1160. sleep 72
  1161. if !GetKeyState(key_shoot)
  1162. {
  1163. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1164. break
  1165. }
  1166. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1167. sleep 72
  1168. if !GetKeyState(key_shoot)
  1169. {
  1170. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1171. break
  1172. }
  1173. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1174. sleep 72
  1175. if !GetKeyState(key_shoot)
  1176. {
  1177. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1178. break
  1179. }
  1180. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1181. sleep 1000
  1182. if !GetKeyState(key_shoot)
  1183. {
  1184. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1185. break
  1186. }
  1187. }
  1188. }

  1189. else if groza
  1190. {
  1191. loop
  1192. {
  1193. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1194. sleep 10
  1195. if !GetKeyState(key_shoot)
  1196. {
  1197. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1198. break
  1199. }
  1200. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 17*modifier)
  1201. sleep 80
  1202. if !GetKeyState(key_shoot)
  1203. {
  1204. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1205. break
  1206. }
  1207. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 17*modifier)
  1208. sleep 80
  1209. if !GetKeyState(key_shoot)
  1210. {
  1211. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1212. break
  1213. }
  1214. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 17*modifier)
  1215. sleep 80
  1216. if !GetKeyState(key_shoot)
  1217. {
  1218. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1219. break
  1220. }
  1221. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 17*modifier)
  1222. sleep 80
  1223. if !GetKeyState(key_shoot)
  1224. {
  1225. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1226. break
  1227. }
  1228. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 17*modifier)
  1229. sleep 80
  1230. if !GetKeyState(key_shoot)
  1231. {
  1232. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1233. break
  1234. }
  1235. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 17*modifier)
  1236. sleep 80
  1237. if !GetKeyState(key_shoot)
  1238. {
  1239. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1240. break
  1241. }
  1242. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 17*modifier)
  1243. sleep 80
  1244. if !GetKeyState(key_shoot)
  1245. {
  1246. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1247. break
  1248. }
  1249. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 17*modifier)
  1250. sleep 80
  1251. if !GetKeyState(key_shoot)
  1252. {
  1253. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1254. break
  1255. }
  1256. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 17*modifier)
  1257. sleep 80
  1258. if !GetKeyState(key_shoot)
  1259. {
  1260. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1261. break
  1262. }
  1263. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1264. sleep 80
  1265. if !GetKeyState(key_shoot)
  1266. {
  1267. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1268. break
  1269. }
  1270. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1271. sleep 80
  1272. if !GetKeyState(key_shoot)
  1273. {
  1274. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1275. break
  1276. }
  1277. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1278. sleep 80
  1279. if !GetKeyState(key_shoot)
  1280. {
  1281. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1282. break
  1283. }
  1284. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1285. sleep 80
  1286. if !GetKeyState(key_shoot)
  1287. {
  1288. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1289. break
  1290. }
  1291. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1292. sleep 80
  1293. if !GetKeyState(key_shoot)
  1294. {
  1295. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1296. break
  1297. }
  1298. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1299. sleep 80
  1300. if !GetKeyState(key_shoot)
  1301. {
  1302. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1303. break
  1304. }
  1305. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1306. sleep 80
  1307. if !GetKeyState(key_shoot)
  1308. {
  1309. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1310. break
  1311. }
  1312. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 35*modifier)
  1313. sleep 80
  1314. if !GetKeyState(key_shoot)
  1315. {
  1316. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1317. break
  1318. }
  1319. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1320. sleep 80
  1321. if !GetKeyState(key_shoot)
  1322. {
  1323. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1324. break
  1325. }
  1326. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1327. sleep 80
  1328. if !GetKeyState(key_shoot)
  1329. {
  1330. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1331. break
  1332. }
  1333. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1334. sleep 80
  1335. if !GetKeyState(key_shoot)
  1336. {
  1337. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1338. break
  1339. }
  1340. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1341. sleep 80
  1342. if !GetKeyState(key_shoot)
  1343. {
  1344. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1345. break
  1346. }
  1347. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1348. sleep 80
  1349. if !GetKeyState(key_shoot)
  1350. {
  1351. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1352. break
  1353. }
  1354. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1355. sleep 80
  1356. if !GetKeyState(key_shoot)
  1357. {
  1358. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1359. break
  1360. }
  1361. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1362. sleep 80
  1363. if !GetKeyState(key_shoot)
  1364. {
  1365. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1366. break
  1367. }
  1368. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1369. sleep 80
  1370. if !GetKeyState(key_shoot)
  1371. {
  1372. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1373. break
  1374. }
  1375. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1376. sleep 80
  1377. if !GetKeyState(key_shoot)
  1378. {
  1379. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1380. break
  1381. }
  1382. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1383. sleep 80
  1384. if !GetKeyState(key_shoot)
  1385. {
  1386. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1387. break
  1388. }
  1389. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1390. sleep 80
  1391. if !GetKeyState(key_shoot)
  1392. {
  1393. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1394. break
  1395. }
  1396. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 40*modifier)
  1397. sleep 80
  1398. if !GetKeyState(key_shoot)
  1399. {
  1400. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1401. break
  1402. }
  1403. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 40*modifier)
  1404. sleep 80
  1405. if !GetKeyState(key_shoot)
  1406. {
  1407. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1408. break
  1409. }
  1410. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 40*modifier)
  1411. sleep 80
  1412. if !GetKeyState(key_shoot)
  1413. {
  1414. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1415. break
  1416. }
  1417. DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 40*modifier)
  1418. sleep 80
  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", -4*modifier, "UInt", 40*modifier)
  1425. sleep 80

  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, 4, int, 0, int, 0, uint, 0, int, 0)
  1432. sleep 1000
  1433. if !GetKeyState(key_shoot)
  1434. {
  1435. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1436. break
  1437. }
  1438. }
  1439. }


  1440. else if glock
  1441. {
  1442. loop
  1443. {
  1444. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1445. sleep 10
  1446. if !GetKeyState(key_shoot)
  1447. {
  1448. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1449. break
  1450. }
  1451. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 25*modifier)
  1452. sleep 60
  1453. if !GetKeyState(key_shoot)
  1454. {
  1455. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1456. break
  1457. }
  1458. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  1459. sleep 60
  1460. if !GetKeyState(key_shoot)
  1461. {
  1462. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1463. break
  1464. }
  1465. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 25*modifier)
  1466. sleep 60
  1467. if !GetKeyState(key_shoot)
  1468. {
  1469. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1470. break
  1471. }
  1472. DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 25*modifier)
  1473. sleep 60
  1474. if !GetKeyState(key_shoot)
  1475. {
  1476. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1477. break
  1478. }
  1479. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  1480. sleep 60
  1481. if !GetKeyState(key_shoot)
  1482. {
  1483. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1484. break
  1485. }
  1486. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 25*modifier)
  1487. sleep 60
  1488. if !GetKeyState(key_shoot)
  1489. {
  1490. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1491. break
  1492. }
  1493. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1494. sleep 60
  1495. if !GetKeyState(key_shoot)
  1496. {
  1497. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1498. break
  1499. }
  1500. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1501. sleep 60
  1502. if !GetKeyState(key_shoot)
  1503. {
  1504. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1505. break
  1506. }
  1507. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 33*modifier)
  1508. sleep 60
  1509. if !GetKeyState(key_shoot)
  1510. {
  1511. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1512. break
  1513. }
  1514. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 33*modifier)
  1515. sleep 60
  1516. if !GetKeyState(key_shoot)
  1517. {
  1518. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1519. break
  1520. }
  1521. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 35*modifier)
  1522. sleep 60
  1523. if !GetKeyState(key_shoot)
  1524. {
  1525. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1526. break
  1527. }
  1528. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1529. sleep 60
  1530. if !GetKeyState(key_shoot)
  1531. {
  1532. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1533. break
  1534. }
  1535. DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier, "UInt", 35*modifier)
  1536. sleep 60
  1537. if !GetKeyState(key_shoot)
  1538. {
  1539. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1540. break
  1541. }
  1542. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 40*modifier)
  1543. sleep 60
  1544. if !GetKeyState(key_shoot)
  1545. {
  1546. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1547. break
  1548. }
  1549. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 40*modifier)
  1550. sleep 60
  1551. if !GetKeyState(key_shoot)
  1552. {
  1553. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1554. break
  1555. }
  1556. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1557. sleep 60
  1558. if !GetKeyState(key_shoot)
  1559. {
  1560. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1561. break
  1562. }
  1563. DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 40*modifier)
  1564. sleep 60





  1565. if !GetKeyState(key_shoot)
  1566. {
  1567. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1568. break
  1569. }
  1570. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1571. sleep 1000
  1572. if !GetKeyState(key_shoot)
  1573. {
  1574. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1575. break
  1576. }
  1577. }
  1578. }



  1579. else if scar
  1580. {
  1581. loop
  1582. {
  1583. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1584. sleep 10
  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", 1*modifier, "UInt", 27*modifier)
  1591. sleep 100
  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", -1*modifier, "UInt", 27*modifier)
  1598. sleep 100
  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", 0*modifier, "UInt", 27*modifier)
  1605. sleep 100
  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", 0*modifier, "UInt", 30*modifier)
  1612. sleep 100
  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", 0*modifier, "UInt", 30*modifier)
  1619. sleep 100
  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", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1626. sleep 100
  1627. if !GetKeyState(key_shoot)
  1628. {
  1629. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1630. break
  1631. }
  1632. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1633. sleep 100
  1634. if !GetKeyState(key_shoot)
  1635. {
  1636. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1637. break
  1638. }
  1639. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1640. sleep 100
  1641. if !GetKeyState(key_shoot)
  1642. {
  1643. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1644. break
  1645. }
  1646. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1647. sleep 100
  1648. if !GetKeyState(key_shoot)
  1649. {
  1650. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1651. break
  1652. }
  1653. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1654. sleep 100
  1655. if !GetKeyState(key_shoot)
  1656. {
  1657. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1658. break
  1659. }
  1660. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1661. sleep 100
  1662. if !GetKeyState(key_shoot)
  1663. {
  1664. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1665. break
  1666. }
  1667. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1668. sleep 100
  1669. if !GetKeyState(key_shoot)
  1670. {
  1671. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1672. break
  1673. }
  1674. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 37*modifier)
  1675. sleep 100
  1676. if !GetKeyState(key_shoot)
  1677. {
  1678. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1679. break
  1680. }
  1681. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 37*modifier)
  1682. sleep 100
  1683. if !GetKeyState(key_shoot)
  1684. {
  1685. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1686. break
  1687. }
  1688. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 37*modifier)
  1689. sleep 100
  1690. if !GetKeyState(key_shoot)
  1691. {
  1692. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1693. break
  1694. }
  1695. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1696. sleep 100
  1697. if !GetKeyState(key_shoot)
  1698. {
  1699. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1700. break
  1701. }
  1702. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1703. sleep 100
  1704. if !GetKeyState(key_shoot)
  1705. {
  1706. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1707. break
  1708. }
  1709. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1710. sleep 100
  1711. if !GetKeyState(key_shoot)
  1712. {
  1713. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1714. break
  1715. }
  1716. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1717. sleep 100
  1718. if !GetKeyState(key_shoot)
  1719. {
  1720. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1721. break
  1722. }
  1723. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1724. sleep 100
  1725. if !GetKeyState(key_shoot)
  1726. {
  1727. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1728. break
  1729. }
  1730. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1731. sleep 100
  1732. if !GetKeyState(key_shoot)
  1733. {
  1734. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1735. break
  1736. }
  1737. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1738. sleep 100
  1739. if !GetKeyState(key_shoot)
  1740. {
  1741. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1742. break
  1743. }
  1744. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1745. sleep 100
  1746. if !GetKeyState(key_shoot)
  1747. {
  1748. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1749. break
  1750. }
  1751. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1752. sleep 100
  1753. if !GetKeyState(key_shoot)
  1754. {
  1755. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1756. break
  1757. }
  1758. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 38*modifier)
  1759. sleep 100
  1760. if !GetKeyState(key_shoot)
  1761. {
  1762. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1763. break
  1764. }
  1765. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 33*modifier)
  1766. sleep 100
  1767. if !GetKeyState(key_shoot)
  1768. {
  1769. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1770. break
  1771. }
  1772. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 33*modifier)
  1773. sleep 100
  1774. if !GetKeyState(key_shoot)
  1775. {
  1776. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1777. break
  1778. }
  1779. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  1780. sleep 100
  1781. if !GetKeyState(key_shoot)
  1782. {
  1783. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1784. break
  1785. }
  1786. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 34*modifier)
  1787. sleep 100
  1788. if !GetKeyState(key_shoot)
  1789. {
  1790. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1791. break
  1792. }
  1793. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 30*modifier)
  1794. sleep 100
  1795. if !GetKeyState(key_shoot)
  1796. {
  1797. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1798. break
  1799. }
  1800. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 20*modifier)
  1801. sleep 100
  1802. if !GetKeyState(key_shoot)
  1803. {
  1804. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1805. break
  1806. }
  1807. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 20*modifier)
  1808. sleep 100
  1809. if !GetKeyState(key_shoot)
  1810. {
  1811. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1812. break
  1813. }
  1814. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 20*modifier)
  1815. sleep 100

  1816. if !GetKeyState(key_shoot)
  1817. {
  1818. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1819. break
  1820. }
  1821. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1822. sleep 1000
  1823. if !GetKeyState(key_shoot)
  1824. {
  1825. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1826. break
  1827. }
  1828. }
  1829. }

  1830. else if m249
  1831. {

  1832. loop
  1833. {
  1834. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  1835. sleep 10
  1836. if !GetKeyState(key_shoot)
  1837. {
  1838. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1839. break
  1840. }
  1841. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 27*modifier)
  1842. sleep 100
  1843. if !GetKeyState(key_shoot)
  1844. {
  1845. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1846. break
  1847. }
  1848. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 27*modifier)
  1849. sleep 100
  1850. if !GetKeyState(key_shoot)
  1851. {
  1852. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1853. break
  1854. }
  1855. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 27*modifier)
  1856. sleep 100
  1857. if !GetKeyState(key_shoot)
  1858. {
  1859. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1860. break
  1861. }
  1862. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  1863. sleep 100
  1864. if !GetKeyState(key_shoot)
  1865. {
  1866. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1867. break
  1868. }
  1869. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  1870. sleep 100
  1871. if !GetKeyState(key_shoot)
  1872. {
  1873. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1874. break
  1875. }
  1876. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1877. sleep 100
  1878. if !GetKeyState(key_shoot)
  1879. {
  1880. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1881. break
  1882. }
  1883. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1884. sleep 100
  1885. if !GetKeyState(key_shoot)
  1886. {
  1887. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1888. break
  1889. }
  1890. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 35*modifier)
  1891. sleep 100
  1892. if !GetKeyState(key_shoot)
  1893. {
  1894. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1895. break
  1896. }
  1897. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1898. sleep 100
  1899. if !GetKeyState(key_shoot)
  1900. {
  1901. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1902. break
  1903. }
  1904. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1905. sleep 100
  1906. if !GetKeyState(key_shoot)
  1907. {
  1908. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1909. break
  1910. }
  1911. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1912. sleep 100
  1913. if !GetKeyState(key_shoot)
  1914. {
  1915. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1916. break
  1917. }
  1918. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1919. sleep 100
  1920. if !GetKeyState(key_shoot)
  1921. {
  1922. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1923. break
  1924. }
  1925. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1926. sleep 100
  1927. if !GetKeyState(key_shoot)
  1928. {
  1929. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1930. break
  1931. }
  1932. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1933. sleep 100
  1934. if !GetKeyState(key_shoot)
  1935. {
  1936. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1937. break
  1938. }
  1939. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 37*modifier)
  1940. sleep 100
  1941. if !GetKeyState(key_shoot)
  1942. {
  1943. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1944. break
  1945. }
  1946. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1947. sleep 100
  1948. if !GetKeyState(key_shoot)
  1949. {
  1950. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1951. break
  1952. }
  1953. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1954. sleep 100
  1955. if !GetKeyState(key_shoot)
  1956. {
  1957. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1958. break
  1959. }
  1960. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  1961. sleep 100
  1962. if !GetKeyState(key_shoot)
  1963. {
  1964. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1965. break
  1966. }
  1967. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1968. sleep 100
  1969. if !GetKeyState(key_shoot)
  1970. {
  1971. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1972. break
  1973. }
  1974. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1975. sleep 100
  1976. if !GetKeyState(key_shoot)
  1977. {
  1978. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1979. break
  1980. }
  1981. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 37*modifier)
  1982. sleep 100
  1983. if !GetKeyState(key_shoot)
  1984. {
  1985. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1986. break
  1987. }
  1988. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1989. sleep 100
  1990. if !GetKeyState(key_shoot)
  1991. {
  1992. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  1993. break
  1994. }
  1995. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  1996. sleep 100
  1997. if !GetKeyState(key_shoot)
  1998. {
  1999. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2000. break
  2001. }
  2002. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 38*modifier)
  2003. sleep 100
  2004. if !GetKeyState(key_shoot)
  2005. {
  2006. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2007. break
  2008. }
  2009. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 38*modifier)
  2010. sleep 100
  2011. if !GetKeyState(key_shoot)
  2012. {
  2013. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2014. break
  2015. }
  2016. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 33*modifier)
  2017. sleep 100
  2018. if !GetKeyState(key_shoot)
  2019. {
  2020. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2021. break
  2022. }
  2023. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 33*modifier)
  2024. sleep 100
  2025. if !GetKeyState(key_shoot)
  2026. {
  2027. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2028. break
  2029. }
  2030. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 33*modifier)
  2031. sleep 100
  2032. if !GetKeyState(key_shoot)
  2033. {
  2034. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2035. break
  2036. }
  2037. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 34*modifier)
  2038. sleep 100
  2039. if !GetKeyState(key_shoot)
  2040. {
  2041. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2042. break
  2043. }
  2044. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 30*modifier)
  2045. sleep 100
  2046. if !GetKeyState(key_shoot)
  2047. {
  2048. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2049. break
  2050. }
  2051. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 20*modifier)
  2052. sleep 100
  2053. if !GetKeyState(key_shoot)
  2054. {
  2055. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2056. break
  2057. }
  2058. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 20*modifier)
  2059. sleep 100
  2060. if !GetKeyState(key_shoot)
  2061. {
  2062. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2063. break
  2064. }
  2065. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 20*modifier)
  2066. sleep 100

  2067. if !GetKeyState(key_shoot)
  2068. {
  2069. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2070. break
  2071. }
  2072. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2073. sleep 1000
  2074. if !GetKeyState(key_shoot)
  2075. {
  2076. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2077. break
  2078. }
  2079. }
  2080. }

  2081. else if Tgun
  2082. {

  2083. loop
  2084. {
  2085. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  2086. sleep 10
  2087. if !GetKeyState(key_shoot)
  2088. {
  2089. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2090. break
  2091. }
  2092. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 40*modifier)
  2093. sleep 86
  2094. if !GetKeyState(key_shoot)
  2095. {
  2096. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2097. break
  2098. }
  2099. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 40*modifier)
  2100. sleep 86
  2101. if !GetKeyState(key_shoot)
  2102. {
  2103. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2104. break
  2105. }
  2106. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 40*modifier)
  2107. sleep 86
  2108. if !GetKeyState(key_shoot)
  2109. {
  2110. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2111. break
  2112. }
  2113. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2114. sleep 86
  2115. if !GetKeyState(key_shoot)
  2116. {
  2117. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2118. break
  2119. }
  2120. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2121. sleep 86
  2122. if !GetKeyState(key_shoot)
  2123. {
  2124. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2125. break
  2126. }
  2127. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2128. sleep 86
  2129. if !GetKeyState(key_shoot)
  2130. {
  2131. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2132. break
  2133. }
  2134. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2135. sleep 86
  2136. if !GetKeyState(key_shoot)
  2137. {
  2138. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2139. break
  2140. }
  2141. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2142. sleep 86
  2143. if !GetKeyState(key_shoot)
  2144. {
  2145. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2146. break
  2147. }
  2148. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2149. sleep 86
  2150. if !GetKeyState(key_shoot)
  2151. {
  2152. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2153. break
  2154. }
  2155. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2156. sleep 86
  2157. if !GetKeyState(key_shoot)
  2158. {
  2159. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2160. break
  2161. }
  2162. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 45*modifier)
  2163. sleep 86
  2164. if !GetKeyState(key_shoot)
  2165. {
  2166. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2167. break
  2168. }
  2169. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 45*modifier)
  2170. sleep 86
  2171. if !GetKeyState(key_shoot)
  2172. {
  2173. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2174. break
  2175. }
  2176. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 45*modifier)
  2177. sleep 86
  2178. if !GetKeyState(key_shoot)
  2179. {
  2180. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2181. break
  2182. }
  2183. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 45*modifier)
  2184. sleep 86
  2185. if !GetKeyState(key_shoot)
  2186. {
  2187. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2188. break
  2189. }
  2190. DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 65*modifier)
  2191. sleep 86
  2192. if !GetKeyState(key_shoot)
  2193. {
  2194. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2195. break
  2196. }
  2197. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 65*modifier)
  2198. sleep 86
  2199. if !GetKeyState(key_shoot)
  2200. {
  2201. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2202. break
  2203. }
  2204. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 65*modifier)
  2205. sleep 86
  2206. if !GetKeyState(key_shoot)
  2207. {
  2208. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2209. break
  2210. }
  2211. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 65*modifier)
  2212. sleep 86
  2213. if !GetKeyState(key_shoot)
  2214. {
  2215. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2216. break
  2217. }
  2218. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 60*modifier)
  2219. sleep 86
  2220. if !GetKeyState(key_shoot)
  2221. {
  2222. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2223. break
  2224. }
  2225. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 70*modifier)
  2226. sleep 86
  2227. if !GetKeyState(key_shoot)
  2228. {
  2229. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2230. break
  2231. }
  2232. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2233. sleep 86
  2234. if !GetKeyState(key_shoot)
  2235. {
  2236. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2237. break
  2238. }
  2239. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2240. sleep 86
  2241. if !GetKeyState(key_shoot)
  2242. {
  2243. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2244. break
  2245. }
  2246. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2247. sleep 86
  2248. if !GetKeyState(key_shoot)
  2249. {
  2250. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2251. break
  2252. }
  2253. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2254. sleep 86
  2255. if !GetKeyState(key_shoot)
  2256. {
  2257. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2258. break
  2259. }
  2260. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 55*modifier)
  2261. sleep 86
  2262. if !GetKeyState(key_shoot)
  2263. {
  2264. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2265. break
  2266. }
  2267. DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 55*modifier)
  2268. sleep 86
  2269. if !GetKeyState(key_shoot)
  2270. {
  2271. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2272. break
  2273. }
  2274. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 55*modifier)
  2275. sleep 86
  2276. if !GetKeyState(key_shoot)
  2277. {
  2278. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2279. break
  2280. }
  2281. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2282. sleep 86
  2283. if !GetKeyState(key_shoot)
  2284. {
  2285. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2286. break
  2287. }
  2288. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 55*modifier)
  2289. sleep 86
  2290. if !GetKeyState(key_shoot)
  2291. {
  2292. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2293. break
  2294. }
  2295. DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 55*modifier)
  2296. sleep 86



  2297. if !GetKeyState(key_shoot)
  2298. {
  2299. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2300. break
  2301. }
  2302. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2303. sleep 1000
  2304. if !GetKeyState(key_shoot)
  2305. {
  2306. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2307. break
  2308. }
  2309. }
  2310. }

  2311. else if vector
  2312. {
  2313. loop
  2314. {
  2315. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  2316. sleep 10
  2317. if !GetKeyState(key_shoot)
  2318. {
  2319. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2320. break
  2321. }
  2322. DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 12*modifier)
  2323. sleep 55
  2324. if !GetKeyState(key_shoot)
  2325. {
  2326. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2327. break
  2328. }
  2329. DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 12*modifier)
  2330. sleep 55
  2331. if !GetKeyState(key_shoot)
  2332. {
  2333. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2334. break
  2335. }
  2336. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 12*modifier)
  2337. sleep 55
  2338. if !GetKeyState(key_shoot)
  2339. {
  2340. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2341. break
  2342. }
  2343. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 15*modifier)
  2344. sleep 55
  2345. if !GetKeyState(key_shoot)
  2346. {
  2347. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2348. break
  2349. }
  2350. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 17*modifier)
  2351. sleep 55
  2352. if !GetKeyState(key_shoot)
  2353. {
  2354. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2355. break
  2356. }
  2357. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  2358. sleep 55
  2359. if !GetKeyState(key_shoot)
  2360. {
  2361. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2362. break
  2363. }
  2364. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  2365. sleep 55
  2366. if !GetKeyState(key_shoot)
  2367. {
  2368. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2369. break
  2370. }
  2371. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 30*modifier)
  2372. sleep 55
  2373. if !GetKeyState(key_shoot)
  2374. {
  2375. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2376. break
  2377. }
  2378. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 30*modifier)
  2379. sleep 55
  2380. if !GetKeyState(key_shoot)
  2381. {
  2382. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2383. break
  2384. }
  2385. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 35*modifier)
  2386. sleep 55
  2387. if !GetKeyState(key_shoot)
  2388. {
  2389. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2390. break
  2391. }
  2392. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 35*modifier)
  2393. sleep 55
  2394. if !GetKeyState(key_shoot)
  2395. {
  2396. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2397. break
  2398. }
  2399. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 35*modifier)
  2400. sleep 55
  2401. if !GetKeyState(key_shoot)
  2402. {
  2403. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2404. break
  2405. }
  2406. DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 35*modifier)
  2407. sleep 55


  2408. if !GetKeyState(key_shoot)
  2409. {
  2410. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2411. break
  2412. }
  2413. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2414. sleep 1000
  2415. if !GetKeyState(key_shoot)
  2416. {
  2417. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2418. break
  2419. }
  2420. }
  2421. }


  2422. else if skspubg
  2423. {
  2424. loop
  2425. {
  2426. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  2427. sleep 10
  2428. if !GetKeyState(key_shoot)
  2429. {
  2430. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2431. break
  2432. }
  2433. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 50*modifier)
  2434. sleep 110



  2435. if !GetKeyState(key_shoot)
  2436. {
  2437. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2438. break
  2439. }
  2440. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2441. sleep 900
  2442. if !GetKeyState(key_shoot)
  2443. {
  2444. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2445. break
  2446. }
  2447. }
  2448. }




  2449. else if m16a4
  2450. {
  2451. loop
  2452. {
  2453. DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
  2454. sleep 10
  2455. if !GetKeyState(key_shoot)
  2456. {
  2457. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2458. break
  2459. }
  2460. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 30*modifier)
  2461. sleep 75
  2462. if !GetKeyState(key_shoot)
  2463. {
  2464. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2465. break
  2466. }
  2467. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 25*modifier)
  2468. sleep 75
  2469. if !GetKeyState(key_shoot)
  2470. {
  2471. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2472. break
  2473. }
  2474. DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 27*modifier)
  2475. sleep 75


  2476. if !GetKeyState(key_shoot)
  2477. {
  2478. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2479. break
  2480. }
  2481. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2482. sleep 75
  2483. if !GetKeyState(key_shoot)
  2484. {
  2485. DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
  2486. break
  2487. }
  2488. }
  2489. }
  2490. }


  2491. }
复制代码
以下是原贴内容


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 返回列表 发新帖

快速回复 返回顶部 返回列表