Barotrauma

Barotrauma

Not enough ratings
Depth Counter
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
16.778 KB
22 Jun, 2023 @ 2:40am
27 Jun, 2023 @ 12:06am
3 Change Notes ( view )

Subscribe to download
Depth Counter

In 1 collection by Cengaver_
Sub Editor Assemblies
9 items
Description
Sends a message to the chat every 200 meters

Regex expressions meaninng:

^(?<depth>\d*[02468]00)$

^ defines the start of the string.
?<depth> is a named capture group.
\d means any digit, * is greedy quantifier(attempts to match \d between 0 and infinite times)(greedy tries to match as much times as possible)
[02468] means that the value has to literally match any of these digits.
00 means that the value has to literally match 00.
$ defines the end of the string.


So the regex captures any positive numerical value ending with: 000, 200, 400, 600, 800