Пользователь
- Сообщения
- 43
- Реакции
- 0
Hello i have one problem i found this script in google i use working good. But i have one problem when i join in server or when i try retry working music but just for me not for all players. Do you know somebody where is wrong. Just i need one plugin when connect to start music
Код:
#include amxmodx
new const g_szSound[ ] = "sound/milleniumi.mp3";
public plugin_precache( )
{
precache_generic(g_szSound);
}
public client_putinserver(id)
{
set_task(1.0, "play", id)
}
public play(id)
{
if(is_user_bot(id))
return;
if(is_user_connected(id))
{
client_cmd(id, "mp3 play ^"%s^"", g_szSound);
}
}