2c2c442ba7
fixed issue with locale when no config present changed kick color on webfront aliased owner to iamgod (for b3 familiar users) hopefully fixed stats issue added T5M (V2 BO2) support made dvar grab at beginning minimal to prevent throttling on older CODS
19 lines
439 B
C#
19 lines
439 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.RCon
|
|
{
|
|
public static class StaticHelpers
|
|
{
|
|
public enum QueryType
|
|
{
|
|
GET_STATUS,
|
|
GET_INFO,
|
|
DVAR,
|
|
COMMAND,
|
|
}
|
|
|
|
public static char SeperatorChar = (char)int.Parse("0a", System.Globalization.NumberStyles.AllowHexSpecifier);
|
|
public static readonly TimeSpan SocketTimeout = new TimeSpan(0, 0, 2);
|
|
}
|
|
}
|