LostCoast

Untitled

Aug 22nd, 2017
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.38 KB | None | 0 0
  1. /*  
  2.     customize.sqf
  3.    
  4.     Copyright 2016 Jan Babor
  5.  
  6.     Licensed under the Apache License, Version 2.0 (the "License");
  7.     you may not use this file except in compliance with the License.
  8.     You may obtain a copy of the License at
  9.  
  10.         http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12.     Unless required by applicable law or agreed to in writing, software
  13.     distributed under the License is distributed on an "AS IS" BASIS,
  14.     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.     See the License for the specific language governing permissions and
  16.     limitations under the License.
  17. */
  18.  
  19. ExAd_VG_MIN_ALLOWED_VEH = 8;            //SCALAR - Minimun allowed vehicles in the virtual garage.
  20.  
  21. ExAd_VG_ALLOWED_VEH_MULTIPLE_FACTOR = 6;//SCALAR - How many extra vehicle slots for each territory level.
  22.  
  23. ExAd_VG_ACCESS_LEVEL = 1;               //SCALAR - Lowest level that can access the Virtual Garage --> 1|2|3 -> Pleb|Moderator|Owner.
  24.  
  25. ExAd_VG_CLEAN_ON_STORE = false;         //BOOLEAN - If vehicle inventory should reset when stored.
  26.  
  27. ExAd_VG_SHOW_ADVHINT = false;           //BOOLEAN - If the virtual garage should display an Advanced hint upon store and fetch.
  28.  
  29. ExAd_VG_ALLOWED_VEH_TYPE = ["Car","Air","Tank","Helicopter","Plane","Ship"];//ARRAY - Array with allowed vehicle types for the virtual garage. | "Car", "Tank", "Helicopter", "Plane" or "Air" for both WARNING DON'T USE "LandVehicle" Can crash the Exile system.
Add Comment
Please, Sign In to add comment