6d8d021b16
only check hit offset when distance > 3 meters fix null reference on unauthorized user fixed stats not showing on profile if anticheat disabled server client history turns red server is unresponsive
25 lines
605 B
C#
25 lines
605 B
C#
using SharedLibrary.Objects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibrary.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, 10);
|
|
}
|
|
}
|