Raised This Month: $32 Target: $400
 8% 

MultiCFG for Deathmatch Advanced


Post New Thread Reply   
 
Thread Tools Display Modes
Author
Ejziponken
AlliedModders Donor
Join Date: Apr 2008
Plugin ID:
6633
Plugin Version:
Plugin Category:
Gameplay
Plugin Game:
Counter-Strike: GO
Plugin Dependencies:
    Servers with this Plugin:
     
    Plugin Description:
    MultiCFG for Deathmatch Advanced
    Old 07-06-2019 , 08:41   MultiCFG for Deathmatch Advanced
    Reply With Quote #1

    Lots of people have been asking on how to create a "MultiCFG" Deathmatch server. Im not a coder so I just found an easy temp solution until someone makes a proper plugin. Im calling it MultiMode since MultiCFG is a name a different community came up with.

    How to use:
    You basically need a plugin that loads Deathmatch Advanced modes on a timer. This code below will do just that. You can change the time (default 300 sec). You can also add or remove modes (default has 4 modes). If you adding/removing modes you need to change "if(chosen == 3)" to match the amount of modes you running.

    The modes like "Ak Colt" is found in the deathmatch.ini file.There you can create your own modes and play arround with the messages and configs to load such as HS only for example.
    You can also edit the code and use respawn instead of equip if you like that better.

    You can edit the code and compile it with https://spider.limetech.io/

    Requirements:
    Deathmatch Goes Advanced


    MultiMode code:
    Code:
    #include <sourcemod>
    
    public void OnMapStart()
    {
        CreateTimer(300.0, Timer_Callback, _, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
    }
    
    chosen = 0;
    
    public Action Timer_Callback(Handle timer)
    {
    
        if(chosen == 0)
            ServerCommand("dm_load \"Game Modes\" \"Ak Colt\" equip");
        else if(chosen == 1)
            ServerCommand("dm_load \"Game Modes\" \"Pistols\" equip");
        else if(chosen == 2)
            ServerCommand("dm_load \"Game Modes\" \"Scout knives\" equip");
        else if(chosen == 3)
            ServerCommand("dm_load \"Game Modes\" \"SMGs\" equip");
    
        if(chosen == 3)
            chosen = 0;
    
        chosen++;
        return Plugin_Continue;
    }
    Example of a mode from deathmatch.ini:
    Code:
            "Ak Colt"
            {
                "SectionOptions"
                {
                    "AdminMenuName" "Aim/AK-Colt"
                    "PlayerDisplay" "AK-Colt"
                }
                
                "Load"
                {
                    "Configs" "Options Default"
    		"Configs" "Only HS Disabled"
                    "Configs" "Show Menu"
                    "Configs" "Primary AK and M4"
                    "Configs" "Secondary Aim"
                    "Configs" "No Nades"
                }
                
                "Cvars"
                {   
                    "dm_default_primary" "weapon_ak47"
                    "dm_default_secondary" "weapon_p250"
                }
            }
    Support:
    Any support for how to create new modes and configs should be asked in the Deathmatch Advanced thread.

    Credit for the MultiMode code:
    backwards
    Sikari

    Last edited by Ejziponken; 07-11-2019 at 05:18.
    Ejziponken is offline
    N1ppler
    Junior Member
    Join Date: Aug 2019
    Location: Germany
    Old 10-30-2019 , 05:15   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #2

    Hi,
    I've been looking for such a plugin for a long time.
    I installed Deathmatch Goes Advanced.
    Where do I have to use MultiMode code or which plugin do I need for this code ?
    N1ppler is offline
    Ejziponken
    AlliedModders Donor
    Join Date: Apr 2008
    Old 10-30-2019 , 06:01   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #3

    This is a separate plugin u need to compile after u made your changes to it and then run it WITH Deathmatch Goes Advanced.

    This plugin is only loading different "modes" from the eathmatch Goes Advanced.

    You can also try https://github.com/Shivaah/multicfg-...ee/development

    Last edited by Ejziponken; 10-30-2019 at 06:01.
    Ejziponken is offline
    N1ppler
    Junior Member
    Join Date: Aug 2019
    Location: Germany
    Old 10-31-2019 , 05:00   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #4

    Thanks for the answer and the tip
    I'll test this and then report back
    N1ppler is offline
    N1ppler
    Junior Member
    Join Date: Aug 2019
    Location: Germany
    Old 11-02-2019 , 11:58   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #5

    I tested https://github.com/Shivaah/multicfg-...ee/development
    and it work fine for me thanks.

    I added modes in Deathmatch Goes Advanced and let them changen with that plugin

    Last edited by N1ppler; 11-02-2019 at 11:58.
    N1ppler is offline
    gildevanaraujo
    Senior Member
    Join Date: Oct 2018
    Location: Brazil
    Old 12-04-2019 , 21:01   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #6

    Quote:
    Originally Posted by Ejziponken View Post
    This is a separate plugin u need to compile after u made your changes to it and then run it WITH Deathmatch Goes Advanced.

    This plugin is only loading different "modes" from the eathmatch Goes Advanced.

    You can also try https://github.com/Shivaah/multicfg-...ee/development
    Code:
    L 12/04/2019 - 16:41:42: SourceMod error session started
    L 12/04/2019 - 16:41:42: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 16:41:42: [SM] Exception reported: Client 7 is not connected
    L 12/04/2019 - 16:41:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 16:41:42: [SM] Call stack trace:
    L 12/04/2019 - 16:41:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 16:41:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 16:41:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 16:41:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 16:46:42: [SM] Exception reported: Client 5 is not connected
    L 12/04/2019 - 16:46:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 16:46:42: [SM] Call stack trace:
    L 12/04/2019 - 16:46:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 16:46:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 16:46:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 16:46:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 16:49:42: [SM] Exception reported: Client 10 is not in game
    L 12/04/2019 - 16:49:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 16:49:42: [SM] Call stack trace:
    L 12/04/2019 - 16:49:42: [SM]   [0] IsClientObserver
    L 12/04/2019 - 16:49:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 16:49:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 16:49:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:00:42: [SM] Exception reported: Client 6 is not connected
    L 12/04/2019 - 17:00:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:00:42: [SM] Call stack trace:
    L 12/04/2019 - 17:00:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:00:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:00:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:00:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:05:42: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 17:05:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:05:42: [SM] Call stack trace:
    L 12/04/2019 - 17:05:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:05:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:05:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:05:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:10:42: [SM] Exception reported: Client 10 is not connected
    L 12/04/2019 - 17:10:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:10:42: [SM] Call stack trace:
    L 12/04/2019 - 17:10:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:10:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:10:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:10:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:13:42: [SM] Exception reported: Client 7 is not connected
    L 12/04/2019 - 17:13:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:13:42: [SM] Call stack trace:
    L 12/04/2019 - 17:13:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:13:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:13:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:13:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:18:42: [SM] Exception reported: Client 2 is not in game
    L 12/04/2019 - 17:18:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:18:42: [SM] Call stack trace:
    L 12/04/2019 - 17:18:42: [SM]   [0] IsClientObserver
    L 12/04/2019 - 17:18:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:18:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:18:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:21:42: [SM] Exception reported: Client 7 is not connected
    L 12/04/2019 - 17:21:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:21:42: [SM] Call stack trace:
    L 12/04/2019 - 17:21:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:21:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:21:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:21:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:22:42: [SM] Exception reported: Client 9 is not connected
    L 12/04/2019 - 17:22:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:22:42: [SM] Call stack trace:
    L 12/04/2019 - 17:22:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:22:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:22:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:22:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:32:42: [SM] Exception reported: Client 9 is not connected
    L 12/04/2019 - 17:32:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:32:42: [SM] Call stack trace:
    L 12/04/2019 - 17:32:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:32:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:32:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:32:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:37:42: [SM] Exception reported: Client 6 is not connected
    L 12/04/2019 - 17:37:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:37:42: [SM] Call stack trace:
    L 12/04/2019 - 17:37:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:37:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:37:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:37:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:45:42: [SM] Exception reported: Client 3 is not connected
    L 12/04/2019 - 17:45:42: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:45:42: [SM] Call stack trace:
    L 12/04/2019 - 17:45:42: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:45:42: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:45:42: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:45:42: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 17:49:45: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 17:49:45: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 17:49:45: [SM] Call stack trace:
    L 12/04/2019 - 17:49:45: [SM]   [0] IsFakeClient
    L 12/04/2019 - 17:49:45: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 17:49:45: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 17:49:45: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 17:51:22: Error log file session closed.
    L 12/04/2019 - 18:03:08: SourceMod error session started
    L 12/04/2019 - 18:03:08: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 18:03:08: [SM] Exception reported: Client 3 is not in game
    L 12/04/2019 - 18:03:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:03:08: [SM] Call stack trace:
    L 12/04/2019 - 18:03:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 18:03:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:03:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:03:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:16:08: [SM] Exception reported: Client 4 is not connected
    L 12/04/2019 - 18:16:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:16:08: [SM] Call stack trace:
    L 12/04/2019 - 18:16:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:16:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:16:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:16:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:21:08: [SM] Exception reported: Client 4 is not in game
    L 12/04/2019 - 18:21:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:21:08: [SM] Call stack trace:
    L 12/04/2019 - 18:21:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 18:21:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:21:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:21:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:24:08: [SM] Exception reported: Client 8 is not connected
    L 12/04/2019 - 18:24:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:24:08: [SM] Call stack trace:
    L 12/04/2019 - 18:24:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:24:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:24:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:24:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:25:08: [SM] Exception reported: Client 7 is not connected
    L 12/04/2019 - 18:25:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:25:08: [SM] Call stack trace:
    L 12/04/2019 - 18:25:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:25:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:25:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:25:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:35:08: [SM] Exception reported: Client 4 is not connected
    L 12/04/2019 - 18:35:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:35:08: [SM] Call stack trace:
    L 12/04/2019 - 18:35:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:35:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:35:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:35:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:40:08: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 18:40:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:40:08: [SM] Call stack trace:
    L 12/04/2019 - 18:40:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:40:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:40:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:40:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:45:08: [SM] Exception reported: Client 4 is not connected
    L 12/04/2019 - 18:45:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:45:08: [SM] Call stack trace:
    L 12/04/2019 - 18:45:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:45:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:45:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:45:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:48:08: [SM] Exception reported: Client 4 is not connected
    L 12/04/2019 - 18:48:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:48:08: [SM] Call stack trace:
    L 12/04/2019 - 18:48:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:48:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:48:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:48:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 18:56:08: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 18:56:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 18:56:08: [SM] Call stack trace:
    L 12/04/2019 - 18:56:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 18:56:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 18:56:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 18:56:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:07:08: [SM] Exception reported: Client 13 is not connected
    L 12/04/2019 - 19:07:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:07:08: [SM] Call stack trace:
    L 12/04/2019 - 19:07:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:07:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:07:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:07:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:12:08: [SM] Exception reported: Client 10 is not in game
    L 12/04/2019 - 19:12:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:12:08: [SM] Call stack trace:
    L 12/04/2019 - 19:12:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 19:12:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:12:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:12:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:17:08: [SM] Exception reported: Client 10 is not connected
    L 12/04/2019 - 19:17:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:17:08: [SM] Call stack trace:
    L 12/04/2019 - 19:17:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:17:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:17:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:17:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:20:08: [SM] Exception reported: Client 7 is not connected
    L 12/04/2019 - 19:20:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:20:08: [SM] Call stack trace:
    L 12/04/2019 - 19:20:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:20:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:20:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:20:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:25:08: [SM] Exception reported: Client 5 is not connected
    L 12/04/2019 - 19:25:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:25:08: [SM] Call stack trace:
    L 12/04/2019 - 19:25:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:25:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:25:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:25:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:28:08: [SM] Exception reported: Client 11 is not in game
    L 12/04/2019 - 19:28:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:28:08: [SM] Call stack trace:
    L 12/04/2019 - 19:28:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 19:28:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:28:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:28:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:39:08: [SM] Exception reported: Client 6 is not connected
    L 12/04/2019 - 19:39:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:39:08: [SM] Call stack trace:
    L 12/04/2019 - 19:39:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:39:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:39:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:39:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:44:08: [SM] Exception reported: Client 12 is not in game
    L 12/04/2019 - 19:44:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:44:08: [SM] Call stack trace:
    L 12/04/2019 - 19:44:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 19:44:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:44:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:44:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:49:08: [SM] Exception reported: Client 13 is not connected
    L 12/04/2019 - 19:49:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:49:08: [SM] Call stack trace:
    L 12/04/2019 - 19:49:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:49:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:49:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:49:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:52:08: [SM] Exception reported: Client 10 is not connected
    L 12/04/2019 - 19:52:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:52:08: [SM] Call stack trace:
    L 12/04/2019 - 19:52:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:52:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:52:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:52:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 19:57:08: [SM] Exception reported: Client 6 is not connected
    L 12/04/2019 - 19:57:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 19:57:08: [SM] Call stack trace:
    L 12/04/2019 - 19:57:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 19:57:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 19:57:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 19:57:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 20:00:08: [SM] Exception reported: Client 14 is not in game
    L 12/04/2019 - 20:00:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:00:08: [SM] Call stack trace:
    L 12/04/2019 - 20:00:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:00:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:00:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:00:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 20:01:08: [SM] Exception reported: Client 14 is not connected
    L 12/04/2019 - 20:01:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:01:08: [SM] Call stack trace:
    L 12/04/2019 - 20:01:08: [SM]   [0] IsFakeClient
    L 12/04/2019 - 20:01:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:01:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:01:08: [SM]   [3] Line 82, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::CycleControl
    L 12/04/2019 - 20:05:11: Error log file session closed.
    L 12/04/2019 - 20:05:35: SourceMod error session started
    L 12/04/2019 - 20:05:35: Info (map "de_dust2") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:05:35: [SM] Exception reported: Client 3 is not in game
    L 12/04/2019 - 20:05:35: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:05:35: [SM] Call stack trace:
    L 12/04/2019 - 20:05:35: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:05:35: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:05:35: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:05:35: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:06:22: Error log file session closed.
    L 12/04/2019 - 20:06:54: SourceMod error session started
    L 12/04/2019 - 20:06:54: Info (map "de_nuke") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:06:54: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 20:06:54: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:06:54: [SM] Call stack trace:
    L 12/04/2019 - 20:06:54: [SM]   [0] IsFakeClient
    L 12/04/2019 - 20:06:54: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:06:54: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:06:54: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:24:47: Error log file session closed.
    L 12/04/2019 - 20:25:08: SourceMod error session started
    L 12/04/2019 - 20:25:08: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:25:08: [SM] Exception reported: Client 2 is not in game
    L 12/04/2019 - 20:25:08: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:25:08: [SM] Call stack trace:
    L 12/04/2019 - 20:25:08: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:25:08: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:25:08: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:25:08: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:46:43: Error log file session closed.
    L 12/04/2019 - 20:47:12: SourceMod error session started
    L 12/04/2019 - 20:47:12: Info (map "de_dust2") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:47:12: [SM] Exception reported: Client 2 is not in game
    L 12/04/2019 - 20:47:12: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:47:12: [SM] Call stack trace:
    L 12/04/2019 - 20:47:12: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:47:12: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:47:12: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:47:12: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:48:00: Error log file session closed.
    L 12/04/2019 - 20:48:28: SourceMod error session started
    L 12/04/2019 - 20:48:28: Info (map "de_nuke") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:48:28: [SM] Exception reported: Client 2 is not connected
    L 12/04/2019 - 20:48:28: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:48:28: [SM] Call stack trace:
    L 12/04/2019 - 20:48:28: [SM]   [0] IsFakeClient
    L 12/04/2019 - 20:48:28: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:48:28: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:48:28: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:48:58: Error log file session closed.
    L 12/04/2019 - 20:49:22: SourceMod error session started
    L 12/04/2019 - 20:49:22: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:49:22: [SM] Exception reported: Client 2 is not in game
    L 12/04/2019 - 20:49:22: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:49:22: [SM] Call stack trace:
    L 12/04/2019 - 20:49:22: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:49:22: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:49:22: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:49:22: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:50:27: Error log file session closed.
    L 12/04/2019 - 20:50:54: SourceMod error session started
    L 12/04/2019 - 20:50:54: Info (map "de_dust2") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:50:54: [SM] Exception reported: Client 3 is not in game
    L 12/04/2019 - 20:50:54: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:50:54: [SM] Call stack trace:
    L 12/04/2019 - 20:50:54: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:50:54: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:50:54: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:50:54: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:52:55: Error log file session closed.
    L 12/04/2019 - 20:53:20: SourceMod error session started
    L 12/04/2019 - 20:53:20: Info (map "de_nuke") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:53:20: [SM] Exception reported: Client 4 is not in game
    L 12/04/2019 - 20:53:20: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:53:20: [SM] Call stack trace:
    L 12/04/2019 - 20:53:20: [SM]   [0] IsClientObserver
    L 12/04/2019 - 20:53:20: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:53:20: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:53:20: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:56:25: Error log file session closed.
    L 12/04/2019 - 20:56:43: SourceMod error session started
    L 12/04/2019 - 20:56:43: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 20:56:43: [SM] Exception reported: Client 3 is not connected
    L 12/04/2019 - 20:56:43: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 20:56:43: [SM] Call stack trace:
    L 12/04/2019 - 20:56:43: [SM]   [0] IsFakeClient
    L 12/04/2019 - 20:56:43: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 20:56:43: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 20:56:43: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 20:57:36: Error log file session closed.
    L 12/04/2019 - 21:42:20: SourceMod error session started
    L 12/04/2019 - 21:42:20: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 21:42:20: [SM] Exception reported: Handle 681062a is invalid (error 1)
    L 12/04/2019 - 21:42:20: [SM] Blaming: ServerAdvertisements3.smx
    L 12/04/2019 - 21:42:20: [SM] Call stack trace:
    L 12/04/2019 - 21:42:20: [SM]   [0] CloseHandle
    L 12/04/2019 - 21:42:20: [SM]   [1] Line 468, D:\Sourcemod\ServerAdvertisements3\files/misc.sp::SA_TrackerCallBack
    L 12/04/2019 - 21:47:23: SourceMod error session started
    L 12/04/2019 - 21:47:23: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 21:47:23: [SM] Exception reported: Client 2 is not in game
    L 12/04/2019 - 21:47:23: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 21:47:23: [SM] Call stack trace:
    L 12/04/2019 - 21:47:23: [SM]   [0] IsClientObserver
    L 12/04/2019 - 21:47:23: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 21:47:23: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 21:47:23: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    L 12/04/2019 - 22:13:37: Error log file session closed.
    L 12/04/2019 - 22:13:49: SourceMod error session started
    L 12/04/2019 - 22:13:49: Info (map "de_mirage") (file "D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\logs\errors_20191204.log")
    L 12/04/2019 - 22:13:49: [SM] Exception reported: Client 7 is not in game
    L 12/04/2019 - 22:13:49: [SM] Blaming: MultiCFG-DM.smx
    L 12/04/2019 - 22:13:49: [SM] Call stack trace:
    L 12/04/2019 - 22:13:49: [SM]   [0] IsClientObserver
    L 12/04/2019 - 22:13:49: [SM]   [1] Line 239, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::PlaySound
    L 12/04/2019 - 22:13:49: [SM]   [2] Line 122, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::ExecConfig
    L 12/04/2019 - 22:13:49: [SM]   [3] Line 66, D:\CSGOServidor_Deathmatch\csgo\addons\sourcemod\scripting\MultiCFG-DM.sp::Event_RoundStart
    gildevanaraujo is offline
    scoty
    Member
    Join Date: Nov 2015
    Old 12-12-2019 , 19:56   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #7

    what about adding a sound where letting players know about the next mod Example: "Time for HS only mod" with a male voice
    scoty is offline
    r0xi
    BANNED
    Join Date: Oct 2012
    Location: Sofia
    Old 06-14-2020 , 05:53   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #8

    go make tutorial for me not work ... is broke
    r0xi is offline
    Send a message via AIM to r0xi Send a message via Yahoo to r0xi Send a message via Skype™ to r0xi
    vijayar
    Senior Member
    Join Date: Sep 2020
    Old 01-22-2021 , 06:34   Re: MultiCFG for Deathmatch Advanced
    Reply With Quote #9

    Quote:
    Originally Posted by Ejziponken View Post
    This is a separate plugin u need to compile after u made your changes to it and then run it WITH Deathmatch Goes Advanced.

    This plugin is only loading different "modes" from the eathmatch Goes Advanced.

    You can also try https://github.com/Shivaah/multicfg-...ee/development
    Shivaah plugin mentioned does not work for Maxximou5 DM plugin v2.0.9 ; the plugin only recognizes & loads the default .ini file.

    Last edited by vijayar; 01-30-2021 at 12:00.
    vijayar is offline
    Reply


    Thread Tools
    Display Modes

    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 18:44.


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