hello, i want a Plugin, that play a song all the time that you enter in the server, and when the song finish, start again.
No i just have this plugin:
PHP Code:
#include <amxmodx>
#define PLUGIN "Musica"
#define VERSION "616"
#define AUTHOR "Lunatiko!"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public client_connect(id)
client_cmd(id, "mp3 loop sound/song/song.mp3")
public plugin_precache()
{
precache_generic("sound/song/song.mp3")
}
But this Plugin, just play the song in the Loading. I want the song continue, all the time Without need of a new round to play the song. You will be enter to the server, and the song playing always. No matter if u put sv_restart or something, always playing. Or a Task when you enter, the song start to play at 3 seg, and never stop. Sorry for my bad english.