difficultyEnabled – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

To check for veteran: difficultyEnabled "Map" ?? --Doolittle 07:27, 9 September 2007 (CEST)

What about if (!cadetMode) then { player SideChat "Veteran mode!"; }; --TeRp 17:10, 9 September 2007 (CEST)

i have added the possile values.--Crowe 17:26, 15 March 2008 (CET)

Code to get flags in A3

_difficulties = []; { _cfg = configFile >> "CfgDifficulties" >> _x >> "Flags"; for "_i" from 0 to count _cfg - 1 do { _difficulties pushBack configName (_cfg select _i); }; } forEach ["Recruit", "Regular", "Veteran", "Mercenary"]; _difficulties = _difficulties arrayIntersect _difficulties; _difficulties sort true; { "debug_console" callExtension format ["* %1", _x]; } forEach _difficulties;