4645bd84e8
setup shared library for NuGet package fix a couple things with offset detection calc get cod4x working again
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
var rconParser;
|
|
var eventParser;
|
|
|
|
var plugin = {
|
|
author: 'FrenchFry, RaidMax',
|
|
version: 0.5,
|
|
name: 'CoD4x Parser',
|
|
isParser: true,
|
|
|
|
onEventAsync: function (gameEvent, server) {
|
|
},
|
|
|
|
onLoadAsync: function (manager) {
|
|
rconParser = manager.GenerateDynamicRConParser();
|
|
eventParser = manager.GenerateDynamicEventParser();
|
|
|
|
rconParser.Configuration.Status.Pattern = '^ *([0-9]+) +-?([0-9]+) +((?:[A-Z]+|[0-9]+)) +((?:[a-z]|[0-9]){16,32}|(?:[a-z]|[0-9]){32}|bot[0-9]+) ([0-9+]) *(.{0,32}) +([0-9]+) +(\\d+\\.\\d+\\.\\d+.\\d+\\:-*\\d{1,5}|0+.0+:-*\\d{1,5}|loopback) +(-*[0-9]+) +([0-9]+) *$'
|
|
rconParser.Configuration.Status.AddMapping(104, 6); // RConName
|
|
rconParser.Configuration.Status.AddMapping(105, 8); // RConIPAddress
|
|
|
|
rconParser.Configuration.Dvar.Pattern = '^"(.+)" is: "(.+)?" default: "(.+)?" info: "(.+)?"$';
|
|
rconParser.Configuration.Dvar.AddMapping(109, 2); // DVAR latched value
|
|
rconParser.Configuration.Dvar.AddMapping(110, 4); // dvar info
|
|
rconParser.Version = 'CoD4 X - win_mingw-x86 build 963 Mar 12 2019';
|
|
rconParser.GameName = 1; // IW3
|
|
|
|
eventParser.Configuration.GameDirectory = 'main';
|
|
eventParser.Version = 'CoD4 X - win_mingw-x86 build 963 Mar 12 2019';
|
|
eventParser.GameName = 1; // IW3
|
|
eventParser.URLProtocolFormat = 'cod4://{{ip}}:{{port}}';
|
|
},
|
|
|
|
onUnloadAsync: function () {
|
|
},
|
|
|
|
onTickAsync: function (server) {
|
|
}
|
|
}; |