11.10.2012, 20:11
Code:
if(strcmp(cmd, "/dcmuzika", true) == 0) { ShowPlayerDialog(playerid, 15555, DIALOG_STYLE_INPUT, "Paste your mp3 link", "Please enter MP3 link bellow.", "OK", "Cancel"); //Red John's dialog creator return 1; }
Code:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { if(dialogid == 15555) { if(response) { for(new i=0; i<250; i++) { PlayAudioStreamForPlayer(i, inputtext[]); } } return 1; } return 0; }