Перейти к содержимому
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

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

I did everything correctly but my server is not in the server list (neither in LAN nor in Internet tab). I could connect to it using the ~ menu and type "connect [local ip:port]"

 

Server console:

Welcome to IW5M r17.
http://fourdeltaone.net/ for help and support 
Connecting to online services....
Connected to online services.
Executing server config "server.cfg"
Succeeded reading from DLC.dspl
Loaded 12 map entries
Loading DSR "TDM_default.dsr"...
Loading Succeeded for DSR "TDM_default.dsr"
-----------------------------------
Spawning map: mp_aground_ss, gametype war
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, war) complete.
-----------------------------------

 

Btw, I checked all required ports using PFPortChecker results are all green in all of them.

I excluded the game folder from anti-virus and even disabled my firewall.... Same thing :(

[Edit][Edit]

no luck

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

+---main
В¦       iw_00.iwd
+---zone
   +---dlc
   В¦       mp_aground_ss.ff
   В¦       mp_aground_ss_load.ff
   В¦       mp_cement.ff
   В¦       mp_cement_load.ff
   В¦       mp_courtyard_ss.ff
   В¦       mp_courtyard_ss_load.ff
   В¦       mp_hillside_ss.ff
   В¦       mp_hillside_ss_load.ff
   В¦       mp_italy.ff
   В¦       mp_italy_load.ff
   В¦       mp_meteora.ff
   В¦       mp_meteora_load.ff
   В¦       mp_morningwood.ff
   В¦       mp_morningwood_load.ff
   В¦       mp_overwatch.ff
   В¦       mp_overwatch_load.ff
   В¦       mp_park.ff
   В¦       mp_park_load.ff
   В¦       mp_qadeem.ff
   В¦       mp_qadeem_load.ff
   В¦       mp_restrepo_ss.ff
   В¦       mp_restrepo_ss_load.ff
   В¦       mp_terminal_cls.ff
   В¦       mp_terminal_cls_load.ff
   В¦
   +---english
           code_post_gfx_mp.ff
           code_pre_gfx_mp.ff
           common_mp.ff
           localized_code_post_gfx_mp.ff
           localized_code_pre_gfx_mp.ff
           localized_common_mp.ff
           localized_ui_mp.ff
           mp_alpha.ff
           mp_alpha_load.ff
           mp_bootleg.ff
           mp_bootleg_load.ff
           mp_bravo.ff
           mp_bravo_load.ff
           mp_carbon.ff
           mp_carbon_load.ff
           mp_dome.ff
           mp_dome_load.ff
           mp_exchange.ff
           mp_exchange_load.ff
           mp_hardhat.ff
           mp_hardhat_load.ff
           mp_interchange.ff
           mp_interchange_load.ff
           mp_lambeth.ff
           mp_lambeth_load.ff
           mp_mogadishu.ff
           mp_mogadishu_load.ff
           mp_paris.ff
           mp_paris_load.ff
           mp_plaza2.ff
           mp_plaza2_load.ff
           mp_radar.ff
           mp_radar_load.ff
           mp_seatown.ff
           mp_seatown_load.ff
           mp_underground.ff
           mp_underground_load.ff
           mp_village_load.ff
           patch.ff
           patch_mp.ff
           patch_mp_aground_ss.ff
           patch_mp_burn_ss.ff
           patch_mp_cement.ff
           patch_mp_courtyard_ss.ff
           patch_mp_crosswalk_ss.ff
           patch_mp_dome.ff
           patch_mp_exchange.ff
           patch_mp_hillside_ss.ff
           patch_mp_lambeth.ff
           patch_mp_morningwood.ff
           patch_mp_paris.ff
           patch_mp_park.ff
           patch_mp_qadeem.ff
           patch_mp_radar.ff
           patch_mp_restrepo_ss.ff
           patch_mp_six_ss.ff
           patch_mp_underground.ff
           patch_mp_village.ff
           ui_mp.ff

 

Server works perfect so far. You may be able to delte some other files like patch.ff.

Опубликовано:
Rockyyy":3nucjjic]1. i have downloaded a fresh copy of MW3 dedicated server tool thru steam.

2. i have updated the files using the http://iw5.prod.fourdeltaone.net/files/dsut.zip

3. i have edit the command line and it now looks like D:\DeviantGaming\COD8\iw5m_server.exe +set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017

4. i have edited the server.cfg

 

when i launch the server it is stuck at "connecting to online services..." waited for 15 mins with no result.

 

i do not have any firewall or antivirus

i have an internet leased line (no ports blocked)

i run windows server 2008

i have previously hosted 3 mw3 servers on steam. never faced any problem. so i assume there is no problem with my internet or windows or router.

 

can some1 get a solution to this. and more over can some1 post the complete 'server.cfg' file so tht every1 can get a look to avoid stupid mistakes. and lastly thnq for the awesome release. i felt i had wasted 59$. i dont fell so after IW5M release.

 +set dedicated 2 +set net_queryPort 27014 +set net_port 27015 +set net_authPort 8766 +set net_masterServerPort 27016 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

 

still the same results. Connecting to online services..........................................

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

Stuck on Connecting to online services. Everything is fresh, properly installed, made the shortcut with that additional line:

+set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

Also, I opened the ports

Опубликовано:
I did everything correctly but my server is not in the server list (neither in LAN nor in Internet tab). I could connect to it using the ~ menu and type "connect [local ip:port]"

 

Server console:

Welcome to IW5M r17.
http://fourdeltaone.net/ for help and support 
Connecting to online services....
Connected to online services.
Executing server config "server.cfg"
Succeeded reading from DLC.dspl
Loaded 12 map entries
Loading DSR "TDM_default.dsr"...
Loading Succeeded for DSR "TDM_default.dsr"
-----------------------------------
Spawning map: mp_aground_ss, gametype war
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, war) complete.
-----------------------------------

 

