03.09.2012, 08:56
Everytime when I typed /boombox, and clicked it which the response is below, I got crashed. Can anyone help me fix it to remove the crash?
pawn Код:
if(BoomboxPlaced[playerid] == 1)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
for(new BoomBoxItem = 0; BoomBoxItem < MAX_OBJECTS; BoomBoxItem++)
{
new Float:X, Float:Y, Float:Z, Float:Distance = 15.0;
GetDynamicObjectPos(BoomBoxItem, X, Y, Z);
StopAudioStreamForPlayer(i);
PlayAudioStreamForPlayer(i, "http://relay.181.fm:8018/", X, Y, Z, Distance, 1);
}
}
}