Advertisement
Guest User

SpeedLimits.configuration.xml

a guest
Aug 9th, 2019
766
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.44 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ConfigurationSpeedLimits xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3.   <LicenseKey>00000000-0000-0000-0000-000000000000</LicenseKey> <!-- Your License Key -->
  4.   <CheckRate>2</CheckRate> <!-- How often, in seconds, it checks. -->
  5.   <UseMPH>false</UseMPH> <!-- When false, uses KPH instead of MPH -->
  6.   <UseExperience>false</UseExperience>  <!-- Use Experience as fines instead of Uconomy. -->
  7.   <MoneySymbol>$</MoneySymbol>  <!-- The prefix of the fine, example ($): $200. -->
  8.   <SpeedZones> <!-- List of Speed Zones  (Add as many as you want!) -->
  9.     <SpeedZone>
  10.       <DisplayName>SpeedZone 1</DisplayName> <!-- Each Speed Zone has a Display Name, to be used in the RocketRegion command -->
  11.       <SpeedLimit>50</SpeedLimit> <!-- What the Speed Limit is -->
  12.       <Fine>250</Fine> <!-- How much the User will be fined -->
  13.       <Cooldown>10</Cooldown> <!-- How long, in seconds, before they can be fined again -->
  14.       <WarnPolice>false</WarnPolice> <!-- Whether to warn Police or not -->
  15.       <PolicePermission>N/A</PolicePermission> <!-- The Police permission -->
  16.       <BypassPermission>speedlimits.bypass</BypassPermission> <!-- Permission to Bypass -->
  17.       <BlacklistedVehicles> <!-- List of Blacklisted Vehicles -->
  18.         <ID>140</ID> <!-- ID of 140 (Fighter Jet) -->
  19.       </BlacklistedVehicles>
  20.     </SpeedZone>
  21.     <SpeedZone> <!-- Another Speed Zone -->
  22.       <DisplayName>SpeedZone 2</DisplayName>
  23.       <SpeedLimit>90</SpeedLimit>
  24.       <Fine>1000</Fine>
  25.       <Cooldown>5</Cooldown>
  26.       <WarnPolice>true</WarnPolice>
  27.       <PolicePermission>speedlimits.police</PolicePermission>
  28.       <BypassPermission>speedlimits.bypass</BypassPermission>
  29.       <BlacklistedVehicles>
  30.         <ID>140</ID>
  31.       </BlacklistedVehicles>
  32.     </SpeedZone>
  33.   </SpeedZones>
  34.   <SpeedCameras> <!-- List of Speed Camera (Add as many as you want!) -->
  35.     <SpeedCamera>
  36.       <DisplayName>SpeedCamera 1</DisplayName> <!-- Each Speed Camera has a Display Name, to be used in the RocketRegion command -->
  37.       <SpeedLimit>50</SpeedLimit>
  38.       <Fine>500</Fine>
  39.       <WarnPolice>true</WarnPolice>
  40.       <PolicePermission>speedlimits.police</PolicePermission>
  41.       <BypassPermission>speedlimits.bypass</BypassPermission>
  42.       <BlacklistedVehicles>
  43.         <ID>140</ID>
  44.       </BlacklistedVehicles>
  45.     </SpeedCamera>
  46.   </SpeedCameras>
  47. </ConfigurationSpeedLimits>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement