Raised This Month: $51 Target: $400
 12% 

Dedicated server maps


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Cl0thing
Junior Member
Join Date: Sep 2021
Old 09-10-2021 , 03:42   Dedicated server maps
Reply With Quote #1

Hello, I would like to know how to put maps for example aim_map, I started to search in google and downloaded one and I put it in its csgo/maps path but the server starts normally but the map at the end remains stopped in its download
Cl0thing is offline
Austin
Senior Member
Join Date: Oct 2005
Old 09-18-2021 , 04:32   Re: Dedicated server maps
Reply With Quote #2

Did you put the map on the server, somewhere like:
\CSGO\csgo\maps\

And did you also put it in your client maps?
C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\maps

That is the simplest thing to do to get new maps, and it will work if you put the same map in both places.

If you only install it on the server and expect it to download then you also have to debug the settings to allow map downloads and the "built in" download of csgo seems pretty fragile.

I use the fast DL server option and have my maps on a web site and it works great but it is more complicated to set up.
Austin is offline
Cl0thing
Junior Member
Join Date: Sep 2021
Old 09-28-2021 , 19:03   Re: Dedicated server maps
Reply With Quote #3

Quote:
Originally Posted by Austin View Post
you also have to debug the settings to allow map downloads and the "built in" download of csgo seems pretty fragile.
How do I activate it?
what I want is for them to enter the server, load the map and we can play

Last edited by Cl0thing; 09-28-2021 at 19:06.
Cl0thing is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 10-02-2021 , 13:40   Re: Dedicated server maps
Reply With Quote #4

Where you download map?
Which map ?

Links please
__________________
Do not Private Message @me
Bacardi is offline
Cl0thing
Junior Member
Join Date: Sep 2021
Old 10-02-2021 , 19:56   Re: Dedicated server maps
Reply With Quote #5

Quote:
Originally Posted by Bacardi View Post
Where you download map?
Which map ?

Links please
here

Do you know how to enable so that they can download the map by entering the server?
Cl0thing is offline
Austin
Senior Member
Join Date: Oct 2005
Old 10-03-2021 , 16:48   Re: Dedicated server maps
Reply With Quote #6

All you supposedly have to do to allow map downloading from your server is to
1) Put the map on your server.
2) Make sure your server has these two settings
sv_allowdownload 1
sv_allowupload 1

I don't use this method to download maps so I didn’t know if it would work so I was not replying.

I just tested it on my server and my client said it was DL the map but after it showed 100% it went back to %0 downloaded and hung.

I guess no one uses this method and I guess it doesn’t work either.
Anyone using the built in DS map download option for go?

You might want to look into setting up the workshop maps DL option for your server.
I tried it and it works good but it is a bit complicated to set up.
Austin is offline
Cl0thing
Junior Member
Join Date: Sep 2021
Old 10-03-2021 , 17:45   Re: Dedicated server maps
Reply With Quote #7

Quote:
Originally Posted by Austin View Post
You might want to look into setting up the workshop maps DL option for your server.
I tried it and it works good but it is a bit complicated to set up.
I have no idea, that it is DL I started recently with this but it would be worth a try
Cl0thing is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 10-03-2021 , 19:44   Re: Dedicated server maps
Reply With Quote #8

https://github.com/ValveSoftware/Sou...mes/issues/337

Inside your own game, not server.
What output text you get if you type in console:
find cl_allow
find sv_allow
__________________
Do not Private Message @me

Last edited by Bacardi; 10-03-2021 at 19:44.
Bacardi is offline
Austin
Senior Member
Join Date: Oct 2005
Old 10-05-2021 , 14:12   Re: Dedicated server maps
Reply With Quote #9

Thanks to Bacardi suggesting we look at the client setting I figured out how to set up download directly from the server.

The short answer is you need these settings and it is
the Typical CSGO tower of babble!

-------------------------------------------------
On the server you need these settings.
sv_allowdownload 1
sv_downloadurl ""

On the client you need these settings
cl_allowupload 1
sv_allowupload 1
cl_downloadfilter all


To set these on you client you have to edit or create an autoexec.cfg file here:
"C:\Program Files (x86)\Steam\userdata\yoursteamnumber\730\loca l\cfg"
This file also cannot be a DOS ANSI file. It has to be a UTF-8 no BOM file or it will NOT work in CSGO.
And you have to make these changes to autoexec.cfg file before you start up your csgo client.

And every person connecting to your server has to have these setting.
-------------------------------------------------

Some notes:
-------------------------------------------------
1) the downloads are throttled so the maps will download very slowly.
It took 2.5 minutes to download a 10 meg map which is a pretty small map.
An average map of 100meg is going to take 25 minutes to download!

