MrKwabs

PoliceUtilities.configuration.xml

Aug 16th, 2019 (edited)
1,831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.61 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ConfigurationPoliceUtilities 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.   <TrackerOptions> <!-- Tracker Options -->
  5.     <Option Name="UpdateRate" Value="1" /> <!-- The interval, in seconds, that the Tracker on the Map updates -->
  6.     <Option Name="DeployTime" Value="3" /> <!-- How long, in seconds, the Tracker takes to deploy -->
  7.     <Option Name="MaximumDistance" Value="3" /> <!-- How close, in meters, the User has to be to deploy the Tracker -->
  8.     <Option Name="ShowPassengers" Value="true" /> <!-- Whether to show Passengers on the Map whilst Tracking. -->
  9.   </TrackerOptions>
  10.   <DisablerOptions> <!-- Disabler Options -->
  11.     <Option Name="DeployTime" Value="3" /> <!-- How long, in seconds, the Disabler takes to deploy -->
  12.     <Option Name="MaximumDistance" Value="3" /> <!-- How close, in meters, the User has to be to deploy the Disabler -->
  13.     <Option Name="ActivateDuration" Value="5" /> <!-- How long, in seconds, the Disabler is active for once activated -->
  14.   </DisablerOptions>
  15.   <FriskOptions> <!-- Frisk Options -->
  16.     <Option Name="HasToBeRestrained" Value="true" /> <!-- If the User has to be restrained beforehand -->
  17.     <Option Name="FriskTime" Value="3" /> <!-- How long, in seconds, it takes to Frisk -->
  18.     <Option Name="MaximumDistance" Value="3" /> <!-- How close, in meters, the User has to be to Frisk -->
  19.   </FriskOptions>
  20.   <ImpoundOptions> <!-- Impound Options -->
  21.     <Option Name="ImpoundTime" Value="5" /> <!-- How long, in seconds, it takes to Impound -->
  22.     <Option Name="MaximumDistance" Value="3" /> <!-- How close, in meters, the User has to be to Impound -->
  23.     <Option Name="NotifyOwner" Value="true" /> <!-- If the Vehicle's Owner should be notified -->
  24.     <Option Name="UseMySQL" Value="true" /> <!-- If Impounded Vehicles should be saved for later retrieval. -->
  25.     <Option Name="DatabaseHost" Value="localhost" /> <!-- Database Host -->
  26.     <Option Name="DatabasePort" Value="3306" /> <!-- Database Port -->
  27.     <Option Name="DatabaseUsername" Value="root" /> <!-- Database Username -->
  28.     <Option Name="DatabasePassword" Value="password" /> <!-- Database Password -->
  29.     <Option Name="DatabaseName" Value="unturned" /> <!-- Database Name -->
  30.     <Option Name="PriceToRetrieve" Value="250" /> <!-- Price to Retrieve Impounded Vehicle -->
  31.     <Option Name="VehicleBlacklist" Value="140,141" /> <!-- A Vehicle ID Blacklist, separated by a comma -->
  32.   </ImpoundOptions>
  33.   <TaserOptions> <!-- Taser Options -->
  34.     <Option Name="MaxDistance" Value="15" /> <!-- Max Distance, in meters, that the Shooter can be from target. -->
  35.     <Option Name="Duration" Value="5" /> <!-- How long, in seconds, the target with be tased for. -->
  36.     <Option Name="GunIDs" Value="1337" /> <!-- The GunIDs for the Taser, separated by a comma. -->
  37.     <Option Name="SurrenderWhenTased" Value="true" /> <!-- When Enabled, User's who are Tased will constantly surrender. -->
  38.     <Option Name="Debug" Value="false" /> <!-- When Enabled, logs extra information to Console when attempting to Taze someone. -->
  39.   </TaserOptions>
  40.   <PoliceAnnouncementOptions> <!-- Police Announcement Options -->
  41.     <Option Name="IconURL" Value="https://icon.png" /> <!-- What Icon should be displayed in chat -->
  42.     <Option Name="Prefix" Value="[POLICE]" /> <!-- What the Prefix of the message should be -->
  43.     <Option Name="Colour" Value="#FF0000" /> <!-- What Colour the message should be -->
  44.   </PoliceAnnouncementOptions>
  45. </ConfigurationPoliceUtilities>
Add Comment
Please, Sign In to add comment