04.06.2012, 21:37
Instead of native function of samp, use foreach. it's better and simple than samp method.
pawn Code:
CMD:destroyveh( playerid, params[ ] )
{
foreach(player,i)
{
DestroyVehicle(i, lol);
}
return 1;
}