From 67b0efcc2cefc95a742a839f66993a745db9466f Mon Sep 17 00:00:00 2001 From: "[GADD]Monkeynutz" Date: Thu, 8 Mar 2018 22:28:57 +0000 Subject: [PATCH] Delete postInit.sqf --- .../ExAdClient/VirtualGarage/postInit.sqf | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 mpmissions/Exile.Altis/ExAdClient/VirtualGarage/postInit.sqf diff --git a/mpmissions/Exile.Altis/ExAdClient/VirtualGarage/postInit.sqf b/mpmissions/Exile.Altis/ExAdClient/VirtualGarage/postInit.sqf deleted file mode 100644 index 366e439..0000000 --- a/mpmissions/Exile.Altis/ExAdClient/VirtualGarage/postInit.sqf +++ /dev/null @@ -1,44 +0,0 @@ -/* - postInit.sqf - - Copyright 2016 Jan Babor - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -*/ - -_path = "ExAdClient\VirtualGarage\customize.sqf"; -call compile preprocessFileLineNumbers _path; - -if(isNil "ExAd_VG_MIN_ALLOWED_VEH")then{ExAd_VG_MIN_ALLOWED_VEH = 5;}; -if(isNil "ExAd_VG_ALLOWED_VEH_MULTIPLE_FACTOR")then{ExAd_VG_ALLOWED_VEH_MULTIPLE_FACTOR = 3;}; -if(isNil "ExAd_VG_ACCESS_LEVEL")then{ExAd_VG_ACCESS_LEVEL = 1;}; -if(isNil "ExAd_VG_CLEAN_ON_STORE")then{ExAd_VG_CLEAN_ON_STORE = true;}; -if(isNil "ExAd_VG_SHOW_ADVHINT")then{ExAd_VG_SHOW_ADVHINT = false;}; -if(isNil "ExAd_STOP_COMBAT_STORING")then{ExAd_STOP_COMBAT_STORING = true;}; -if(isNil "ExAd_VG_GIVE_GM")then{ExAd_VG_GIVE_GM = false;}; -if(isNil "ExAd_VG_GM_TIME")then{ExAd_VG_GM_TIME = 20;}; -if(isNil "ExAd_VG_ALLOWED_VEH_TYPE")then{ExAd_VG_ALLOWED_VEH_TYPE = ["Car","Tank","Plane","Air","Ship","Submarine"];}; - -["STR_ExAd_VG_NOTI_FULL", "The garage is full"] call ExAd_fnc_localize; -["STR_ExAd_VG_NOTI_NOT_PERSISTENT", "You can only store pincode protected vehicles into the garage!"] call ExAd_fnc_localize; -["STR_ExAd_VG_NOTI_NOT_AVAILABLE", "The vehicle is not available anymore!"] call ExAd_fnc_localize; - -["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; -["STR_ExAd_VG_APP_BTN_BACK", "Go Back"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_BTN_FETCH", "Fetch"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_BTN_STORE", "Store"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_TTL_STORED", "Stored"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_TTL_DETAILS", "Stored Vehicle Details"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_TTL_NEAR", "In Radius"] call ExAd_fnc_localize; -["STR_ExAd_VG_APP_CB_SECRET", "Stream friendly UI"] call ExAd_fnc_localize;