30.06.2018, 15:35 
	
	
	
		Sorry for asking to much xD
Can anyone fix this error?
My audio include:
	
	
	
	
Can anyone fix this error?
Код:
Gamemode Line 12199: symbol already defined: "Audio_OnPlayerDisconnect"
PHP код:
public OnPlayerDisconnect(playerid, reason) 
PHP код:
public OnPlayerDisconnect(playerid, reason)
{
    if (!IsPlayerNPC(playerid))
    {
        Audio_RemovePlayer(playerid);
    }
    if (Audio_g_OPDC)
    {
        return CallLocalFunction("Audio_OnPlayerDisconnect", "dd", playerid, reason);
    }
    return 1;
}
#if defined _ALS_OnPlayerDisconnect
    #undef OnPlayerDisconnect
#else
    #define _ALS_OnPlayerDisconnect
#endif
#define OnPlayerDisconnect Audio_OnPlayerDisconnect
forward Audio_OnPlayerDisconnect(playerid, reason); 


	