Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Numpad1::
  2. if(IsChatOpen() == 1 || IsDialogOpen() == 1) {
  3. SendInput, {%A_ThisHotkey%}
  4. return
  5. }
  6. If(IsVehicleEngineEnabled() == 0)
  7. {
  8. ShowGameText("~b~Motor wird gestartet.", 2000, 6)
  9. SendChat("/engine")
  10. Sleep 100
  11. SendChat("/lock")
  12. Sleep 150
  13. SendChat("/lights")
  14. }
  15. else
  16. If(IsVehicleEngineEnabled() == 1)
  17. {
  18. ShowGameText("~b~Motor abgeschaltet.", 2000, 6)
  19. SendChat("/engine")
  20. Sleep 200
  21. SendChat("/lock")
  22. Sleep 200
  23. SendChat("/lights")
  24. }
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement