Перейти к содержимому
View in the app

A better way to browse. Learn more.

Zloplay community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

IW5M: Dedicated Server Tutorial

Опубликовано:

I am posting this ahead of time to be moved on release with IW5M, please offer any suggestions, changes and correct any errors:

 

 

How to make a Dedicated Server for IW5M:

1. Have clean install of MW3 from Steam (or HldsUpdateTool Installer)

 

2. Download the Dedicated Server Update Tool (dsut.zip).

 

3. Place both files into the root directory of mw3 where the folders and .exe files are.

 

4. Run dsut.exe

 

5. Create a shortcut to iw5m_server.exe and add the following paramaters into the target field after openning the properties:

+set net_queryport 27015 +set net_port 27016 +set net_masterServerPort 27017 +set sv_config "server.cfg" +start_map_rotate

It should look something like this:

D:\iw5m\iw5m_server.exe +set net_queryport 27015 +set net_port 27016 +set net_masterServerPort 27017 +set sv_config "server.cfg" +start_map_rotate

 

6. Make sure you port forward 27015, 27016 AND 27017 of the net_queryport, net_port and masterServerPort on your router and firewall. Note: your antivirus (or rather the firewall that comes with it) is most likely going to block any server activity. Disable it or add an exception.

Go to: http://www.portforward.com/ for help on port-forwarding.

 

7. Go into the folder "admin" and edit the server.cfg file as you wish.

Find a copy of the server.cfg here.

Find a copy of default.dspl here.

 

8. Run the shortcut you made previously and away you go.

Your server should now be running.

 

How to Run Multiple Servers:

If you wish to create another server, copy and paste your server.cfg, rename it to server2.cfg or something appropriate and then change the following in your shortcut:

+set sv_config "server.cfg"
+set net_queryPort 27015
+set net_port 27016
+set net_masterServerPort 27017

to:

+set sv_config "server2.cfg"
+set net_queryPort 27018
+set net_port 27019
+set net_masterServerPort 27020

The ports can be different. I would suggest figuring out what ports you wish to use and then change them accordingly.

My suggestion is to use 15-17, 18-20, 21+22 and so you

You can use pretty much anything you want, just use some common sense and try to stay close to the 27000-27100 range

 

Also, in your config for each server add "seta g_log " and give a different log name. This is for b3.

 

Here is a breakdown of what each net_x parameter does:

+set net_port = ??? 
(I have no idea what this does but seems important) -Typing "net_port"  in the console will show this port.

+set net_queryPort = "game port"
(used for /connect) - Typing "net_queryport" in the console will show this port.

+ set net_masterServerPort = query port 
(This is used for b3/rcon) - Typing "net_masterServerPort" in the console will show this port.

net_authPort = auth port
(not used for IW5M) - This can be ignored

 

How to Edit Gametype/Recipes:

You can also get some premade recipes here

Go into the admin folder in your mw3 directory.

Open up your server.cfg

In that file, you should see a line (or few) like this:

// Dedicated server play list (DSPL) specifying server map rotation.
//    Valid game options are controlled via DSR (dedicated server recipe) specified in the DSPL.
seta sv_maprotation "default"

What you set there is where the server will read your map rotations and game types from.

Now open "default.dspl"

If you scroll to the bottom, you will see a few lines that look like this:

*,TDM_default,1
mp_bootleg,DOM_default,1
*,TDEF_default,1000
mp_bravo,JUG_default,1
mp_dome,FFA_default,1

This may look confusing, but it's actually quite simple.

The config is set up like this:

 

map,gametype,weight

 

Map can be any of the maps below or an *. A * Signifies "pick a random map".

Gametype can be any file that is in the admin folder. These are a little more difficult, I'll come back to this later.

Weight just means that the larger the number, the more likely it is to play. (1->1000)

So for instance, if you were to set:

mp_dome,FFA_default,1

This would mean that Dome would be the only map to play and it would be FFA.

If you were to set:

*,TDEF_default,1000

This would mean that it could be any map but it will be team defender every time.

But, if you were to set:

mp_bravo,JUG_default,1
mp_dome,FFA_default,2

This would mean that the only 2 maps your server would play would be Dome and Mission. Mission would always be Juggernaut and Dome would always be FFA. FFA on Dome is more likely to be played because the weight is higher.

 

I have included a modified default.dspl which helps to explain this under step 7 of the first part of this tutorial.

 

Now, on to gametypes.

If you open a .dsr file you will find a bunch of setting you can change. This is everything from gametype, to gametype rules, to class loadouts, to HC settings and such. This is your more in-depth server.cfg

But it's much better. You can fiddle around here OR you can go ingame, enter private match and then change the configuration to what you want. When you're done, hit the "save recipe to disk" button under the "Game setup" menu to save it to your admin folder on your computer.

All you need to do then is move it to your server, drop it back in the admin folder and configure your default.dspl to include it.

 

Map Names:

Standard Maps:

mp_alpha - Lockdown
mp_bootleg - Bootleg
mp_bravo - Mission
mp_carbon - Carbon
mp_dome - Dome
mp_exchange - Downturn
mp_hardhat - Hardhat
mp_interchange - Interchange
mp_lambeth - Fallen
mp_mogadishu - Bakaara
mp_paris - Resistance
mp_plaza2 - Arkaden
mp_seatown - Seatown
mp_radar - Outpost
mp_underground - Underground
mp_village - Village

