Advertisement
Guest User

function isabike, isabike2

a guest
Apr 22nd, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function IsABike(carid) {
  2. switch(carid) {
  3. case 481, 509, 510: return true;
  4. }
  5. return false;
  6. }
  7. function IsABike2(vehicleid) {
  8. switch (GetVehicleModel(vehicleid)) {
  9. case 448, 461, 462, 463, 468, 471, 481, 509, 510, 521, 522, 523, 568, 571, 581, 586: return true;
  10. }
  11. return false;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement