Raised This Month: $ Target: $400
 0% 

[CS:GO] Deathmatch - Map dont change


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-21-2015 , 20:55   [CS:GO] Deathmatch - Map dont change
Reply With Quote #1

Hey everyone, I have a little problem.
On my DeathMatch server I have the poll to choose the nextmap and its fine, so we all choose mirage and nextmap = mirage, but when the times hit de 00:00 the map dont change because it says its the last round, so if I remove objetives and the other things my server just stay stucked on 00:00, I can only make a poll with my Admin and the map changes after the votes.

Someone can help me? I have maxrounds = 0 ; timelimit = 2 (example) ; roundtime = 2 (example)

Thanks
Foskitox is offline
Franc1sco
Veteran Member
Join Date: Oct 2010
Location: Spain (Madrid)
Old 06-21-2015 , 21:00   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #2

Surely you need a "round end" event for change map. You can do it with a plugin like this -> https://forums.alliedmods.net/showthread.php?t=233138
__________________
Veteran Coder -> Activity channel
Coding on CS2 and taking paid and free jobs.

Contact: Steam, Telegram or discord ( franug ).

You like my work? +Rep in my steam profile comments or donate.


Last edited by Franc1sco; 06-21-2015 at 21:00.
Franc1sco is offline
Send a message via MSN to Franc1sco
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-21-2015 , 21:10   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #3

Quote:
Originally Posted by Franc1sco View Post
Surely you need a "round end" event for change map. You can do it with a plugin like this -> https://forums.alliedmods.net/showthread.php?t=233138
But he said maybe he dont work on CS:GO. If I dont have more options I will try it :b
Thanks ;)
Foskitox is offline
Franc1sco
Veteran Member
Join Date: Oct 2010
Location: Spain (Madrid)
Old 06-21-2015 , 21:14   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #4

Quote:
Originally Posted by Foskitox View Post
But he said maybe he dont work on CS:GO. If I dont have more options I will try it :b
Thanks ;)
Seeing the code, that plugin should works in csgo too.

if not, you can use this other plugin https://forums.alliedmods.net/showthread.php?p=1214225
__________________
Veteran Coder -> Activity channel
Coding on CS2 and taking paid and free jobs.

Contact: Steam, Telegram or discord ( franug ).

You like my work? +Rep in my steam profile comments or donate.


Last edited by Franc1sco; 06-21-2015 at 21:14.
Franc1sco is offline
Send a message via MSN to Franc1sco
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-21-2015 , 21:22   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #5

Quote:
Originally Posted by Franc1sco View Post
Seeing the code, that plugin should works in csgo too.

if not, you can use this other plugin https://forums.alliedmods.net/showthread.php?p=1214225
Thanks, I will try tomorrow ;) I give feedback tomorrow :b
Foskitox is offline
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-21-2015 , 22:14   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #6

[QUOTE=Franc1sco;2310454]Seeing the code, that plugin should works in csgo too.

if not, you can use this other plugin https://forums.alliedmods.net/showthread.php?p=1214225

We have a problem, the plugin slays all players 1/2seconds before the time hit the 00:00, so dont do nothing and dont have cvars to change
Foskitox is offline
Sprilo
Member
Join Date: Aug 2014
Old 06-21-2015 , 22:18   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #7

Try this one, its csgo supported.
https://forums.alliedmods.net/showthread.php?t=254830
Sprilo is offline
asdfxD
Veteran Member
Join Date: Apr 2011
Old 06-22-2015 , 00:11   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #8

just use the csgo map vote and set up your gamemodes_server.cfg map group.

my map group as example:

PHP Code:
"GameModes_Server.txt"
{
    
"gameTypes"
    
{
        
"classic"
        
{
            
"gameModes"
            
{
                
"casual"
                
{
                    
"maxplayers"                        "40"
                    
                    "exec"
                    
{
                            
"exec"                "my_casual_settings.cfg"
                    
}
                    
"mapgroupsMP"
                    
{
                            
"mg_allmaps"                ""
                    
}
                }
            }    
        }
    }
    
"mapgroups"
    
{
        
"mg_allmaps" 
        
{
            
"name"      "mg_allmaps" 
            "maps" 
            
{
                
"de_dust2"   ""
                "de_dust2_night"   ""
            
}
        }
    }

remove the sourcemod nextmap.smx plugin or move it to disabled folder.
you need in server.cfg / gamemode casual/comp/what ever .cfg

mp_endmatch_votenextmap "1"
mp_match_end_restart "0"

if you use this. you dont need custom plugins for it, lol.
have a csgo dm server too and it works fine.

Last edited by asdfxD; 06-22-2015 at 00:14.
asdfxD is offline
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-22-2015 , 10:06   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #9

Quote:
Originally Posted by Sprilo View Post
Thanks, it works
Foskitox is offline
Foskitox
Junior Member
Join Date: Jun 2015
Old 06-22-2015 , 10:07   Re: [CS:GO] Deathmatch - Map dont change
Reply With Quote #10

Quote:
Originally Posted by asdfxD View Post
just use the csgo map vote and set up your gamemodes_server.cfg map group.

my map group as example:

PHP Code:
"GameModes_Server.txt"
{
    
"gameTypes"
    
{
        
"classic"
        
{
            
"gameModes"
            
{
                
"casual"
                
{
                    
"maxplayers"                        "40"
                    
                    "exec"
                    
{
                            
"exec"                "my_casual_settings.cfg"
                    
}
                    
"mapgroupsMP"
                    
{
                            
"mg_allmaps"                ""
                    
}
                }
            }    
        }
    }
    
"mapgroups"
    
{
        
"mg_allmaps" 
        
{
            
"name"      "mg_allmaps" 
            "maps" 
            
{
                
"de_dust2"   ""
                "de_dust2_night"   ""
            
}
        }
    }

remove the sourcemod nextmap.smx plugin or move it to disabled folder.
you need in server.cfg / gamemode casual/comp/what ever .cfg

mp_endmatch_votenextmap "1"
mp_match_end_restart "0"

if you use this. you dont need custom plugins for it, lol.
have a csgo dm server too and it works fine.
Thanks :b But now I have a plugin, but I will try it next time :b
Foskitox 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 03:56.


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