Moin,
in dem Mod "Custom Buildings" befindet sich ein Polizei HQ, damit Polizisten die Türen öffnen können, brauchen sie die Variable copLevel... Habe das : this setVariable ["copLevel",1,true]; in der Cop init getestet & es hat auch funktionier ! Nun will ich aber ein Item haben , welches diese Variable vergibt. Leider funktioniert das nicht, Jemand ne Idee ?
while {alive player} do {
if ("ARP_Objects_card_black_m" in (items player)) then {
this setVariable ["copLevel",1,true];
} else {
this setVariable ["copLevel",0,false];
};
sleep 2;
};