Quote:
Originally Posted by Kraeror
Try this:
PHP код:
if(dialogid == DIALOG_STREAMBOX)
{
new string[MAX_PLAYERS];
if(response)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(strlen(inputtext) == "%")
{
strlen(inputtext) = "#";
}
format(string, sizeof(string), "[DEEJAY] %s have play a song from | Url: %s", IsPlayerName(playerid), inputtext);
SendClientMessage(i, 0x00FFCCAA, string);
StopAudioStreamForPlayer(i);
SendClientMessage(i, -1, "================================");
PlayAudioStreamForPlayer(i, inputtext);
SendClientMessage(i, -1, "================================");
SendClientMessage(i, 0x00FF99AA, "Use /stopmusic if you want to stop the song from playing");
}
}
return 1;
}
|
Код:
Код:
C:\Users\USER\Desktop\Server Scripts\GM\MYGM(2131) : error 033: array must be indexed (variable "inputtext")
C:\Users\USER\Desktop\Server Scripts\GM\MYGM(2133) : error 022: must be lvalue (non-constant)
C:\Users\USER\Desktop\Server Scripts\GM\MYGM(2133) : warning 215: expression has no effect
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Errors.