08.11.2017, 16:16
Quote:
Olha Achei bem legal o sistema, porem o volume nao diminui quando voce estб um pouco longe, se voce resolver isso e tambem o fato de quem chegar depois de vc ter colocado conseguir escutar iria ficar bem foda
|
PHP код:
stock PlayAudioStreamInRange(url[], Float:dist, Float:x, Float:y, Float:z)
{
for(new i = 0, m = GetPlayerPoolSize(); i <= m; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, dist, x, y, z))
{
PlayAudioStreamForPlayer(i, url, x, y, z, dist, 1);
}
}
}
return 1;
}
PHP код:
new Float:x, Float:y, Float:z;
GetVehiclePos(GetPlayerVehicleID(playerid), x, y, z);
PlayAudioStreamInRange(inputtext, 10.0, x, y, z);