AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   HL1 Servers (HLDS) (https://forums.alliedmods.net/forumdisplay.php?f=131)
-   -   Map changing taking too long (https://forums.alliedmods.net/showthread.php?t=284289)

WhiteTomcat 06-23-2016 11:38

Map changing taking too long
 
Hello guys. I have a CS 1.6 server but I have a problem. When timeleft is finished server takes too long changing map by itslef. Is there anything that can be done to fix it? Thanks!

wickedd 06-23-2016 11:47

Re: Map changing taking too long
 
You can change the chat time, look in the server.cfg and change it.
Code:

mp_chattime 2

siriusmd99 06-23-2016 13:15

Re: Map changing taking too long
 
Install this plugin, it will delete a file which makes map change too long.

PHP Code:

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "File Remover"
#define VERSION "1.0"
#define AUTHOR "Alka"


public plugin_init() {
   
   
register_plugin(PLUGINVERSIONAUTHOR);
}

public 
plugin_end()
{
   new 
szDir[] = "/"DirPointerszFile[32];
   
   
DirPointer open_dir(szDir""0);
   
   while(
next_file(DirPointerszFilesizeof szFile 1))
   {
      if(
szFile[0] == '.')
         continue;
     
      if(
containi(szFile"custom.hpk") != -1)
      {
         
delete_file(szFile);
         break;
      }
   }
   
close_dir(DirPointer);
   return 
1;



hardboy 06-24-2016 04:30

Re: Map changing taking too long
 
If you have sql connections check out if it fail

WhiteTomcat 06-25-2016 18:24

Re: Map changing taking too long
 
I just changed mp_chattime 2 and everything is just fine now. Thank you guys :)


All times are GMT -4. The time now is 23:28.

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