01.01.2014, 16:00
Tente assim
pawn Код:
new RandomMusica[3][] = // Nomes Server Random
{
"Link da musica 1",
"Link da musica 2",
"Link da musica 3"
};
CMD:escutarmusica(playerid)
{
SendMSG();
}
//Coloque o cуdigo abaixo fora de publics
forward SendMSG();
public SendMSG()//Aqui a public
{
new string[256];
new randMSG = random(sizeof(RandomMusica));
format(string,sizeof(string),"hostname %s",RandomMusica[randMSG]);
SendRconCommand(string);
}