Advertisement
RickyMeekle123

Untitled

May 7th, 2018
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.33 KB | None | 0 0
  1. /*--------------------------------------------------------------------------
  2. Author: Maverick Applications
  3. Website: https://maverick-applications.com
  4.  
  5. You're not allowed to use this file without permission from the author!
  6. ---------------------------------------------------------------------------*/
  7.  
  8. #define true 1
  9. #define false 0
  10.  
  11. class maverick_taxis_cfg {
  12. class pricing {
  13. pricePerKilometre = 200; // Dollars
  14. basePrice = 1000; // Price at which billing starts, required to call a taxi
  15. moneyHandVariable = "life_cash";
  16. moneyBankVariable = "life_atmbank";
  17. paymentSource = "BOTH";
  18. fullRefundOnDriverAbort = true;
  19. };
  20.  
  21. class keybindings {
  22. keyCode = 20; // Keycodes can be found at https://community.bistudio.com/wiki/DIK_KeyCodes
  23. reqShift = false;
  24. reqAlt = true;
  25. reqCtrl = false;
  26. };
  27.  
  28. class general {
  29. automaticNavigation = true; // Automatically starts Navigator once the user has to go to a specific point
  30. };
  31.  
  32. class drivers {
  33. condition = "license_civ_taxi";
  34. };
  35.  
  36. class localization {
  37. // Localization
  38. msgMainInfoNoTaxiCalled = "<t size='2'>You do not have an active taxi call!</t><br/><t>Click on 'Call Taxi' to create a taxi request for all available taxi drivers to see!</t><br/><br/><t font='RobotoCondensedBold'>Available Taxi Drivers: %1</t>";
  39. msgMainInfoNoTaxiYet = "<t size='2'>A taxi has been called!</t><br/><t>No taxi driver has accepted your request yet though. You will be notified once a taxi driver does so!</t><br/><br/><t font='RobotoCondensedBold'>Available Taxi Drivers: %1</t>";
  40. msgTaxiCalled = "A taxi request has been created!";
  41. msgTaxiCancelled = "Your current taxi request has been cancelled!";
  42. msgTaxiFareCancelled = "You have cancelled the fare";
  43. msgTaxiCancelConfirm = "A taxi driver has already accepted your request and is on his way to you. Are you sure that you still want to cancel?";
  44. msgTaxiCancelHeader = "Cancel Taxi Call";
  45. msgTaxiCancelButtonConfirm = "Yes";
  46. msgTaxiCancelButtonCancel = "No";
  47. msgTaxiCancelDriverConfirm = "Are you sure that you want to cancel the fare? If a base price has already been transferred to you, it will be transferred back to the customer again.";
  48. msgTaxiMeterInfoText = "<t>Total Distance</t><t align='right' font='RobotoCondensedBold'>%1</t><br/><t>Time Elapsed</t><t align='right' font='RobotoCondensedBold'>%2</t><br/><t>Total Price (%3$/km)</t><t align='right' font='RobotoCondensedBold'>%4</t>";
  49. msgTaxiMeterStatusTextActive = "<t align='right' font='RobotoCondensedBold'>ACTIVE</t>";
  50. msgTaxiMeterStatusTextInactive = "<t align='right' font='RobotoCondensedBold'>INACTIVE</t>";
  51. masTaxiInfoPleaseWait = "<t size='2'>%1 is on his way to you!</t><br/>Please wait at your current location for your taxi driver. He is currently %2 away.</t>";
  52. msgTaxiFareCancelledAsCustomer = "Your taxi driver has cancelled the fare";
  53. masTaxiFareCancelledAsDriver = "Your customer has cancelled the fare.";
  54. msgTaxiCallAccepted = "A taxi driver driver is on his way";
  55. msgTaxiDriverNotAvailable = "You do not meet the requirements to work as a taxi driver";
  56. msgTaxiDestinationUpdated = "The destination has been updated";
  57. msgTaxiNoRoadNearFound = "No road segment near position found!";
  58. msgTaxiCannotCallWhileDriver = "You cannot call a taxi while being on-duty as a taxi driver!";
  59. msgTaxiCannotDriveWhileCalling = "You cannot work as a taxi driver while calling one yourself!";
  60. msgTaxiSpamClickPrevention = "You cannot do this action so fast!";
  61. msgTaxiAlreadyInFare = "You have already accepted a fare!";
  62. msgCallTaxi = "Call Taxi";
  63. msgBaseNotAffordable = "You do not have enough money to call a taxi!";
  64. msgPaidCustomer = "You have reached your destination.<br/>Total payment made: %1$";
  65. msgNotFullyPaidCustomer = "You have reached your destination. You could not afford the total amount of %1$, instead %2$ (excluding base fee) have been paid!";
  66. msgPaidDriver = "You have reached the destination.<br/>Your customer has paid you <t color='#43a047'>%1$</t>.";
  67. msgNotFullyPaidDriver = "You have reached the destination. Your customer could not pay you the full amount of <t color='#43a047'>%1$</t>, instead <t color='#43a047'>%2$</t> (excluding base fee) have been transferred to you.";
  68. msgPayCustomer = "You have reached your destination.<br/>The total payment that has be made is %1$.";
  69. msgPayDriver = "You have reached the destination.<br/>Your customer has been prompted to pay %1$.";
  70. msgTotalPayment = "Total payment: %1$";
  71. msgTaximeterPositionSaved = "Taximeter position saved";
  72. msgTaximeterPositionReset = "Taximeter position reset";
  73. msgTaxiPressSpaceSaveSettings = "Press [SPACE] to save";
  74. msgNowOnDuty = "You are now on duty and will receive notifications when a taxi call comes in!";
  75. msgNowOffDuty = "You are now off duty";
  76. msgTaxiMenuActiveCalls = "View Active Calls";
  77. msgTaxiNewCallCreated = "A new taxi call has been created";
  78. msgTaxiBillingPayment = "Total payment by driven distance";
  79. msgTaxiBillingDriverMissingP = "Amount not affordable by customer";
  80. msgTaxiBillingBasePrice = "Base Price";
  81. msgTaxiBillingCustomerMissingP = "Amount not affordable";
  82. msgTaxiCurrentFareInformation = "Current Fare Information";
  83. msgTaxiBillingCancelled = "Fare cancelled";
  84.  
  85.  
  86. // Tasks
  87. msgTaskDriverPickupDescription = "Pick up your passenger at this location";
  88. msgTaskDriverPickupDescriptionS = "PICK UP";
  89. msgTaskDriverPickupHUD = "Pick Up";
  90.  
  91. msgTaskCustomerDriverDescription = "Get into your taxi drivers vehicle";
  92. msgTaskCustomerDriverDescriptionS = "GET IN";
  93. msgTaskCustomerDriverHUD = "Get In";
  94.  
  95. msgTaskDriverGoToDescription = "Customer destination";
  96. msgTaskDriverGoToDescriptionS = "DESTINATION";
  97. msgTaskDriverGoToDriverHUD = "Move Here";
  98.  
  99. #define dialogCallTaxiTitle "Taxi Service"
  100. #define dialogCancelTaxi "Cancel Taxi Request"
  101. #define dialogClose "Close"
  102. #define dialogTaxiMeter "Taxi-Meter"
  103. #define dialogTaxiFareList "Available Taxi Calls"
  104. #define dialogTaxiGoOnDuty "Go On Duty"
  105. #define dialogTaxiGoOffDuty "Go Off Duty"
  106. #define dialogTaxiAcceptCall "Accept Selected Call"
  107. #define dialogTaxiCancelCall "Cancel Current Call"
  108. #define dialogMenuCustomer "Call A Taxi"
  109. #define dialogMenuDriver "Work as a driver"
  110. #define dialogMenuSettings "Settings"
  111. #define dialogDestination "Destination"
  112. #define dialogHowToDestination "Double-click a position on the map to mark it as your destination. If you already have a taxi driver coming to you, he will be notified of the updated position."
  113. #define dialogStatusTitle "Call Status"
  114. #define dialogStatusMarkedDest "Destination Selected"
  115. #define dialogStatusCreatedCall "Taxi Call Created"
  116. #define dialogStatusDriverFound "Taxi Driver Accepted Call"
  117. #define dialogStatusPickedUp "Get Picked Up"
  118. #define dialogSettingsCustomizePos "Taximeter Position"
  119. #define dialogSettingsCustomize "Customize"
  120. #define dialogSettingsReset "Reset"
  121. #define dialogDragMe "Drag Me"
  122. #define dialogFareSummaryTitle "Fare Summary"
  123. #define dialogSummaryClosePromt "[ALT]+[T] to close"
  124. #define dialogAvaibleDrivers "Available Drivers"
  125. };
  126. };
  127.  
  128. #include "gui\taxi_gui_master.cpp"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement