01.06.2009, 11:00
Try this..
pawn Код:
stock SendCarMessage(playerid, string [], color12)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInAnyVehicle(i))
{
SendClientMessage(i, color12, string);
}
}
return 1;
}