2) If the map changes during the download the download will be canceled.

3) I absolutely needed sv_allowupload 1 on the CLIENT or the downloads would definitely not work.

4) If you don’t have these settings on the client
cl_allowupload 1
sv_allowupload 1
cl_downloadfilter all

csgo will download the entire map and nav files
and THEN show 0% down in the user interface and in the console show:

Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!

I been a software developer for a long time and this seems really wrong.
You can’t check these three settings BEFORE downloading the entire map?
And you can’t show the error message in the user interface?

5) If you run into any problems downloading the maps open your console to hopefully get some feedback on why.

6) When a map download fails this message in the console will tell you the file DOWNLOAD was ignored because File UPLOADS are disabled!

At least for me I absolutely need to have this supposedly SERVER setting on the CLIENT or the downloads would not work.
sv_allowupload 1


-------------------------------------------------
Here are the raw test results.
-------------------------------------------------

1) These Client settings:
-----------------------------------------------
"cl_allowdownload" = "0" ( def. "1" ) archive - Client downloads customization files
"cl_allowupload" = "0" ( def. "1" ) archive - Client uploads customization files
"sv_allowdownload" = "0" ( def. "1" ) - Allow clients to download files
"sv_allowupload" = "0" - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Entire map and nav files are downloaded
Interface hangs on the second download at %0
Console shows
Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!

2) These Client settings:
-----------------------------------------------
"cl_allowdownload" = "1" ( def. "1" ) archive - Client downloads customization files
"cl_allowupload" = "0" ( def. "1" ) archive - Client uploads customization files
"sv_allowdownload" = "0" ( def. "1" ) - Allow clients to download files
"sv_allowupload" = "0" - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Entire map and nav files are downloaded
Interface hangs on the second download at %0
Console shows
Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!

3) These settings:
-----------------------------------------------
"cl_allowdownload" = "1" ( def. "1" ) archive - Client downloads customization files
"cl_allowupload" = "1" ( def. "1" ) archive - Client uploads customization files
"sv_allowdownload" = "0" ( def. "1" ) - Allow clients to download files
"sv_allowupload" = "0" - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Entire map and nav files are downloaded
Interface hangs on the second download at %0
Console shows
Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!

4) These Client settings:
-----------------------------------------------
"cl_allowdownload" = "1" archive - Client downloads customization files
"cl_allowupload" = "1" archive - Client uploads customization files
"sv_allowdownload" = "1" - Allow clients to download files
"sv_allowupload" = "0" - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Entire map and nav files are downloaded
Interface hangs on the second download at %0
Console shows
Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!

5) These settings:
-----------------------------------------------
"cl_allowdownload" = "1" archive - Client downloads customization files
"cl_allowupload" = "1" archive - Client uploads customization files
"sv_allowdownload" = "1" - Allow clients to download files
"sv_allowupload" = "1" ( def. "0" ) - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Map and nav files are downloaded.

6) These settings:
-----------------------------------------------
"cl_allowdownload" = "0" ( def. "1" ) archive - Client downloads customization files
"cl_allowupload" = "1" archive - Client uploads customization files
"sv_allowdownload" = "0" ( def. "1" ) - Allow clients to download files
"sv_allowupload" = "1" ( def. "0" ) - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Map and nav files are downloaded.

7) These settings:
-----------------------------------------------
"cl_allowdownload" = "0" ( def. "1" ) archive - Client downloads customization files
"cl_allowupload" = "1" archive - Client uploads customization files
"sv_allowdownload" = "0" ( def. "1" ) - Allow clients to download files
"sv_allowupload" = "0" - Allow clients to upload customizations files
"cl_downloadfilter" = "all" archive - Determines which files can be downloaded from the server (all, none, nosounds)

Entire map and nav files are downloaded
Interface hangs on the second download at %0
Console shows

Downloading maps/de_goldeneye_facility3.bsp.
Download file 'maps/de_goldeneye_facility3.bsp' ignored. File uploads are disabled!
Austin is offline
Austin
Senior Member
Join Date: Oct 2005
Old 10-07-2021 , 03:43   Re: Dedicated server maps
Reply With Quote #10

Quote:
Originally Posted by Cl0thing View Post
Hello, I would like to know how to put maps for example aim_map, I started to search in google and downloaded one and I put it in its csgo/maps path but the server starts normally but the map at the end remains stopped in its download
Cl0thing,
did you try this?

If you set these on your server and client
download direct from the server will work...
-------------------------------------------------
On the server you need these settings.
sv_allowdownload 1
sv_downloadurl ""

On the client you need these settings
cl_allowupload 1
sv_allowupload 1
cl_downloadfilter all
-------------------------------------------------
Austin is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:40.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode