mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
@icomrade - In regex character classes only match each single character. So a range with more than one character on one end (20) won't work: http://www.regular-expressions.info/charclass.html You can see that by running this code in-game with your old filter and it will kick you: player setVariable ["hit_glass3",1,true]; Adding the + on the end makes it match the character class one or more times, so now it will match any integer >= 0.