2024-03-02, 04:04 AM
Bem pessoal, eu gostaria da ajuda de voces para me ajudar com um problema, eu quero que fique tocando uma música na Groove Street e quando um player entrar naquela área, ele podera ouvir a música. Meu código base!
CMD:tocar(playerid)
{
if (IsPlayerInRangeOfPoint(playerid, 2.0, 2466.4934, -1658.9978, 13.3907))
{
new i;
for (i = 0; i < MAX_PLAYERS; i++)
{
new Float:P[3];
GetPlayerPos(i, P[0], P[1], P[2]);
if (IsPlayerInRangeOfPoint(i, 90.0, 2466.4934, -1658.9978, 13.3907))
{
PlayAudioStreamForPlayer(i, "http://stream.com.br/radio", P[0], P[1], P[2], 90.0, 1);
}
}
}
return 1;
Obrigado pela atenção!
}
CMD:tocar(playerid)
{
if (IsPlayerInRangeOfPoint(playerid, 2.0, 2466.4934, -1658.9978, 13.3907))
{
new i;
for (i = 0; i < MAX_PLAYERS; i++)
{
new Float:P[3];
GetPlayerPos(i, P[0], P[1], P[2]);
if (IsPlayerInRangeOfPoint(i, 90.0, 2466.4934, -1658.9978, 13.3907))
{
PlayAudioStreamForPlayer(i, "http://stream.com.br/radio", P[0], P[1], P[2], 90.0, 1);
}
}
}
return 1;
Obrigado pela atenção!
}