Admin fast build anyone know how to do it

well from all the information you gave us, the only think i can tell here is: you messed up on one of the steps.

you can do it much easier by the way:

go to your player_build.sqf and look for these lines:

Code:
                _limit = 3;
                if (DZE_StaticConstructionCount > 0) then {
                        _limit = DZE_StaticConstructionCount;
                }
                else {
                        if (isNumber (configFile >> "CfgVehicles" >> _classname >> "constructioncount")) then {
                                _limit = getNumber(configFile >> "CfgVehicles" >> _classname >> "constructioncount");
                        };
                };

and change it to this:

Code:
                if ((getPlayerUID player) in AdminList) then {
                _limit = 1;
                } else {
                    _limit = 3;
    
                    if (DZE_StaticConstructionCount > 0) then {
                            _limit = DZE_StaticConstructionCount;
                    }
                    else {
                            if (isNumber (configFile >> "CfgVehicles" >> _classname >> "constructioncount")) then {
                                    _limit = getNumber(configFile >> "CfgVehicles" >> _classname >> "constructioncount");
                            };
                    };
                };

in your init.sqf add this:

Code:
AdminList = ["YOUR_ID","OTHER_ID"]

Done you can now cheat "admin" build
 
Back
Top