Advertisement
DraKiNs

[COD] IsABike

Jun 26th, 2011
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.31 KB | None | 0 0
  1. stock IsABike(vehid)
  2. {
  3.     vehid = GetVehicleModel(vehid);
  4.     static motos[15] =
  5.     {
  6.         509,481,
  7.         510,462,
  8.         448,581,
  9.         522,461,
  10.         521,523,
  11.         463,586,
  12.         468,471
  13.     };
  14.     for(new i;  motos[i]; ++i)
  15.     {
  16.         if(vehid != motos[i]) continue;
  17.         return true;
  18.     }
  19.     return false;
  20. }
  21.  
  22. //By Garfield
  23. //Edit by DraKiNs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement