Перейти к содержимому
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 created my server and i open and dont happen any error,but i cant see my server in internet tab or LAN tab and i cant connect using "connect 192.168.0.167(my ip)" Pls help me !

Not supposed to use that and that's your IPv4 address not your actual IP. Google: what is my ip and that IP there is your real IP.

This is my ipv4,my normal ip is 192.168.0.1,i tried to connect to the normal and ipv4,and not work...

No, that is not your IP. Google 'IP' and you should get the IP you will use to connect to the server.

Опубликовано:
i have this wierd problem that every certain time (usualy 30 minutes) nobody can connect to my server

it still is visible and neither can i connect , solution?

 

could anybody help me?

Опубликовано:
I've done everything by the guide, all ports open and all, downloaded the updater and still my Dedi won't start up.

This is all i get:

Welcome to IW5M r17.

http://fourdeltaone.net/ for help and support :)

Connecting to online services........

 

 

Any help? I`ve run Dedi's before on T*kno, so i know how to set one up.

 

sir i believe you forgot this part : +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017

No, i have not but thanks for trying to help.

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

Same Error.

 

I can't see the server in the Serverlist, but "connect ip:port" works fine.

 

It says its authenticated with the backend, so I don't know why it doesn't work.

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

 

I can't see the server in the Serverlist, but "connect ip:port" works fine.

 

It says its authenticated with the backend, so I don't know why it doesn't work.

 

what port you use to log on ?

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

Oh typical problems.

 

1. People (out of my WAN range) can connect to my server. I can ONLY by using "connect ip:port". Server didn't show up in Internet List or LAN.

 

2. Private clients are not working.

 

3. No RCON? Wow they can kick me out of my own server by calling a vote.

 

4. List of command tools available other than "cg_fov 90"?

 

Please help thanks. :)

Опубликовано:
  • Автор
Oh typical problems.

 

1. People (out of my WAN range) can connect to my server. I can ONLY by using "connect ip:port". Server didn't show up in Internet List or LAN.

 

2. Private clients are not working.

 

3. No RCON? Wow they can kick me out of my own server by calling a vote.

 

4. List of command tools available other than "cg_fov 90"?

 

Please help thanks. :)

1. Dunno, this happened in IW4M, too

2. Thanks for letting us know

3. Get b3

4. Google? I don't know any other than that one and that's the only one I need

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

Quick reply, thanks!

 

Oh typical problems.

 

1. People (out of my WAN range) can connect to my server. I can ONLY by using "connect ip:port". Server didn't show up in Internet List or LAN.

 

2. Private clients are not working.

 

3. No RCON? Wow they can kick me out of my own server by calling a vote.

 

4. List of command tools available other than "cg_fov 90"?

 

Please help thanks. :)

1. Dunno, this happened in IW4M, too

2. Thanks for letting us know

3. Get b3

4. Google? I don't know any other than that one and that's the only one I need

 

1. If it's fixed, it will be super awesome

2. I thought there's something wrong in my config.cfg, but I double-checked, so this is a legitimate bug.

3. For the time being I think plugins are easier, since b3 requires a database :(

4. I just hope there are some admin commands here.

Опубликовано:
i have this wierd problem that every certain time (usualy 30 minutes) nobody can connect to my server

it still is visible and neither can i connect , solution?

 

could anybody help me?

 

SRSLY ANYONE???

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

I started my server, but can't see in the internet list and don't connect with my ipv4, local ip or wan ip.

This is my command line

"D:\Jogos\STEAM\steamapps\common\call of duty modern warfare 3\iw5m_server.exe" +set sv_config "server.cfg" +set dedicated 2 +set net_port 27015 +start_map_rotate +set net_queryPort 27017

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

How can i join to my Server, and can i see my Server in the Serverlist? My Server is a Extern PC in the same Network...

 

Not work for me :(

/connect 192.168.1.127:27015
/connect 192.168.1.127:27017

 

Max 16 Maps?

 

THX for help :)

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

hi. i created a dedicated server and it says your server will be internet listed and it is ok i think. but when i run the game, it doesnt show up in the internet tab in SERVERS section. i desprately need your help!!

and guys thanx for such hard work in 4d1 group!!! u people rock!

Опубликовано:
  • Автор
hi. i created a dedicated server and it says your server will be internet listed and it is ok i think. but when i run the game, it doesnt show up in the internet tab in SERVERS section. i desprately need your help!!

and guys thanx for such hard work in 4d1 group!!! u people rock!

See if anyone else can see the server

It might take a while for it to show up your end, just give it 5 minutes and check again

reset filters and sort by ping

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

thanx, and also e.g. my ip is 90.20.23.70 (i said e.g.!) when anyone wants to connect to my server, should they write "CONNECT 90.20.23.70:27017" ? i mean what should PORT NUMBER be? 27017?

 

does it have anything to do with B3?

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

Hello.I ran the server and server log that i put below .but my server wasn't appears in server list.we config it exactly like your tutor.and the game version is 1.9.441.what should i do? :?: . and also thank for your great support. ;)

 

version 1.9.441
Connecting to online services.....
Connected to online services.
Executing server config "server.cfg"
Succeeded reading from default.dspl
Loaded 5 map entries
Loading DSR "TDEF_default.dsr"...
Loading Succeeded for DSR "TDEF_default.dsr"
-----------------------------------
Spawning map: mp_hardhat, gametype tdef
Initializing Steam Game Server: game port 27014, auth port 8766, query port 27016, gamedir modernwarfare3, version 1.0.0.1
Steam Game Server initialized as Internet Server.
No Steam Master Servers found. Server will LAN visible only.
Steam Game Server connected. Local IP 91.99.101.150, Public IP 91.99.101.150, Game Port 27014
Spawn map (mp_hardhat, tdef) complete.
-----------------------------------
Steam Game Server is VAC Secure
Steam Master Servers found (2). Server will be Internet Server listed.

Опубликовано:
I've done everything by the guide, all ports open and all, downloaded the updater and still my Dedi won't start up.

This is all i get:

Welcome to IW5M r17.

http://fourdeltaone.net/ for help and support :)

Connecting to online services........

 

 

Any help? I`ve run Dedi's before on T*kno, so i know how to set one up.

 

