Advertisement
LostCoast

Untitled

Aug 22nd, 2017
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.09 KB | None | 0 0
  1. /*  
  2.     postInit.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.  
  20. _path = "ExAdClient\VirtualGarage\customize.sqf";
  21. call compile preprocessFileLineNumbers _path;
  22.  
  23. if(isNil "ExAd_VG_MIN_ALLOWED_VEH")then{ExAd_VG_MIN_ALLOWED_VEH = 5;};
  24. if(isNil "ExAd_VG_ALLOWED_VEH_MULTIPLE_FACTOR")then{ExAd_VG_ALLOWED_VEH_MULTIPLE_FACTOR = 3;};
  25. if(isNil "ExAd_VG_ACCESS_LEVEL")then{ExAd_VG_ACCESS_LEVEL = 1;};
  26. if(isNil "ExAd_VG_CLEAN_ON_STORE")then{ExAd_VG_CLEAN_ON_STORE = false;};
  27. if(isNil "ExAd_VG_SHOW_ADVHINT")then{ExAd_VG_SHOW_ADVHINT = false;};
  28. if(isNil "ExAd_VG_ALLOWED_VEH_TYPE")then{ExAd_VG_ALLOWED_VEH_TYPE = ["Car","Air","Tank","Helicopter","Plane","Ship"];};
  29.  
  30. ["STR_ExAd_VG_NOTI_FULL", "The garage is full"] call ExAd_fnc_localize;
  31. ["STR_ExAd_VG_NOTI_NOT_PERSISTENT", "You can only store pincode protected vehicles into the garage!"] call ExAd_fnc_localize;
  32. ["STR_ExAd_VG_NOTI_NOT_AVAILABLE", "The vehicle is not available anymore!"] call ExAd_fnc_localize;
  33.  
  34. ["STR_ExAd_VG_APP_DETAILS", "%2 %1Pin code: %3 %1Fuel: %4 %1Damage: %5 %1Texture: %6 %1Items: %7 %1Magazines: %8 %1Weapons: %9"] call ExAd_fnc_localize;
  35. ["STR_ExAd_VG_APP_BTN_BACK", "Go Back"] call ExAd_fnc_localize;
  36. ["STR_ExAd_VG_APP_BTN_FETCH", "Fetch"] call ExAd_fnc_localize;
  37. ["STR_ExAd_VG_APP_BTN_STORE", "Store"] call ExAd_fnc_localize;
  38. ["STR_ExAd_VG_APP_TTL_STORED", "Stored"] call ExAd_fnc_localize;
  39. ["STR_ExAd_VG_APP_TTL_DETAILS", "Stored Vehicle Details"] call ExAd_fnc_localize;
  40. ["STR_ExAd_VG_APP_TTL_NEAR", "In Radius"] call ExAd_fnc_localize;
  41. ["STR_ExAd_VG_APP_CB_SECRET", "Stream friendly UI"] call ExAd_fnc_localize;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement