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

adding maps for csgo


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 08-24-2012 , 14:25   adding maps for csgo
Reply With Quote #1

I'm trying to add maps to my go server, they only work 1 time.
if a client has to download a map then he will download that map and he will be able to play that map then.

But then if they already have that map downloaded then this comes up in my client console and its not letting me join.
Spoiler


and this is what's in my server console:
Spoiler

I attached my gamemodes_server: when the problems first start to show i had more errors or warnings so i tryed to fix them all in gamemodes.txt and gamemodes_server.txt
Attached Files
File Type: txt gamemodes_server.txt (52.6 KB, 418 views)
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]

Last edited by striker07; 08-29-2012 at 09:23.
striker07 is offline
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 08-25-2012 , 14:54   Re: adding maps for csgo
Reply With Quote #2

can anyone pls explain me how to add maps with sourcemod?
i really need to know, when adding new maps do i have to edit the gameodes.txt or does this happen automaticly?
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]

Last edited by striker07; 08-25-2012 at 14:54.
striker07 is offline
scoot8100
New Member
Join Date: Aug 2012
Old 08-27-2012 , 18:57   Re: adding maps for csgo
Reply With Quote #3

I think it has to do with your mapgroups I had my server telling me the same thing when trying to run armsrace mode with de_mapsgroup you'll have to create a custom group and put that group name in your server command line I believe thats what fixed mine
scoot8100 is offline
Corvette911
Junior Member
Join Date: Mar 2012
Old 08-27-2012 , 19:21   Re: adding maps for csgo
Reply With Quote #4

There is also an issue with the size of the map...i had to change my net_maxfilesize in addition to fixing the gamemode files...in my case if the client had the map it was ok it he didn't it would crash the server and the client..

Next step is to try with fastdl to see if this works better...adding maps on a CS:go server is turning into a lot of work...hopefully someone figures it out...

Here is the link to the gamemode helper posted on valve developer web page to help build gamemode files...

https://csgoelite.com/help/
Corvette911 is offline
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 08-29-2012 , 09:20   Re: adding maps for csgo
Reply With Quote #5

pff still not able to add maps correctly, I used the helper you linked but it's still the same
when the player has to download the map then he can play it but if he reconnects he cant join the server.


I know it's possible becous there are many servers now who have diffrent maps, could anyone pls lighten us up on this issue?
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]
striker07 is offline
Corvette911
Junior Member
Join Date: Mar 2012
Old 08-31-2012 , 19:20   Re: adding maps for csgo
Reply With Quote #6

When i tried it also failed...my next step is to try it using a fastDL server to see if that works...most real servers use this...i don't yet because CS:GO is just on my home box test linux server..
Corvette911 is offline
Jmills
Member
Join Date: Aug 2012
Old 08-31-2012 , 19:30   Re: adding maps for csgo
Reply With Quote #7

Setup FastDL server with Dropbox, works great, fast and it's free!
__________________
Jmills is offline
dylanmaster1
Member
Join Date: Jun 2012
Location: Sweden
Old 08-31-2012 , 20:06   Re: adding maps for csgo
Reply With Quote #8

One) ask your server host to make gamemode_server.txt override
Two) Use this code copy and paste

Quote:
// To use this file, rename it to GameModes_Server.txt
//
// Values here override the default gamemodes.txt

"GameModes_Server.txt"
{
"gameTypes"
{
"classic"
{
"gameModes"
{
"casual"
{
"maxplayers" "32"
"convars"
{
"hostname" " ~~#1~~ RyzeGamers.org [24/7|JailBreak|RzG|FastDL]"
"mp_startmoney" "16000"
"mp_maxmoney" "16000"
"bot_quota" "0"
}

"mapgroupsMP" // List of mapgroups valid for this game mode
{
"zombie_mixed" ""
}
}
}
}
}

//////////////////////////////////////////////////////////////////////////////////////////////
// Map groups
//
// To use a mapgroup, it needs to be defined in a keyvalues
// block such as the example below, as well as listed in the
// 'mapgroupsMP' block within the game mode that will run it,
// such as the example above.
//
// Then launch the server with '+mapgroup MAPGROUPNAME'
//
// Example:
//
// srcds -game csgo +game_mode 1 +mapgroup mg_bomb_se +map de_nuke_se
//
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/...icated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////


"mapgroups"
{
"zombie_mixed" // mapgroup definition
{
"name" "zombie_mixed"
"maps"
{
"ba_jail_electric_global" ""
"ba_jail_electric_csgo_r3" ""
"Ba_Jail_Kajoly_CsGO1" ""
"ba_jail_small_csgo_fix" ""
"jb_castleguarddev_v3" ""
"jb_iron_go" ""
}
}
"zombie_ze" // mapgroup definition
{
"name" "zombie_mixed"
"maps"
{
"ze_boatescape6_csgo" ""
"ze_echo_boatescape_go" ""
"ze_mirrors_edge_v2_go_pf_final" ""
"ze_toaster_b1" ""
"ze_voodoo_islands_v4_CSGO" ""
}
}
"zombie_zm" // mapgroup definition
{
"name" "zombie_mixed"
"maps"
{
"zm_lila_panic_2012" ""
"zm_parish_v2" ""
"zm_stab_rite_v2" ""
"zm_playtime_v2" ""
}
}
}
Three) Replace zombie_mixed maps with maps you want
Four) add maps to maps folder
Five) add maps to map lists.txt and mapcycle.txt
__________________

dylanmaster1 is offline
striker07
Veteran Member
Join Date: Mar 2012
Location: Solar System/Earth/Belgi
Old 09-01-2012 , 06:17   Re: adding maps for csgo
Reply With Quote #9

thanks guys but i had already found it, I made a new topic of it here for all next ppl who ask these questions
__________________

Working on:
[CSGO/CSS] Mmorpg - an extensive XP/level modulair platform
Progress: [♣♣♣♣♣♣♣|♣♣♣]
striker07 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 08:38.


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