Author Topic: Made a server, players getting "Missing Map" bug.  (Read 4509 times)

0 Members and 1 Guest are viewing this topic.

Offline Myspeld

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
Made a server, players getting "Missing Map" bug.
« on: May 11, 2014, 11:40:40 AM »
DarkRP server and I have "RP DownTown V2" and when people join it says missing map and kicks them. I looked around for about an hour and couldn't find anything. Please help me.

Offline Decicus

  • Hero Member
  • *****
  • Posts: 552
  • Karma: 81
    • Alex Thomassen
Re: Made a server, players getting "Missing Map" bug.
« Reply #1 on: May 11, 2014, 12:11:28 PM »
Have you made sure your fast download (a.k.a FastDL) also has the map on it, preferably compressed to .bz2? (7-Zip is common for doing that).
Contact information:
E-mail: alex@thomassen.xyz.
You can also send a PM.

Offline Myspeld

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
Re: Made a server, players getting "Missing Map" bug.
« Reply #2 on: May 11, 2014, 01:42:10 PM »
I am a new to all of this (sorry) I do not know what FastDL is, I just setup me server today. I am not on a hosting site by the way.

Offline MrPresident

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 2728
  • Karma: 430
    • |G4P| Gman4President
Re: Made a server, players getting "Missing Map" bug.
« Reply #3 on: May 11, 2014, 04:42:09 PM »
Here is a wiki article on fastdl
https://developer.valvesoftware.com/wiki/Sv_downloadurl

Essentially you need to tell the connecting clients where to download the map if they don't have it. If you are running the server from a personal computer, it is highly recommended that you have some external source be your fastdl server. If that is not possible, you may need to look into also hosting a simple web server. If you are running windows, check out WAMP.

Offline Valgoid

  • Full Member
  • ***
  • Posts: 103
  • Karma: -15
  • Wanna Be Lua King
Re: Made a server, players getting "Missing Map" bug.
« Reply #4 on: June 06, 2014, 10:47:37 AM »
If its a map from the Steam Workshop, then you can add a force download to the server, which will force the player to download the map to join the game, which will resolve your problem.

Name the lua script "forcedownload.lua"
Paste in this code below.
Code: [Select]
resource.AddWorkshop( "ID" )
resource.AddWorkshop( "ID" )

Replace the "ID" with the map's ID from the workshop. If you want to add more just keep pasting in IDs from the workshop, this will work for any addon from the workshop. Place the lua folder into lua/autorun/server/.

If you made the map, then you would either have to put it on a website like dropbox for FastDL, or just upload it to the workshop yourself.

FastDL: https://developer.valvesoftware.com/wiki/Sv_downloadurl
Upload to Workshop: http://wiki.garrysmod.com/page/Workshop_Addon_Creation
« Last Edit: June 06, 2014, 10:50:01 AM by Valgoid »