1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 13:48:00 -05:00

add iw7-mod RCON support (#361)

* create iw7-mod parser

* iw7 default settings & enum stuff

* add zm maps to defaultsettings
This commit is contained in:
m 2025-04-14 22:34:22 -04:00 committed by GitHub
parent 413570d0d4
commit 081c522b96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 285 additions and 2 deletions

View File

@ -723,6 +723,83 @@
"Alias": "Team Deathmatch" "Alias": "Team Deathmatch"
} }
] ]
},
{
"Game": "IW7",
"Gametypes": [
{
"Name": "war",
"Alias": "Team Deathmatch"
},
{
"Name": "front",
"Alias": "Frontline"
},
{
"Name": "dom",
"Alias": "Domination"
},
{
"Name": "sd",
"Alias": "Search and Destroy"
},
{
"Name": "conf",
"Alias": "Kill Confirmed"
},
{
"Name": "dm",
"Alias": "Free For All"
},
{
"Name": "koth",
"Alias": "Hardpoint"
},
{
"Name": "tdef",
"Alias": "Defender"
},
{
"Name": "ball",
"Alias": "Uplink"
},
{
"Name": "dd",
"Alias": "Demolition"
},
{
"Name": "ctf",
"Alias": "Capture The Flag"
},
{
"Name": "sr",
"Alias": "Search and Rescue"
},
{
"Name": "siege",
"Alias": "Reinforce"
},
{
"Name": "grind",
"Alias": "Grind"
},
{
"Name": "infect",
"Alias": "Infected"
},
{
"Name": "gun",
"Alias": "Gun Game"
},
{
"Name": "grnd",
"Alias": "Drop Zone"
},
{
"Name": "zombies",
"Alias": "Zombies"
}
]
} }
], ],
"Maps": [ "Maps": [
@ -2601,6 +2678,163 @@
"Alias": "Sirocco" "Alias": "Sirocco"
} }
] ]
},
{
"Game": "IW7",
"Maps": [
{
"Alias": "Frontier",
"Name": "mp_frontier"
},
{
"Alias": "Dominion",
"Name": "mp_afghan"
},
{
"Alias": "Depot 22",
"Name": "mp_depot"
},
{
"Alias": "Excess",
"Name": "mp_flip"
},
{
"Alias": "Renaissance",
"Name": "mp_geneva"
},
{
"Alias": "Renaissance (Free)",
"Name": "mp_renaissance2"
},
{
"Alias": "Heartland",
"Name": "mp_hawkwar"
},
{
"Alias": "Scrap",
"Name": "mp_junk"
},
{
"Alias": "Archive",
"Name": "mp_mansion"
},
{
"Alias": "Turista",
"Name": "mp_marsoasis"
},
{
"Alias": "Turista (Summer)",
"Name": "mp_turista2"
},
{
"Alias": "Neon",
"Name": "mp_neon"
},
{
"Alias": "Bermuda",
"Name": "mp_nova"
},
{
"Alias": "Permafrost",
"Name": "mp_overflow"
},
{
"Alias": "Permafrost (Free)",
"Name": "mp_permafrost2"
},
{
"Alias": "Ember",
"Name": "mp_paris"
},
{
"Alias": "Fore",
"Name": "mp_pixel"
},
{
"Alias": "Noir",
"Name": "mp_prime"
},
{
"Alias": "Carnage",
"Name": "mp_rally"
},
{
"Alias": "Carnage (Free)",
"Name": "mp_carnage2"
},
{
"Alias": "Breakout",
"Name": "mp_parkour"
},
{
"Alias": "Frost",
"Name": "mp_proto"
},
{
"Alias": "Crusher",
"Name": "mp_quarry"
},
{
"Alias": "Retaliation",
"Name": "mp_riot"
},
{
"Alias": "Skydock",
"Name": "mp_rivet"
},
{
"Alias": "Terminal",
"Name": "mp_skyway"
},
{
"Alias": "Mayday",
"Name": "mp_breakneck"
},
{
"Alias": "Altitude",
"Name": "mp_codphish"
},
{
"Alias": "Grounded",
"Name": "mp_desert"
},
{
"Alias": "Scorch",
"Name": "mp_divide"
},
{
"Alias": "Genesis",
"Name": "mp_dome_iw"
},
{
"Alias": "Throwback",
"Name": "mp_fallen"
},
{
"Alias": "Precinct",
"Name": "mp_metropolis"
},
{
"Alias": "Zombies in Spaceland",
"Name": "cp_zmb"
},
{
"Alias": "Shaolin Shuffle",
"Name": "cp_disco"
},
{
"Alias": "The Beast From Beyond",
"Name": "cp_final"
},
{
"Alias": "Rave in the Redwoods",
"Name": "cp_rave"
},
{
"Alias": "Radioactive Thing",
"Name": "cp_town"
}
]
} }
], ],
"GameStrings": { "GameStrings": {

View File

@ -18,7 +18,8 @@
CSGO = 10, CSGO = 10,
H1 = 11, H1 = 11,
L4D2 = 12, L4D2 = 12,
H2M = 13 H2M = 13,
IW7 = 14
} }
public enum ConnectionType public enum ConnectionType

