Guest User

Untitled

a guest
Jun 1st, 2016
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. // TRAFFIC CONTROL PLUG-IN FOR GTA V
  2. // VERSION: 1.0.0
  3. // COPYRIGHT (C) 2015 STEALTH22. ALL RIGHTS RESERVED.
  4. // ANY UNAUTHORIZED MODIFICATION, RE-ENGINEERING, OR DISTRIBUTION (INCLUDING RE-UPLOADING TO ANY SITE) IS STRICTLY PROHIBITED
  5.  
  6.  
  7. // Valid key values can be found here:
  8. // https://msdn.microsoft.com/en-us/library/system.windows.forms.keys%28v=vs.110%29.aspx
  9.  
  10. // To disable a key, set it's value to "None" (without quotes!)
  11.  
  12. // The default modifier key for all key settings is "ControlKey".
  13. // Values I have tested with are "ControlKey", "ShiftKey", and "Menu" ("Menu" = the ALT key, if desired), although I suggest you stick with either ControlKey or ShiftKey.
  14. // Modifier keys can be set to "None", but this is not recommended, unless using a key which is not used by GTA V or any other plugins
  15.  
  16. // To disable all shortcuts and use only the in-game menu,
  17.  
  18.  
  19. [Settings]
  20. // RestrictedSpeed = The speed of traffic (in miles per hour) when the "SlowTrafficDown" key is pressed
  21. // Must be an integer greater than zero
  22. // Default value is 20
  23. RestrictedSpeed=20
  24.  
  25. // SpeedZoneRadius = The radius (in meters) of the restricted speed zones
  26. // Must be an integer greater than zero
  27. // Default value is 60
  28. SpeedZoneRadius=60
  29.  
  30. // ShortcutKeysEnabled = Whether or not to enable the use of the hotkeys in the "Keys" section below
  31. // This setting DOES NOT AFFECT the MenuKey and MenuModifierKey settings, as the in-game menu is enabled by default
  32. // Set this value to "false" (without quotes) to disable all of the "shortcut keys", and exclusively use the in-game menu
  33. ShortcutKeysEnabled=true
  34.  
  35.  
  36. // BETA FEATURE
  37. // Changing this setting to "true" (without quotes!) will allow any emergency vehicle (police, fire, ambulance, coroner, tow trucks) to IGNORE a "Stop Traffic" order
  38. // However, this feature is disabled by default, as it is still in a beta stage
  39. // This feature is fairly stable, but it doesn't work as fluidly as simply forcing all emergency vehicles to stop as well
  40. // This setting can also be changed on demand via the in-game menu
  41. PoliceIgnoreRoadblocks=false
  42.  
  43.  
  44. [Keys]
  45. // Key to show/hide the new in-game menu, built with RAGENativeUI!
  46. // Default = ControlKey + F10
  47. // THIS KEY CANNOT BE DISABLED WITH THE "ShortcutKeysEnabled" SETTING
  48. // If you wish to disable the in-game menu, set the MenuKey and MenuModifierKey values to None
  49. MenuKey=F10
  50. MenuModifierKey=ControlKey
  51.  
  52.  
  53. // Key to stop all vehicles within <SpeedZoneRadius> (default 60 meters)
  54. // Default = ControlKey + U
  55. StopTraffic=n
  56. StopTrafficModKey=ControlKey
  57.  
  58. // Key to limit all vehicles within <SpeedZoneRadius> (default 60 meters) to <RestrictedSpeed> (default 20 MPH)
  59. // Default = ControlKey + I
  60. SlowTrafficDown=c
  61. SlowTrafficDownModKey=ControlKey
  62.  
  63. // Key to remove nearest roadblock/speed zone
  64. // Default = ControlKey + O
  65. RemoveNearest=9
  66. RemoveNearestModKey=ControlKey
  67.  
  68. // Key to remove ALL roadblocks/speed zones
  69. // Default = ControlKey + 8
  70. RemoveAll=H
  71. RemoveAllModKey=ControlKey
Advertisement
Add Comment
Please, Sign In to add comment