7a6dccc26a
Remove IW5 parser Begin implementation of dynamic parsers
26 lines
657 B
C#
26 lines
657 B
C#
using SharedLibraryCore;
|
|
using SharedLibraryCore.RCon;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IW4MAdmin.Application.RconParsers
|
|
{
|
|
class IW3RConParser : IW4RConParser
|
|
{
|
|
public IW3RConParser() : base()
|
|
{
|
|
Configuration.CommandPrefixes = new CommandPrefix()
|
|
{
|
|
Tell = "tell {0} {1}",
|
|
Say = "say {0}",
|
|
Kick = "clientkick {0} \"{1}\"",
|
|
Ban = "clientkick {0} \"{1}\"",
|
|
TempBan = "tempbanclient {0} \"{1}\""
|
|
};
|
|
|
|
Configuration.GameName = Server.Game.IW3;
|
|
}
|
|
}
|
|
}
|