Admin Only FastBuild

Does anyone know of a script that would allow only admins to fast build, maybe not even need the supplies in their inventory?
 
init.sqf:

Somewhere near the DZE Configs:
Replace the UIDs
Code:
AdminList = [
"123456", //Admin1
"789123", //Admin2
"456789" //Admin3
];
if ((getPlayerUID player) in AdminList) then {
DZE_StaticConstructionCount = 1;
};
Credits to FallingSheep :)

Now that AdminList is a global Variable you can call it from every Script and make some more actions only accessible for Admins.
 
Back
Top