02.07.2014, 17:57
Yes, under /call 911, put this
You'll have to edit the parts where there are comments saying you must edit it, includes:
POSITION_X, POSITION_Y, POSITION_Z and the stream website.
(edited the code above for a better range, if you have issues with the my before-post, use this one. It has a bigger range detection)
You'll have to edit the parts where there are comments saying you must edit it, includes:
POSITION_X, POSITION_Y, POSITION_Z and the stream website.
pawn Код:
for ( new i, j = GetMaxPlayers( ); i < j; ++ i )
{
if ( !IsPlayerConnected( i ) )
continue;
if ( !IsPlayerInRangeOfPoint( i, 25.0, POSITION_X, POSITION_Y, POSITION_Z ) ) // Change this positions
continue;
// Passed all checks, play audio stream
PlayAudioStreamForPlayer( i, "http://example_audio/911.wav" ); // Change to your audio stream
}