29.01.2011, 09:26
Quote:
I got a /setstation command that dose work but i want it to be able to play the music to all players in the car when i do /setstation. because at the Monet it will only play it for the person who dose /setstation.
|
pawn Код:
CMD:setstation etc.
{
new vehid = GetPlayerVehicleID(playerid);
foreach(Player,i)
{
if(IsPlayerInVehicleID(i,vehid)) Audio_Play(i,....);
}
return 1;
}