some help is required on this issue... tech support plz look into this....

i have setup the server perfectly and on launch it gets stuck at "Connecting to online services........" where as if i launch iw5mp_server.exe from the same folder it launches perfectly...

 

PLZ LOOK INTO THIS... i ve been looking for a solution to this problem since the launch and still no solution

Опубликовано:
  • Автор
Hello.I ran the server and server log that i put below .but my server wasn't appears in server list.we config it exactly like your tutor.and the game version is 1.9.441.what should i do? :?: . and also thank for your great support. ;)

 

version 1.9.441
Connecting to online services.....
Connected to online services.
Executing server config "server.cfg"
Succeeded reading from default.dspl
Loaded 5 map entries
Loading DSR "TDEF_default.dsr"...
Loading Succeeded for DSR "TDEF_default.dsr"
-----------------------------------
Spawning map: mp_hardhat, gametype tdef
Initializing Steam Game Server: game port 27014, auth port 8766, query port 27016, gamedir modernwarfare3, version 1.0.0.1
Steam Game Server initialized as Internet Server.
No Steam Master Servers found. Server will LAN visible only.
Steam Game Server connected. Local IP 91.99.101.150, Public IP 91.99.101.150, Game Port 27014
Spawn map (mp_hardhat, tdef) complete.
-----------------------------------
Steam Game Server is VAC Secure
Steam Master Servers found (2). Server will be Internet Server listed.

You're using iw5mp_server.exe, not the one that comes with the DSUT.exe (iw5m_server.exe)

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

Trying to get our server visible on the list also, but no one can see it.

 

I noticed after it loaded and connected to fourdeltaone server list it also had this in the console,

 

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, tdef) complete.

 

Should it be connecting to the steam master server ?

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

hey guys.... Plz some1 help me...i do evryting exactly as order...YES i do run iw5m_server.exe (NOT iw5mp_server.exe) so i know what im doing...and i did evryting right, but not exactly cuz my server doesnt show up in server list or LAN....but according to the tut, i did evryting seemingly right even the shortcut thingy is done right buuuut :?: ...soo any help would be appreciated :D....even my console gives correct commands or writings :D here you go (CHECK IT) :

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 default.dspl
Loaded 2 map entries
Loading DSR "KC.dsr"...
Loading Succeeded for DSR "KC.dsr"
-----------------------------------
Spawning map: mp_overwatch, gametype conf
Initializing Steam Game Server: game port 27017, auth port 8766, query port 27018, 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_overwatch, conf) complete.
-----------------------------------

THX IN ADVANCE,

Sam7, Out

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.