DLC Maps:

mp_cement - Foundation
mp_italy - Piazza
mp_meteora - Sanctuary
mp_morningwood - Black Box
mp_overwatch - Overwatch
mp_park - Liberation
mp_qadeem - Oasis

Face-off Maps:

mp_aground_ss - Aground
mp_courtyard_ss - Erosion
mp_hillside_ss - Getaway
mp_restrepo_ss - Lookout

 

Colour Codes

^1 – Red
^2 – Green
^3 – Yellow
^4 – Blue
^5 – Light Blue
^6 – Pink
^7 – White
^0 – Black

  • Ответы 231
  • Просмотры 12,9k
  • Created
  • Последний ответ

Top Posters In This Topic

Featured Replies

Опубликовано:
Hey , whenever i run the shortcut it says "Could not load map rotation "default". Shutting down"

 

Please help :(

 

You dont have the default.dsr in the admin folder

 

i have the a default file its a dspl file .... i tried renaming it to default.dsr... nothing happened

 

[attachment=0]IW5.png[/attachment]

Enable file extensions, and see if the file isnt named default.dspl.txt, if it is remove the .txt

Опубликовано:
Hey , whenever i run the shortcut it says "Could not load map rotation "default". Shutting down"

 

Please help :(

 

You dont have the default.dsr in the admin folder

 

i have the a default file its a dspl file .... i tried renaming it to default.dsr... nothing happened

 

[attachment=1]IW5.png[/attachment]

 

 

oh and i also get this

 

[attachment=0]mw32.png[/attachment]

Опубликовано:
Hey , whenever i run the shortcut it says "Could not load map rotation "default". Shutting down"

 

Please help :(

7. Go into the folder "admin" and edit the server.cfg file as you wish.

Find a copy of the server.cfg here.

Find a copy of default.dspl here.

Your must REEEEEEEEEEEEEEEAD...

Опубликовано:
So uhm, I am able to join my server, but other people can't see it.

I was just wondering, how do I see the ip of the server? I mean, I'd like to know which ip should my friend write in "connect :"? The port is 27015 (query port), I just don't know the ip [the internal one? Or something else? I only know the internal, that is 192.168.1.18, but it seems like my friends can't connect with "connect 192.168.1.18:27015" like I do -well, it's an internal ip- (I forwarded the ports with that ip)]

Thanks in advance.

google "what is my ip"

Thank you. I'll try to console connecting when of my friend connects C:

By the way, is there a way to fix the showing and/or connecting by list?

EDIT: Yes, they can connect through the console.

EDIT nВ°2: Now the server is working properly, everyone can join : )

For the ones wondering, here is what the console says:

Welcome to IW5M r20.
http://fourdeltaone.net/ for help and support 
Connecting to online services....
Connected to online services.
net_port is write protected.
Executing server config "server.cfg"
Succeeded reading from default.dspl
Loaded 2 map entries
Loading DSR "INF_default.dsr"...
Loading Succeeded for DSR "INF_default.dsr"
-----------------------------------
Spawning map: mp_aground_ss, gametype infect
Initializing Steam Game Server: game port 27015, auth port 8766, query port 27017, gamedir modernwarfare3, version 1.0.0.0
Steam Game Server initialized as Internet Server.
Steam Master Servers found (1). Server will be Internet Server listed.
[scriptLoader] Loading script GameLog
Spawn map (mp_aground_ss, infect) complete.
-----------------------------------

I'm just wondering, why does that say net_port is write protected?

It works anyways. I'll mess around a bit with dsr files (default infected SUCKS) and that's it :)

My last question is: Is there a way to connect from LAN tab? I don't mind connecting by console anyways. If it's not supported yet, it's fine, even in IW4 it was like that. Thanks for your support!

Опубликовано:

hi i have a problem . plz help me .

 

i downloaded dsut and it began update.

 

when update complete , i create shortcut of "iw5m_server".

 

and when i write "F:\Program Files\Call of Duty Modern Warfare 3 (4delta1)\iw5m_server.exe +set net_queryport 27015 +set net_port 27016 +set net_masterServerPort 27017 +set sv_config "server.cfg" +start_map_rotate" in the target , i see an error --->

===> The name 'F:\Program Files\Call of Duty Modern Warfare 3 (4delta1)\iw5m_server.exe +set net_queryport 27015 +set net_port 27016 +set net_masterServerPort 27017 +set sv_config "server.cfg" +start_map_rotate' specified in the target box is not valid.make sure the path and file name are correct

 

i deleted any space but it repeat this error

 

how i can fix the target box ? :?:

Опубликовано:

The problem is that you're closing the path after the arguments (the quotes). Try it like this:

"F:\Program Files\a popular FPS series IW5 (4delta1)\iw5m_server.exe" +set net_queryport 27015 +set net_port 27016 +set net_masterServerPort 27017 +set sv_config server.cfg +start_map_rotate

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Гость
Ответить в тему...

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу

Важная информация

Используя этот сайт, вы соглашаетесь Условия использования.

Account

Navigation

Поиск

Поиск

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.