Btw, I checked all required ports using PFPortChecker results are all green in all of them.

I excluded the game folder from anti-virus and even disabled my firewall.... Same thing :(

[Edit][Edit]

no luck

you put a server browser filter to show empty

Опубликовано:
Can someone upload the latest Version of STEAM MW3 because i only got 1.4.382 and it doesnt works :/

or download the steam mw3 dedicated server...

I dont know whut u mean i only got Teknogmw3 thats why i ask for the patch :S

open steam, click library, click "installed" and then change it to "tools"

Download mw3 dedicated server

Dude i mean ive got not the real Mw3 from steam ive got the skidrow version ^^

Опубликовано:
Stuck on Connecting to online services. Everything is fresh, properly installed, made the shortcut with that additional line:

+set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

Also, I opened the ports

plz can some1 find a solution to this prob. ive been trying to run a server since the launch. been unsuccessful till now. is this problem linked to steam or any other thing. and wat ports can be used? i used ports like 28981-28989 with steam servers. thy worked just fine

Опубликовано:
Rockyyy":3upz0a76]1. i have downloaded a fresh copy of MW3 dedicated server tool thru steam.

2. i have updated the files using the http://iw5.prod.fourdeltaone.net/files/dsut.zip

3. i have edit the command line and it now looks like D:\DeviantGaming\COD8\iw5m_server.exe +set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017

4. i have edited the server.cfg

 

when i launch the server it is stuck at "connecting to online services..." waited for 15 mins with no result.

 

i do not have any firewall or antivirus

i have an internet leased line (no ports blocked)

i run windows server 2008

i have previously hosted 3 mw3 servers on steam. never faced any problem. so i assume there is no problem with my internet or windows or router.

 

can some1 get a solution to this. and more over can some1 post the complete 'server.cfg' file so tht every1 can get a look to avoid stupid mistakes. and lastly thnq for the awesome release. i felt i had wasted 59$. i dont fell so after IW5M release.

 +set dedicated 2 +set net_queryPort 27014 +set net_port 27015 +set net_authPort 8766 +set net_masterServerPort 27016 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

 

this is how the console looks 15 mins after i start the server

Welcome to IW5M r17.
http://fourdeltaone.net/ for help and support 
Connecting to online services......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................

Опубликовано:
  • Автор
Stuck on Connecting to online services. Everything is fresh, properly installed, made the shortcut with that additional line:

+set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

Also, I opened the ports

+set sv_maprotation "default"

That's already in the server.cfg so it's pointless to have it here

Опубликовано:
Stuck on Connecting to online services. Everything is fresh, properly installed, made the shortcut with that additional line:

+set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017 +set sv_maprotation "default" +set sv_maxclients 18 +start_map_rotate

Also, I opened the ports

+set sv_maprotation "default"

That's already in the server.cfg so it's pointless to have it here

That doesn't fucking help at all.

Опубликовано:
updated with a server.cfg under step 7

thts done. i even updated the default.dspl incase tht wuld be the issue. but tht doesnt help either. i even tried using the port 28981 which i used to run the mw3 steam server(worked perfectly then) and still no results.

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.