+3 cool sounds for connection!
PHP Code:
#include <amxmodx>
new const g_szSound[ ] = "sound/musica.mp3";
public plugin_precache( )
{
precache_generic( g_szSound );
}
public client_putinserver(id){
set_task(0.3,"play",id)
}
public play(id)
{
if( is_user_bot( id ) )
return;
client_cmd( id, "mp3 play ^"%s^"", g_szSound );
}