05.05.2013, 20:01
Por exemplo
eu queria que o player coleca-se o link da musica e a musica comeзa-se a reproduzir, e possivel ?
pawn Код:
//Adicionar musica
if(dialogid == 6969)
{
if(response)
{
if(strlen(inputtext) > 0)
{
PlayAudioStreamForPlayer(playerid, inputtext);
}
}
else
{
OnPlayerCommandText(playerid,"/radio");
}
}
return true;
}