29.12.2017, 22:22
Hello!
For my current radio system I am building I am allowing the use of custom URL's into it. However the links do not work and I have a feeling it is a problem with my current code. I created a basic custom radio command that plays custom URL's and the same link worked there, but it does not work on a Input Dialog.
Any help of course is appreciated!!
For my current radio system I am building I am allowing the use of custom URL's into it. However the links do not work and I have a feeling it is a problem with my current code. I created a basic custom radio command that plays custom URL's and the same link worked there, but it does not work on a Input Dialog.
Any help of course is appreciated!!
pawn Код:
if(dialogid == RADIOMENU+1 && response)
{
new link[300];
strcat(link, inputtext);
PlayAudioStreamForPlayer(playerid, link);
return 1;
}