Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // TRAFFIC CONTROL PLUG-IN FOR GTA V
- // VERSION: 1.0.0
- // COPYRIGHT (C) 2015 STEALTH22. ALL RIGHTS RESERVED.
- // ANY UNAUTHORIZED MODIFICATION, RE-ENGINEERING, OR DISTRIBUTION (INCLUDING RE-UPLOADING TO ANY SITE) IS STRICTLY PROHIBITED
- // Valid key values can be found here:
- // https://msdn.microsoft.com/en-us/library/system.windows.forms.keys%28v=vs.110%29.aspx
- // To disable a key, set it's value to "None" (without quotes!)
- // The default modifier key for all key settings is "ControlKey".
- // 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.
- // 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
- // To disable all shortcuts and use only the in-game menu,
- [Settings]
- // RestrictedSpeed = The speed of traffic (in miles per hour) when the "SlowTrafficDown" key is pressed
- // Must be an integer greater than zero
- // Default value is 20
- RestrictedSpeed=20
- // SpeedZoneRadius = The radius (in meters) of the restricted speed zones
- // Must be an integer greater than zero
- // Default value is 60
- SpeedZoneRadius=60
- // ShortcutKeysEnabled = Whether or not to enable the use of the hotkeys in the "Keys" section below
- // This setting DOES NOT AFFECT the MenuKey and MenuModifierKey settings, as the in-game menu is enabled by default
- // Set this value to "false" (without quotes) to disable all of the "shortcut keys", and exclusively use the in-game menu
- ShortcutKeysEnabled=true
- // BETA FEATURE
- // Changing this setting to "true" (without quotes!) will allow any emergency vehicle (police, fire, ambulance, coroner, tow trucks) to IGNORE a "Stop Traffic" order
- // However, this feature is disabled by default, as it is still in a beta stage
- // This feature is fairly stable, but it doesn't work as fluidly as simply forcing all emergency vehicles to stop as well
- // This setting can also be changed on demand via the in-game menu
- PoliceIgnoreRoadblocks=false
- [Keys]
- // Key to show/hide the new in-game menu, built with RAGENativeUI!
- // Default = ControlKey + F10
- // THIS KEY CANNOT BE DISABLED WITH THE "ShortcutKeysEnabled" SETTING
- // If you wish to disable the in-game menu, set the MenuKey and MenuModifierKey values to None
- MenuKey=F10
- MenuModifierKey=ControlKey
- // Key to stop all vehicles within <SpeedZoneRadius> (default 60 meters)
- // Default = ControlKey + U
- StopTraffic=n
- StopTrafficModKey=ControlKey
- // Key to limit all vehicles within <SpeedZoneRadius> (default 60 meters) to <RestrictedSpeed> (default 20 MPH)
- // Default = ControlKey + I
- SlowTrafficDown=c
- SlowTrafficDownModKey=ControlKey
- // Key to remove nearest roadblock/speed zone
- // Default = ControlKey + O
- RemoveNearest=9
- RemoveNearestModKey=ControlKey
- // Key to remove ALL roadblocks/speed zones
- // Default = ControlKey + 8
- RemoveAll=H
- RemoveAllModKey=ControlKey
Advertisement
Add Comment
Please, Sign In to add comment