nice plugin
but there are a lot of simple round end sound plugin
you could add some new stuff like
1 - show name of track + artist
"Playing now - David Guetta - Bad"
2 - type /last in say to see name of last payed track
3 - add a menu with few options like
*enable or disable
*Play last track
**Show tracks on the Server**
and it could open in nice motd example
PHP Code:
public show_list_musics(id)
{
static const Header[] = "<center><body>EXAMPLE<br>By: Alliedmodders<br><tr><th>%s"
static motd[3650], g_string[64], len; len = 0
len += formatex(motd[len], charsmax(motd) - len, "<meta charset=UTF-8><style>body{background:#000000;font-family:Tahoma;color:#ffffff;}th{background:#1E1E1E;color:#ffffff;padding:2px;text-align:left;}td{padding:2px 10px}table{color:#AAC0AA;background:#424242;font-size:10px}h2,h3{color:#C2C2C2;font-family:Tahoma}#c{background:#323232}img{height:3px;background:#B4DA45;margin:0 3px}#r{height:3px;background:#6F9FC8}#clr{background:none;color:#FFF;font-size:20px}</style>")
len += formatex(motd[len], charsmax(motd) - len, "<body><table width=100%% border=0 align=center cellpadding=0 cellspacing=1>")
len += formatex(motd[len], charsmax(motd) - len, Header, "# MUSIC NAME")
for (new i = 0; i < ArraySize(music_precache); i++) // new Array:music_precache
{
ArrayGetString(music_name, i, g_string, charsmax(g_string)) // add new Array:music_name
len += formatex(motd[len], charsmax(motd) - len, "<body><tr><th>%s^n", g_string)
}
show_motd(id, motd, "MUSIC")
menu_roundsounds(id) // if you take the opinion on the menu :)
}