View Single Post
Ejziponken
AlliedModders Donor
Join Date: Apr 2008
Old 11-05-2019 , 19:39   Re: [CS:GO] Deathmatch Goes Advanced (v0.13.8, 23/01/2016)
Reply With Quote #2505

Try edit the multicfg plugin.
https://github.com/Shivaah/multicfg-...CFG-DM.sp#L100

Code:
void ExecConfig(bool sound)
{
	char sCommand[255];
	char sConfigName[52];
	
	sConfigName = sCurrentGameName;
	
	if(!isH3busDM)
	{
		StrCat(sConfigName, sizeof(sConfigName), ".ini");
		Format(sCommand, sizeof(sCommand), "dm_load \"%s\" \"respawn\"", sConfigName);
	}
	else
	{
		Format(sCommand, sizeof(sCommand), "dm_load \"Game Modes\" \"%s\" \"respawn\"", sConfigName);
	}
	
	ServerCommand(sCommand);
	
	UpdateGameModeIndex();
	
	if(sound)
		PlaySound();	
}
Try replacing "respawn" with "equip"
Ejziponken is offline