Помогите плиз, я хочу поставить свою музыку, которая проигрывалась бы при коннекте, вроде делаю все правильно, но компилироваться не хочет, вот сам плагин, и музыка, подскажите что делаю не правильно:
Код
/*
* Play a sound during the connection.
*
* Random code part taken from plugin
* connectsound by White Panther
*
* v1.0
*
*/
#include <amxmodx>
#define Maxsounds 6
// sounds localized in gcf cache (sound/vox)
// you can add more song if you want.
new soundlist[Maxsounds][] = {"loading"}
public client_connect(id) {
new i
i = random_num(0,Maxsounds-1)
client_cmd(id,"mp3 play media/%s",soundlist[i])
return PLUGIN_CONTINUE
}
public plugin_init() {
register_plugin("Loading Sound","1.0","Amxx User")
return PLUGIN_CONTINUE
}
Отредактировал: turri2, - 16.6.2009, 21:34