Advertisement
AshkanN

[AHK] FahrerCheck

Jul 17th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetTimer, FahrerCheck, 100
  2. IniRead, FahrerChecked...
  3.  
  4. FahrerCheck:
  5. if(isPlayerDriver() == 1)
  6. {
  7.     if(FahrerChecked == 1)
  8.     {
  9.         SendChat("/motor")
  10.         SendChat("/licht")
  11.         if(carModelID() == MOTORRADIDS)
  12.         {
  13.             SendChat("/helm")
  14.         }
  15.     }
  16.     else
  17.     {
  18.         return
  19.     }
  20. }
  21. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement