Getestet auf der 4.4
Sucht nach fn_houseConfig.sqf und ersetzt alles durch:
Code: fn_houseConfig.sqf
/*
File: fn_houseConfig.sqf
Author: Bryan "Tonic" Boardwine
Description:
Master config file for buyable houses?
*/
private["_house"];
_house = [_this,0,"",[""]] call BIS_fnc_param;
if (_house isEqualTo "") exitWith {[]};
/*
Return Format:
[price,# of containers allowed]
*/
switch (true) do {
case (_house in ["Land_House_Big_01","Land_House_Big_02","Land_House_Big_03","Land_House_Big_04","Land_House_Big_05"]): {[600000,5]};
//case (_house in ["Land_House_Native_01","Land_House_Native_02"]): {[5000,1]}; /// Hier sind die Einwohner Hüten ohne Türen
case (_house in ["Land_House_Small_01","Land_House_Small_02","Land_House_Small_03","Land_House_Small_04","Land_House_Small_05","Land_House_Small_06"]): {[50000,2]};
default {[]};
};
Alles anzeigen
Fertig !