View File

@ -53,6 +53,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ScriptPlugins", "ScriptPlug
Plugins\ScriptPlugins\ParserL4D2SM.js = Plugins\ScriptPlugins\ParserL4D2SM.js Plugins\ScriptPlugins\ParserL4D2SM.js = Plugins\ScriptPlugins\ParserL4D2SM.js
Plugins\ScriptPlugins\ParserPlutoniumT6.js = Plugins\ScriptPlugins\ParserPlutoniumT6.js Plugins\ScriptPlugins\ParserPlutoniumT6.js = Plugins\ScriptPlugins\ParserPlutoniumT6.js
Plugins\ScriptPlugins\ParserH2MMOD.js = Plugins\ScriptPlugins\ParserH2MMOD.js Plugins\ScriptPlugins\ParserH2MMOD.js = Plugins\ScriptPlugins\ParserH2MMOD.js
Plugins\ScriptPlugins\ParserIW7MOD.js = Plugins\ScriptPlugins\ParserIW7MOD.js
EndProjectSection EndProjectSection
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomessageFeed", "Plugins\AutomessageFeed\AutomessageFeed.csproj", "{F5815359-CFC7-44B4-9A3B-C04BACAD5836}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomessageFeed", "Plugins\AutomessageFeed\AutomessageFeed.csproj", "{F5815359-CFC7-44B4-9A3B-C04BACAD5836}"

View File

@ -0,0 +1,43 @@
var rconParser;
var eventParser;
var plugin = {
author: 'mjkzy',
version: 0.1,
name: 'IW7-Mod Parser',
isParser: true,
onEventAsync: function(gameEvent, server) {},
onLoadAsync: function(manager) {
rconParser = manager.GenerateDynamicRConParser(this.name);
eventParser = manager.GenerateDynamicEventParser(this.name);
rconParser.Configuration.CommandPrefixes.Kick = 'kickClient {0} "{1}"';
rconParser.Configuration.CommandPrefixes.Ban = 'kickClient {0} "{1}"';
rconParser.Configuration.CommandPrefixes.TempBan = 'kickClient {0} "{1}"';
rconParser.Configuration.CommandPrefixes.Tell = 'tellraw {0} "{1}"';
rconParser.Configuration.CommandPrefixes.Say = 'sayraw "{0}"';
rconParser.Configuration.CommandPrefixes.RConResponse = '\xff\xff\xff\xffprint';
rconParser.Configuration.Dvar.Pattern = '^ *\\"(.+)\\" is: \\"(.+)?\\" default: \\"(.+)?\\"';
rconParser.Configuration.Status.Pattern = '^ *([0-9]+) +-?([0-9]+) +(Yes|No) +((?:[A-Z]+|[0-9]+)) +((?:[a-z]|[0-9]){8,32}|(?:[a-z]|[0-9]){8,32}|bot[0-9]+|(?:[0-9]+)) *(.{0,32}) +(\\d+\\.\\d+\\.\\d+.\\d+\\:-*\\d{1,5}|0+.0+:-*\\d{1,5}|loopback|unknown|bot) +(-*[0-9]+) *$';
rconParser.Configuration.StatusHeader.Pattern = 'num +score +bot +ping +guid +name +address +qport *';
rconParser.Configuration.Status.AddMapping(102, 4);
rconParser.Configuration.Status.AddMapping(103, 5);
rconParser.Configuration.Status.AddMapping(104, 6);
rconParser.Configuration.WaitForResponse = false;
rconParser.Configuration.DefaultRConPort = 27016;
eventParser.Configuration.GameDirectory = '';
eventParser.Configuration.LocalizeText = '\x1f';
rconParser.Version = 'IW7 6.23 build 1435251 Tue Apr 17 18:34:00 2018 win64';
rconParser.GameName = 14; // IW7
eventParser.Version = 'IW7 6.23 build 1435251 Tue Apr 17 18:34:00 2018 win64';
eventParser.GameName = 14; // IW7
},
onUnloadAsync: function() {},
onTickAsync: function(server) {}
};

View File

@ -127,6 +127,9 @@ const plugin = {
'h2m': { 'h2m': {
right: colorLeft right: colorLeft
}, },
'iw7': {
right: colorLeft
}
}; };
const servers = plugin.manager.servers; const servers = plugin.manager.servers;

View File

@ -37,7 +37,8 @@ namespace SharedLibraryCore
CSGO = 10, CSGO = 10,
H1 = 11, H1 = 11,
L4D2 = 12, L4D2 = 12,
H2M = 13 H2M = 13,
IW7 = 14
} }
// only here for performance // only here for performance