Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. Gui, Show, x30 y40 h610 w960, SFMC Keybinder
  2. Gui, Add, Text, x802 y340 w190 h30 , © Mike_Smith GTA:WC SFMC V. 0.1
  3. Gui, Font, S9 CDefault, Verdana
  4. Gui, Add, Text, x22 y70 w100 h20 , 1: /calls
  5. Gui, Add, Text, x22 y90 w100 h20 , 2: /rescue
  6. Gui, Add, Text, x22 y110 w100 h20 , 3: /admit
  7. Gui, Add, Text, x22 y130 w100 h20 , 4: /revive
  8. Gui, Add, Text, x22 y150 w180 h20 , 5: Sie haben uns gerufen...
  9. Gui, Add, Text, x22 y170 w150 h20 , 6: Was ist passiert?
  10. Gui, Add, Text, x22 y190 w240 h20 , 7: Wo genau haben Sie Schmerzen?
  11. Gui, Add, Text, x22 y210 w210 h20 , 8: /me stabilisiert den Patienten
  12. Gui, Add, Text, x22 y230 w140 h20 , 9: /mfill
  13. Gui, Add, Text, x282 y70 w150 h20 , Num0: /engine /light
  14. Gui, Add, Text, x282 y90 w150 h20 , Num1: Frei auf Funk
  15. Gui, Add, Text, x282 y110 w150 h20 , Num2: Frei auf Wache
  16. Gui, Add, Text, x282 y130 w190 h20 , Num3: Einsatz angenommen
  17. Gui, Add, Text, x282 y150 w220 h20 , Num4: Ankunft am Einsatzort
  18. Gui, Add, Text, x282 y170 w150 h20 , Num5: Sprechwunsch
  19. Gui, Add, Text, x282 y190 w190 h20 , Num6: Nicht Einsatzbereit
  20. Gui, Add, Text, x282 y210 w190 h20 , Num7: Patient aufgenommen
  21. Gui, Add, Text, x282 y230 w250 h20 , Num8: Am Krankenhaus angekommen
  22. Gui, Add, Text, x282 y250 w240 h20 , Num9: Wichtige Meldung
  23. Gui, Add, Text, x552 y70 w310 h20 , Alt+1: Leitstelle`, Schwerverletzer RTW benötigt
  24. Gui, Add, Text, x552 y90 w340 h20 , Alt+2: Leitstelle`, Schwerverletzter RTW+NEF benötigt
  25. Gui, Add, Text, x552 y110 w310 h20 , Alt+3: Leitstelle`, Hilfeleistung RTW benötigt
  26. Gui, Add, Text, x22 y320 w200 h20 , F12: Schaltet Keybinder an/aus
  27. Gui, Add, Text, x552 y130 w310 h20 , Alt+4: Leitstelle hat verstanden
  28. Gui, Add, Text, x552 y150 w300 h20 , Alt+5: Verstanden
  29. Gui, Add, Text, x552 y170 w330 h20 , Alt+6: Leitstelle`, Wache anfahren
  30. Gui, Add, Text, x552 y190 w300 h20 , Alt+7: MANV Alarm
  31. Gui, Add, Picture, x552 y270 w230 h90 , C:\Users\David2\Downloads\SFMC.png
  32. Gui, Add, Text, x382 y10 w220 h40 , Ts3 Passwort: 541
  33. ; Generated using SmartGUI Creator 4.0
  34. Gui, Show, x434 y375 h366 w996, New GUI Window
  35. Return
  36.  
  37. GuiClose:
  38. ExitApp
  39.  
  40. #IfWinActive, GTA:SA:MP
  41.  
  42. #UseHook
  43.  
  44. t::
  45. Suspend On
  46. SendInput t
  47. Hotkey, Enter, On
  48. Hotkey, Escape, On
  49. Hotkey, t, Off
  50. return
  51.  
  52. NumpadEnter::
  53. Enter::
  54. Suspend Permit
  55. Suspend Off
  56. SendInput {Enter}
  57. Hotkey, t, On
  58. Hotkey, Enter, Off
  59. Hotkey, Escape, Off
  60. return
  61.  
  62. Escape::
  63. Suspend Permit
  64. Suspend Off
  65. SendInput {Escape}
  66. Hotkey, t, On
  67. Hotkey, Enter, Off
  68. Hotkey, Escape, Off
  69. return
  70.  
  71. 1::
  72. SendInput, t/calls
  73. return
  74.  
  75. 2::
  76. SendInput, t/rescue{space}
  77. return
  78.  
  79. 3::
  80. SendInput, t/admit{space}
  81. return
  82.  
  83. 4::
  84. SendInput, t/revive{space}
  85. return
  86.  
  87. 5::
  88. SendInput, tSie haben uns gerufen{!} Wie kann ich Ihnen helfen?{enter}
  89. return
  90.  
  91. 6::
  92. SendInput, tWas ist passiert?{enter}
  93. return
  94.  
  95. 7::
  96. SendInput, tWo genau haben sie Schmerzen?{enter}
  97. return
  98.  
  99. 8::
  100. SendInput, t/me stabilisiert den Patienten{enter}
  101. return
  102.  
  103. 9::
  104. SendInput, t/mfill{enter}
  105. Sleep, 10
  106. SendInput, t/f ----> tankt das Dienstfahrzeug{enter}
  107. return
  108.  
  109. F12::
  110. Suspend
  111. SendInput, t/me schaltet den Keybinder ein/aus{enter}
  112. return
  113.  
  114. Numpad0::
  115. SendInput, t/engine{enter}
  116. Sleep, 10
  117. SendInput, t/light{enter}
  118. return
  119.  
  120. Numpad1::
  121. SendInput, t/f Status 1 (Frei auf Funk){enter}
  122. return
  123.  
  124. Numpad2::
  125. SendInput, t/f Status 2 (Frei auf Wache){enter}
  126. return
  127.  
  128. Numpad3::
  129. SendInput, t/f Status 3 (Einsatz angenommen){enter}
  130. return
  131.  
  132. Numpad4::
  133. SendInput, t/f Status 4 (Ankunft am Einsatzort){enter}
  134. return
  135.  
  136. Numpad5::
  137. SendInput, t/f Status 5 (Sprechwunsch){enter}
  138. return
  139.  
  140. Numpad6::
  141. SendInput, t/f Status 6 (Nicht einsatzbereit){enter}
  142. return
  143.  
  144. Numpad7::
  145. SendInput, t/f Status 7 (Patient aufgenommen){enter}
  146. return
  147.  
  148. Numpad8::
  149. SendInput, t/f Status 8 (Am Krankenhaus angekommen){enter}
  150. return
  151.  
  152. Numpad9::
  153. SendInput, t/f Status 9 (Wichtige Meldung){enter}
  154. return
  155.  
  156. Alt & 1::
  157. SendInput, t/f Leitstelle kommen mit Alarm{!} | Schwerverletzter, ein RTW benötigt{enter}
  158. return
  159.  
  160. Alt & 2::
  161. SendInput, t/f Leitstelle kommen mit Alarm{!} | Schwerverletzter, ein RTW{+}NEF benötigt{enter}
  162. return
  163.  
  164. Alt & 3::
  165. SendInput, t/f Leitstelle kommen mit Alarm{!} | Hilfeleistung, ein RTW benötigt{enter}
  166. return
  167.  
  168. Alt & 4::
  169. SendInput, t/f Leitstelle hat verstanden{enter}
  170. return
  171.  
  172. Alt & 5::
  173. SendInput, t/f Verstanden{enter}
  174. return
  175.  
  176. Alt & 6::
  177. SendInput, t/f Leitstelle an alle: sofort die Wache anfahren{!}{enter}
  178. return
  179.  
  180. Alt & 7::
  181. SendInput, t/f Leitstellen kommen mit Alarm {!} | MANV Alarm | Alle verfügbaren Kräfte die Wache anfahren | {enter}
  182. Sleep,10
  183. SendInput, t/f Weitere Angaben folgen | Leitstelle ende{!}{enter}
  184. return
Add Comment
Please, Sign In to add comment