Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 KB | None | 0 0
  1. ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
  2. ; semicolon, such as this one, are comments. They are not executed.
  3.  
  4. ; This script has a special filename and path because it is automatically
  5. ; launched when you run the program directly. Also, any text file whose
  6. ; name ends in .ahk is associated with the program, which means that it
  7. ; can be launched simply by double-clicking it. You can have as many .ahk
  8. ; files as you want, located in any folder. You can also run more than
  9. ; one ahk file simultaneously and each will get its own tray icon.
  10.  
  11. ; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
  12. ; launches a web site in the default browser. The second is Control+Alt+N
  13. ; and it launches a new Notepad window (or activates an existing one). To
  14. ; try out these hotkeys, run AutoHotkey again, which will load this file.
  15.  
  16. ANPRA = notactive
  17. Safety = on
  18. Safety2 = on
  19. Warning = 1
  20. Mode = 2
  21.  
  22. Numpad2::
  23. SendInput T/me reaches down for his belt, grabs a hold of a pair of cuffs, pulls them out.{Enter}T/me slowly begins to place both ends of the cuffs on to the suspects wrists.{Enter}
  24. return
  25.  
  26. ^Numpad2::
  27. SendInput T/do Do you act somehow against my action? If so, what? (( /do With a reasonable action )){Enter}
  28.  
  29. ^1::
  30. Mode = 1
  31. return
  32.  
  33. ^2::
  34. Mode = 2
  35. return
  36.  
  37. ^3::
  38. Mode = 3
  39. return
  40.  
  41. ^XButton1::
  42. SendInput T/me pushes the transmission button down and speaks in to his radio.{Enter}
  43. return
  44.  
  45. ^Numpad0::
  46. SendInput T/me salutes the man/woman infront of him.{Enter}T/salute{Enter}
  47. return
  48.  
  49. !1::
  50. SendInput T/me begins to type in some information on to the MDC.{Enter}
  51. Sleep 750
  52. SendInput T/do Username: 941013, Password: *******{Enter}
  53. Sleep 100
  54. SendInput T/me hits 'Login' on the MDC.{Enter}
  55. Sleep 100
  56. SendInput T/do Logging in...{Enter}
  57. Sleep 1500
  58. SendInput T/do Logged in{Enter}
  59. return
  60.  
  61. NumpadDiv::
  62. SendInput T/me throws a flashbang in to the room/area.{Enter}
  63. SendInput T/do Anyone within the area of the flashbang is temporary blinded for 30 seconds.{Enter}
  64. SendInput T/b Type '/nobreath 3' to simulate the failure to breath and see.{Enter}
  65. return
  66.  
  67. !2::
  68. SendInput T/me begins typing on the keyboard of the MDC.{Enter}
  69. return
  70.  
  71. ^L::
  72. SendInput T/car Lights{Enter}
  73. return
  74.  
  75. ^E::
  76. SendInput T/car Engine{Enter}
  77. Return
  78.  
  79. !E::
  80. SendInput T/car Status{Enter}
  81. return
  82.  
  83. ^b::
  84. SendInput T/me takes out his badge from a pocket and flashes it to the man/woman infront of him.{Enter}
  85. SendInput T/showbadge{Space}
  86. return
  87.  
  88. Numpad3::
  89. if (Mode=1)
  90. {
  91. if Warning = 1
  92. {
  93. SendInput T/m This is F.B.I - Pull your vehicle over to the side of the road now{!}{!}{Enter}
  94. Warning = 2
  95. }
  96.  
  97. else if Warning = 2
  98. {
  99. SendInput T/m Pull your vehicle over now{!} - This is the second warning{!}{Enter}
  100. Warning = 3
  101. }
  102.  
  103. else if Warning = 3
  104. {
  105. SendInput T/m This was the final warning - Lethal forces will be used{!}{Enter}
  106. Warning = 1
  107. }
  108. }
  109. if (Mode=2)
  110. {
  111. if Warning = 1
  112. {
  113. SendInput T/m This is S.F.P.D - Pull your vehicle over to the side of the road now{!}{!}{Enter}
  114. Warning = 2
  115. }
  116.  
  117. else if Warning = 2
  118. {
  119. SendInput T/m Pull your vehicle over now{!} - This is the second warning{!}{Enter}
  120. Warning = 3
  121. }
  122.  
  123. else if Warning = 3
  124. {
  125. SendInput T/m This was the final warning - Lethal forces will be used{!}{Enter}
  126. Warning = 1
  127. }
  128. }
  129. if (Mode=3)
  130. {
  131. SendInput T/me reaches for his shirt, lifts it, grabs his service weapon.{Enter}
  132. SendInput T/me unholsters the service weapon, clicks the safety off.{Enter}
  133. }
  134. return
  135.  
  136. ^R::
  137. Warning = 1
  138. SendInput TWARNINGS: All warnings has been cleared out.
  139. Sleep 300
  140. Send ^a{Backspace}{Enter}
  141. return
  142.  
  143. ^NumpadAdd::
  144. SendInput T/m Step out of the vehicle with your hands above your head{!}{Enter}
  145. return
  146.  
  147. NumpadAdd::
  148. SendInput T/m Turn off your engine, throw the keys out to the center of the road and remain seated{!}{Enter}
  149. return
  150.  
  151. NumpadSub::
  152. SendInput TYou have the right to remain silent.{Enter}
  153. Sleep 1500
  154. SendInput TAnything you say, can and will be used against you in the court of law.{Enter}
  155. Sleep 1500
  156. SendInput TYou have the right to be appointed an attorney during any questioning.{Enter}
  157. Sleep 1500
  158. SendInput THowever, if you can not afford one, an attorney will be provided for you at the governments expense.{Enter}
  159. Sleep 1500
  160. SendInput TDo you understand these rights as they have been read to you?{Enter}
  161. return
  162.  
  163. !Numpad3::
  164. SendInput T/m Please step out of the vehicle{!}{Enter}
  165. return
  166.  
  167. !Numpad5::
  168. SendInput T/m Turn off your engine and remain seated in the car{!}{Enter}
  169. return
  170.  
  171. Numpad5::
  172. if (Mode = 1)
  173. {
  174. SendInput T/s This is the Federal Bureau of Investigation - Hands up, right now{Enter}
  175. }
  176. if (Mode = 2)
  177. {
  178. SendInput T/s This is San Fierro Police Department - Hands up, right now{Enter}
  179. }
  180. if (Mode = 3)
  181. {
  182. SendInput T/s Government Security - Put your hands in the air{Enter}
  183. }
  184. return
  185.  
  186. Numpad4::
  187. SendInput T/tazer{Enter}
  188. return
  189.  
  190. Numpad6::
  191. SendInput T/gate{Enter}
  192. return
  193.  
  194. Numpad0::
  195. SendInput T/nos{Enter}
  196. return
  197.  
  198. Numpad8::
  199. SendInput T/fix{Enter}
  200.  
  201. Numpad7::
  202. SendInput T/enter{Enter}
  203. return
  204.  
  205. Numpad9::
  206. SendInput T/exit{Enter}
  207. return
  208.  
  209. ; Note: From now on whenever you run AutoHotkey directly, this script
  210. ; will be loaded. So feel free to customize it to suit your needs.
  211.  
  212. ; Please read the QUICK-START TUTORIAL near the top of the help file.
  213. ; It explains how to perform common automation tasks such as sending
  214. ; keystrokes and mouse clicks. It also explains more about hotkeys.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement