2019-01-26 21:33:37 -05:00
|
|
|
|
using SharedLibraryCore;
|
|
|
|
|
using SharedLibraryCore.RCon;
|
2018-05-11 00:52:20 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2018-08-07 14:43:09 -04:00
|
|
|
|
namespace IW4MAdmin.Application.RconParsers
|
2018-05-11 00:52:20 -04:00
|
|
|
|
{
|
|
|
|
|
class IW3RConParser : IW4RConParser
|
|
|
|
|
{
|
2019-01-26 21:33:37 -05:00
|
|
|
|
public IW3RConParser() : base()
|
2018-05-11 00:52:20 -04:00
|
|
|
|
{
|
2019-01-26 21:33:37 -05:00
|
|
|
|
Configuration.CommandPrefixes = new CommandPrefix()
|
|
|
|
|
{
|
|
|
|
|
Tell = "tell {0} {1}",
|
|
|
|
|
Say = "say {0}",
|
|
|
|
|
Kick = "clientkick {0} \"{1}\"",
|
|
|
|
|
Ban = "clientkick {0} \"{1}\"",
|
|
|
|
|
TempBan = "tempbanclient {0} \"{1}\""
|
|
|
|
|
};
|
2018-05-11 00:52:20 -04:00
|
|
|
|
|
2019-01-26 21:33:37 -05:00
|
|
|
|
Configuration.GameName = Server.Game.IW3;
|
|
|
|
|
}
|
2018-05-11 00:52:20 -04:00
|
|
|
|
}
|
|
|
|
|
}
|