Hi
Is it correct.
I want this, if player connecting on server then this client_cmd "mp3 play"
Not work for him like if client connect then no sounds play only loading sound plugin.
Here is my code.
PHP Code:
// Plays a sound on clients
PlaySound_Mp3(const sound[] , id)
{
if (!is_user_connected(id))
client_cmd(0, "mp3 play ^"sound/%s^"", sound)
}
PlayMP3Sound(const soundMP3[])
{
if (!is_user_connected(0))
client_cmd(0, "mp3 play ^"sound/%s^"", soundMP3)
}
Is this works same like i want ?