4caa4655e2
changed Event to GameEvent finally fixed the stats NaN check ip for bans consolidated console, profile, and logout into dropdown make sure game is iw4 before using :^ in say fix pm not showing from name if in web console show time left of temban on profile
18 lines
439 B
C#
18 lines
439 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.RCon
|
|
{
|
|
public class CommandPrefix
|
|
{
|
|
public string Tell { get; set; }
|
|
public string Say { get; set; }
|
|
public string Set { get; set; }
|
|
public string Kick { get; set; }
|
|
public string Ban { get; set; }
|
|
public string Unban { get; set; }
|
|
public string TempBan { get; set; }
|
|
}
|
|
}
|