Advertisement
Guest User

Untitled

a guest
Feb 18th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Gui, Add, Picture, x592 y516 w319 h100 , Copyright © 2013 by [Zensiert] and the AHK Team!
  2. Gui Add, Text, x15 y15 cred, Deine Keybinds(Numpad):
  3. Gui, Add, Text, x15 y30 cblue, 1 Numpad - /motor
  4. Gui, Add, Text, x15 y50 cblue, 2 Numpad - /licht
  5. Gui, Add, Text, x15 y70 cblue, 3 Numpad - /lock
  6. Gui, Add, Text, x15 y90 cblue, 4 Numpad - /pickup -> Automatischer Text wird gesendet (Guten Tag, etc.)
  7. Gui, Add, Text, x15 y110 cblue, 5 Numpad - /hangup -> Automatischer Text wird gesendet.(Tschüss etc. )
  8. Gui, Add, Text, x608 y21 w250 h30 +Left, Fehler/Bugs gefunden? Schreibe mir eine E-Mail an: [Zensiert]@live.de.
  9. Gui, Show, x127 y87 h607 w911, [Zensiert]'s Keybinder - Version Beta v0.0.1
  10. Return
  11.  
  12. GuiClose:
  13. ExitApp
  14.  
  15. #IfWinActive GTA:SA:MP
  16. #UseHook
  17. #SingleInstance Force
  18.  
  19. +T::
  20. ~T::
  21. Suspend On
  22. Hotkey, Enter, on
  23. Hotkey, Escape, on
  24. Hotkey, t, off
  25. return
  26.  
  27. ~NumpadEnter::
  28. ~Enter::
  29. Suspend Permit
  30. Suspend On
  31. Hotkey, t, on
  32. Hotkey, Enter, Off
  33. Hotkey, Escape, Off
  34. return
  35.  
  36. ~Escape::
  37. Suspend Permit
  38. Suspend Off
  39. Hotkey, t, on
  40. Hotkey, Enter, Off
  41. Hotkey, Escape, Off
  42. return
  43.  
  44.  
  45. 1::
  46. SendInput t/motor{Enter}
  47. return
  48.  
  49. 2::
  50. SendInput t/licht{Enter}
  51. return
  52.  
  53. 3::
  54. SendInput t/lock{Enter}
  55. return
  56.  
  57. 4::
  58. SendInput t/pickup
  59. SendInput t/Guten Tag, Sie sind mit [Zensiert] verbunden, Wie kann ich ihnen weiter helfen?
  60. return
  61.  
  62. 5::
  63. SendInput t/Ich wünsche ihnen einen tollen Tag
  64. SendInput t/hangup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement