6e5501b32d
add WaW support fix stats threading
23 lines
587 B
C#
23 lines
587 B
C#
using Application.RconParsers;
|
|
using SharedLibraryCore.RCon;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Application.RconParsers
|
|
{
|
|
class IW3RConParser : IW4RConParser
|
|
{
|
|
private static CommandPrefix Prefixes = new CommandPrefix()
|
|
{
|
|
Tell = "tell {0} {1}",
|
|
Say = "say {0}",
|
|
Kick = "clientkick {0} \"{1}\"",
|
|
Ban = "clientkick {0} \"{1}\"",
|
|
TempBan = "tempbanclient {0} \"{1}\""
|
|
};
|
|
|
|
public override CommandPrefix GetCommandPrefixes() => Prefixes;
|
|
}
|
|
}
|