TaxiDriverJob.configuration.xml
· 1.7 KiB · XML
Ham
<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<hexDefaultMessagesColor>#2BC415</hexDefaultMessagesColor>
<uiInfo>
<timeLeftID>7101</timeLeftID>
<timeLeftKey>7101</timeLeftKey>
<npcUIID>7103</npcUIID>
<npcUIKey>7103</npcUIKey>
<pointEffectGUID>c0d1de01-037a-47db-923b-5973432f47db</pointEffectGUID>
<taxiEffectGUID>aaa7dc0f-6c03-4fa8-9db0-4bbbe3850c9d</taxiEffectGUID>
<pickupBoxGUID>fce370bf-1f7c-40e0-802b-6c861632a7d9</pickupBoxGUID>
</uiInfo>
<useUconomy>false</useUconomy>
<!--Min gain when leaving a passenger at it's position-->
<minGain>500</minGain>
<!--Max gain when leaving a passenger at it's position-->
<maxGain>9000</maxGain>
<!--Min distance from the player to a passenger for pickup-->
<minPickupDistance>10</minPickupDistance>
<!--Max distance from the player to a passenger for pickup-->
<maxPickupDistance>200</maxPickupDistance>
<!--Min distance from the pickup to the drop point-->
<minDropDistance>200</minDropDistance>
<!--Max distance from the pickup to the drop point-->
<maxDropDistance>1500</maxDropDistance>
<!--Total time in seconds to complete the job-->
<timeToCompleteJob>300</timeToCompleteJob>
<!--Permission to start working-->
<requiredPermToWork>taxidriver.job</requiredPermToWork>
<!--GUID of the item required to start working, without this item player won't be able to take new jobs.-->
<requiredItemToWork>62a748bf-40be-4871-9fe7-9b8c3e065a79</requiredItemToWork>
<dbInfo>
<dbServer>127.0.0.1</dbServer>
<dbPort>3306</dbPort>
<dbUser>root</dbUser>
<dbPassword>toor</dbPassword>
<dbDatabase>unturned</dbDatabase>
</dbInfo>
</Configuration>
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
3 | <hexDefaultMessagesColor>#2BC415</hexDefaultMessagesColor> |
4 | <uiInfo> |
5 | <timeLeftID>7101</timeLeftID> |
6 | <timeLeftKey>7101</timeLeftKey> |
7 | <npcUIID>7103</npcUIID> |
8 | <npcUIKey>7103</npcUIKey> |
9 | <pointEffectGUID>c0d1de01-037a-47db-923b-5973432f47db</pointEffectGUID> |
10 | <taxiEffectGUID>aaa7dc0f-6c03-4fa8-9db0-4bbbe3850c9d</taxiEffectGUID> |
11 | <pickupBoxGUID>fce370bf-1f7c-40e0-802b-6c861632a7d9</pickupBoxGUID> |
12 | </uiInfo> |
13 | <useUconomy>false</useUconomy> |
14 | <!--Min gain when leaving a passenger at it's position--> |
15 | <minGain>500</minGain> |
16 | <!--Max gain when leaving a passenger at it's position--> |
17 | <maxGain>9000</maxGain> |
18 | <!--Min distance from the player to a passenger for pickup--> |
19 | <minPickupDistance>10</minPickupDistance> |
20 | <!--Max distance from the player to a passenger for pickup--> |
21 | <maxPickupDistance>200</maxPickupDistance> |
22 | <!--Min distance from the pickup to the drop point--> |
23 | <minDropDistance>200</minDropDistance> |
24 | <!--Max distance from the pickup to the drop point--> |
25 | <maxDropDistance>1500</maxDropDistance> |
26 | <!--Total time in seconds to complete the job--> |
27 | <timeToCompleteJob>300</timeToCompleteJob> |
28 | <!--Permission to start working--> |
29 | <requiredPermToWork>taxidriver.job</requiredPermToWork> |
30 | <!--GUID of the item required to start working, without this item player won't be able to take new jobs.--> |
31 | <requiredItemToWork>62a748bf-40be-4871-9fe7-9b8c3e065a79</requiredItemToWork> |
32 | <dbInfo> |
33 | <dbServer>127.0.0.1</dbServer> |
34 | <dbPort>3306</dbPort> |
35 | <dbUser>root</dbUser> |
36 | <dbPassword>toor</dbPassword> |
37 | <dbDatabase>unturned</dbDatabase> |
38 | </dbInfo> |
39 | </Configuration> |